* grub-core/term/terminfo.c (grub_terminfo_cls): Issue an explicit

gotoxy to 0,0.
This commit is contained in:
Vladimir 'phcoder' Serbinenko 2013-03-05 20:00:51 +01:00
parent 19ce697dfd
commit f6b58fe538
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2013-03-05 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/term/terminfo.c (grub_terminfo_cls): Issue an explicit
gotoxy to 0,0.
2013-03-03 Vladimir Serbinenko <phcoder@gmail.com>
Remove all trampoline support. Add -Wtrampolines when

View file

@ -272,8 +272,7 @@ grub_terminfo_cls (struct grub_term_output *term)
= (struct grub_terminfo_output_state *) term->data;
putstr (term, grub_terminfo_tparm (data->cls));
data->xpos = data->ypos = 0;
grub_terminfo_gotoxy (term, 0, 0);
}
void