summaryrefslogtreecommitdiffstats
path: root/history.c
diff options
context:
space:
mode:
authorKevin McCarthy <kevin@8t8.us>2018-02-04 15:15:55 -0800
committerKevin McCarthy <kevin@8t8.us>2018-02-04 15:15:55 -0800
commit1fe6318b51f220384825141ded45ac18a07f18f5 (patch)
treee22aa6698f19d9fe3971def1964ee718ade5c282 /history.c
parentf57e517192b18398c8a796ba52f6e7c6c6302f7e (diff)
Fix history menu title.
Remove an accidental leading space. Thanks to Vincent Lefèvre for noticing the problem and providing a patch!
Diffstat (limited to 'history.c')
-rw-r--r--history.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/history.c b/history.c
index a4b2b837..15024aab 100644
--- a/history.c
+++ b/history.c
@@ -519,7 +519,7 @@ static void history_menu (char *buf, size_t buflen, char **matches, int match_co
char helpstr[LONG_STRING];
char title[STRING];
- snprintf (title, sizeof (title), _(" History '%s'"), buf);
+ snprintf (title, sizeof (title), _("History '%s'"), buf);
menu = mutt_new_menu (MENU_GENERIC);
menu->make_entry = history_entry;