2008-05-31 Michael Gorven <michael@gorven.za.net>

* term/terminfo.c (grub_terminfo_set_current): Correct vt100 cursor
        on and off sequences.
This commit is contained in:
robertmh 2008-05-31 15:46:48 +00:00
parent 69ba137ec8
commit 41305bc8f7
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2008-05-31 Michael Gorven <michael@gorven.za.net>
* term/terminfo.c (grub_terminfo_set_current): Correct vt100 cursor
on and off sequences.
2008-05-31 Robert Millan <rmh@aybabtu.com>
* util/update-grub_lib.in: Replace `grub-probe' with `${grub_probe}'.

View File

@ -98,8 +98,8 @@ grub_terminfo_set_current (const char *str)
term.cls = grub_strdup ("\e[H\e[J");
term.reverse_video_on = grub_strdup ("\e[7m");
term.reverse_video_off = grub_strdup ("\e[m");
term.cursor_on = grub_strdup ("\e[?25l");
term.cursor_off = grub_strdup ("\e[?25h");
term.cursor_on = grub_strdup ("\e[?25h");
term.cursor_off = grub_strdup ("\e[?25l");
return grub_errno;
}