summaryrefslogtreecommitdiffstats
path: root/functions.h
diff options
context:
space:
mode:
authorKevin McCarthy <kevin@8t8.us>2017-01-28 18:47:26 -0800
committerKevin McCarthy <kevin@8t8.us>2017-01-28 18:47:26 -0800
commitf318cb48d18ef1cc52c9c9e9e17c03e88c3c4f07 (patch)
tree8459cd80a5488b0c2b92465548b9847e292a64d9 /functions.h
parent8583edba96dc050315dba9bfa9dcad17996f2d9a (diff)
Minor fixes to the x-label patch from David.
Add L10N comment to sort menu. Mark a couple strings for localization. Use ascii_strncasecmp() for the X-Label header comparison. Simplify label_message() using mutt library routines. Bind label editing to "Y" instead of "y". "y" is already used in the default sample muttrc to display mailboxes.
Diffstat (limited to 'functions.h')
-rw-r--r--functions.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/functions.h b/functions.h
index 25a1306f..1f7ca592 100644
--- a/functions.h
+++ b/functions.h
@@ -99,7 +99,7 @@ const struct binding_t OpMain[] = { /* map: index */
{ "delete-thread", OP_DELETE_THREAD, "\004" },
{ "delete-subthread", OP_DELETE_SUBTHREAD, "\033d" },
{ "edit", OP_EDIT_MESSAGE, "e" },
- { "edit-label", OP_EDIT_LABEL, "y" },
+ { "edit-label", OP_EDIT_LABEL, "Y" },
{ "edit-type", OP_EDIT_TYPE, "\005" },
{ "forward-message", OP_FORWARD_MESSAGE, "f" },
{ "flag-message", OP_FLAG_MESSAGE, "F" },
@@ -201,7 +201,7 @@ const struct binding_t OpPager[] = { /* map: pager */
{ "set-flag", OP_MAIN_SET_FLAG, "w" },
{ "clear-flag", OP_MAIN_CLEAR_FLAG, "W" },
{ "edit", OP_EDIT_MESSAGE, "e" },
- { "edit-label", OP_EDIT_LABEL, "y" },
+ { "edit-label", OP_EDIT_LABEL, "Y" },
{ "edit-type", OP_EDIT_TYPE, "\005" },
{ "forward-message", OP_FORWARD_MESSAGE, "f" },
{ "flag-message", OP_FLAG_MESSAGE, "F" },