7e98da058f
This change reorganizes and cleanups our patches to reduce the patch number from 314 patches to 187. That's achieved by dropping patches that are later reverted and squashing fixes for earlier patches that introduced features. There are no code changes and the diff with upstream is the same before and after the cleanup. Having fewer patches makes easier to manage the patchset and also will ease to rebase them on top of the latest grub-2.04 release. Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
24 lines
819 B
Diff
24 lines
819 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: William Jon McCann <william.jon.mccann@gmail.com>
|
|
Date: Wed, 15 May 2013 17:49:45 -0400
|
|
Subject: [PATCH] Don't add '*' to highlighted row
|
|
|
|
It is already highlighted.
|
|
---
|
|
grub-core/normal/menu_text.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/grub-core/normal/menu_text.c b/grub-core/normal/menu_text.c
|
|
index e22bb91f6e8..a3d1f23f68f 100644
|
|
--- a/grub-core/normal/menu_text.c
|
|
+++ b/grub-core/normal/menu_text.c
|
|
@@ -242,7 +242,7 @@ print_entry (int y, int highlight, grub_menu_entry_t entry,
|
|
unicode_title[i] = ' ';
|
|
|
|
if (data->geo.num_entries > 1)
|
|
- grub_putcode (highlight ? '*' : ' ', data->term);
|
|
+ grub_putcode (' ', data->term);
|
|
|
|
grub_print_ucs4_menu (unicode_title,
|
|
unicode_title + len,
|