From: Vladimir 'phcoder' Serbinenko Date: Tue, 5 Mar 2013 19:00:51 +0000 (+0100) Subject: * grub-core/term/terminfo.c (grub_terminfo_cls): Issue an explicit X-Git-Tag: grub-2.02-beta1~1268 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f6b58fe538720aed54030d21e6ac185802789ea5;p=thirdparty%2Fgrub.git * grub-core/term/terminfo.c (grub_terminfo_cls): Issue an explicit gotoxy to 0,0. --- 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