* grub-core/normal/menu_entry.c (backward_char): Use right line for
substraction.
This commit is contained in:
parent
6297e19736
commit
f95d1f117a
2 changed files with 6 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue