mirror of
https://git.proxmox.com/git/grub2
synced 2026-02-01 18:30:46 +00:00
* grub-core/normal/menu_entry.c (backward_char): Use right line for
substraction.
This commit is contained in:
parent
6297e19736
commit
f95d1f117a
@ -1,3 +1,8 @@
|
||||
2012-06-02 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* grub-core/normal/menu_entry.c (backward_char): Use right line for
|
||||
substraction.
|
||||
|
||||
2012-06-02 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* grub-core/kern/emu/hostdisk.c (grub_util_biosdisk_write) [__linux__]:
|
||||
|
||||
@ -668,9 +668,9 @@ backward_char (struct screen *screen, int update)
|
||||
{
|
||||
struct line *linep;
|
||||
|
||||
linep = screen->lines + screen->line;
|
||||
screen->column = 0;
|
||||
screen->line--;
|
||||
linep = screen->lines + screen->line;
|
||||
|
||||
for (i = 0; i < screen->nterms; i++)
|
||||
{
|
||||
|
||||
Loading…
Reference in New Issue
Block a user