Blame SOURCES/0106-Don-t-add-to-highlighted-row.patch

d41074
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
a85e8e
From: William Jon McCann <william.jon.mccann@gmail.com>
a85e8e
Date: Wed, 15 May 2013 17:49:45 -0400
d41074
Subject: [PATCH] Don't add '*' to highlighted row
a85e8e
a85e8e
It is already highlighted.
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
d41074
index 2ff294101d8..2f84fccb6fe 100644
a85e8e
--- a/grub-core/normal/menu_text.c
a85e8e
+++ b/grub-core/normal/menu_text.c
a85e8e
@@ -242,7 +242,7 @@ print_entry (int y, int highlight, grub_menu_entry_t entry,
a85e8e
       unicode_title[i] = ' ';
a85e8e
 
a85e8e
   if (data->geo.num_entries > 1)
a85e8e
-    grub_putcode (highlight ? '*' : ' ', data->term);
a85e8e
+    grub_putcode (' ', data->term);
a85e8e
 
a85e8e
   grub_print_ucs4_menu (unicode_title,
a85e8e
 			unicode_title + len,