summaryrefslogtreecommitdiff
path: root/alpine/keymenu.c
diff options
context:
space:
mode:
authorEduardo Chappa <chappa@washington.edu>2017-09-27 23:30:54 -0600
committerEduardo Chappa <chappa@washington.edu>2017-09-27 23:30:54 -0600
commit59761644cf24ee1a37dd4c85e49ba1060cf56ba2 (patch)
tree60449e911fff71cce31de045e8f91f93eb856d13 /alpine/keymenu.c
parent1743b28e3ccfa14713c104c68699e44b38415489 (diff)
downloadalpine-59761644cf24ee1a37dd4c85e49ba1060cf56ba2.tar.xz
* Fix a small issue in keymenu.c, where some key defonitions were done
with braces placed in the incorrect place.
Diffstat (limited to 'alpine/keymenu.c')
-rw-r--r--alpine/keymenu.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/alpine/keymenu.c b/alpine/keymenu.c
index 05c8f377..326bc239 100644
--- a/alpine/keymenu.c
+++ b/alpine/keymenu.c
@@ -822,8 +822,8 @@ struct key att_view_keys[] =
NULL_MENU,
NULL_MENU,
#ifdef SMIME
- {"^D","Decrypt", {MC_DECRYPT,1,{ctrl('d')},KS_NONE}},
- {"^E","Security", {MC_SECURITY,1,{ctrl('e')},KS_NONE}},
+ {"^D","Decrypt", {MC_DECRYPT,1,{ctrl('d')}},KS_NONE},
+ {"^E","Security", {MC_SECURITY,1,{ctrl('e')}},KS_NONE},
#else
NULL_MENU,
NULL_MENU,
@@ -889,8 +889,8 @@ struct key view_keys[] =
RCOMPOSE_MENU,
{"A",N_("TogglePreferPlain"),{MC_TOGGLE,1,{'a'}},KS_NONE},
#ifdef SMIME
- {"^D","Decrypt", {MC_DECRYPT,1,{ctrl('d')},KS_NONE}},
- {"^E","Security", {MC_SECURITY,1,{ctrl('e')},KS_NONE}},
+ {"^D","Decrypt", {MC_DECRYPT,1,{ctrl('d')}},KS_NONE},
+ {"^E","Security", {MC_SECURITY,1,{ctrl('e')}},KS_NONE},
#else
NULL_MENU,
NULL_MENU,