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

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