Blame SOURCES/0027-Use-2-instead-of-1-for-our-right-hand-margin-so-line.patch

606ea6
From af7ac4e7b446061fd865b61b90df37871984421b Mon Sep 17 00:00:00 2001
606ea6
From: Peter Jones <pjones@redhat.com>
606ea6
Date: Fri, 21 Jun 2013 14:44:08 -0400
606ea6
Subject: [PATCH 27/34] Use -2 instead of -1 for our right-hand margin, so
606ea6
 linewrapping works (#976643).
606ea6
606ea6
Signed-off-by: Peter Jones <grub2-owner@fedoraproject.org>
606ea6
---
606ea6
 grub-core/normal/menu_text.c | 2 +-
606ea6
 1 file changed, 1 insertion(+), 1 deletion(-)
606ea6
606ea6
diff --git a/grub-core/normal/menu_text.c b/grub-core/normal/menu_text.c
606ea6
index ead3391..bc1fc71 100644
606ea6
--- a/grub-core/normal/menu_text.c
606ea6
+++ b/grub-core/normal/menu_text.c
606ea6
@@ -334,7 +334,7 @@ grub_menu_init_page (int nested, int edit,
606ea6
 
606ea6
   geo->border = 0;
606ea6
   geo->first_entry_x = 0; /* no margin */
606ea6
-  geo->entry_width = grub_term_width (term) - 1;
606ea6
+  geo->entry_width = grub_term_width (term) - 2;
606ea6
 
606ea6
   geo->first_entry_y = 3; /* three empty lines*/
606ea6
 
606ea6
-- 
606ea6
1.8.4.2
606ea6