diff --git a/ChangeLog b/ChangeLog index cacba374f..f1ab52aa7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2013-03-05 Vladimir Serbinenko + + * grub-core/term/terminfo.c (grub_terminfo_cls): Issue an explicit + gotoxy to 0,0. + 2013-03-03 Vladimir Serbinenko Remove all trampoline support. Add -Wtrampolines when diff --git a/grub-core/term/terminfo.c b/grub-core/term/terminfo.c index eb0ef00ea..a46bb4b27 100644 --- a/grub-core/term/terminfo.c +++ b/grub-core/term/terminfo.c @@ -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