unused variable `off' which caused scroll down arrow to be always shown.
+2013-02-25 Andrey Borzenkov <arvidjaar@gmail.com>
+
+ * grub-core/normal/menu_entry.c (update_screen): remove
+ unused variable `off' which caused scroll down arrow to be always shown.
+
2013-02-25 Andrey Borzenkov <arvidjaar@gmail.com>
* grub-core/normal/menu_entry.c (insert_string): fix off by one
do
{
- int off = 0;
struct grub_term_pos **pos;
if (linep >= screen->lines + screen->num_lines)
y += get_logical_num_lines (linep, term_screen);
if (y >= term_screen->num_entries)
{
- if (off <= linep->len || i + 1 < screen->num_lines)
+ if (i + 1 < screen->num_lines)
down_flag = 1;
}