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

39700a
From 6550cd89b1dee8c9ad866cbf10bf72dc2ff8a8bc Mon Sep 17 00:00:00 2001
606ea6
From: Peter Jones <pjones@redhat.com>
606ea6
Date: Fri, 21 Jun 2013 14:44:08 -0400
39700a
Subject: [PATCH 114/143] 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
-- 
39700a
1.9.3
606ea6