resulted in \\ at the end of the line.
+2012-06-02 Vladimir Serbinenko <phcoder@gmail.com>
+
+ * grub-core/normal/menu_entry.c (print_line): Fix off-by-one error which
+ resulted in \\ at the end of the line.
+
2012-06-02 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/kern/parser.c (grub_parser_state_transitions): Handle \t.
else
{
for (;
- x < (int) grub_term_entry_width (term_screen->term);
+ x <= (int) grub_term_entry_width (term_screen->term);
x++)
grub_putcode (' ', term_screen->term);
}