diff options
author | Eduardo Chappa <chappa@washington.edu> | 2017-09-27 23:30:54 -0600 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2017-09-27 23:30:54 -0600 |
commit | 59761644cf24ee1a37dd4c85e49ba1060cf56ba2 (patch) | |
tree | 60449e911fff71cce31de045e8f91f93eb856d13 | |
parent | 1743b28e3ccfa14713c104c68699e44b38415489 (diff) | |
download | alpine-59761644cf24ee1a37dd4c85e49ba1060cf56ba2.tar.xz |
* Fix a small issue in keymenu.c, where some key defonitions were done
with braces placed in the incorrect place.
-rw-r--r-- | alpine/keymenu.c | 8 | ||||
-rw-r--r-- | pith/pine.hlp | 2 |
2 files changed, 5 insertions, 5 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, diff --git a/pith/pine.hlp b/pith/pine.hlp index 7fbc0131..8944930a 100644 --- a/pith/pine.hlp +++ b/pith/pine.hlp @@ -140,7 +140,7 @@ with help text for the config screen and the composer that didn't have any reasonable place to be called from. Dummy change to get revision in pine.hlp ============= h_revision ================= -Alpine Commit 218 2017-09-23 01:34:53 +Alpine Commit 219 2017-09-27 23:30:48 ============= h_news ================= <HTML> <HEAD> |