summaryrefslogtreecommitdiffstats
path: root/keymap.h
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1998-08-25 22:33:07 +0000
committerThomas Roessler <roessler@does-not-exist.org>1998-08-25 22:33:07 +0000
commit986ab5e943db7aaed2aed98f8b74e4c26666fdd8 (patch)
tree58cfec1114686823dbdbf22cf2ca52f77eb1075d /keymap.h
parent9044dd4d58af4b4d64a6e68b7b76c42d317e7ce5 (diff)
CVS branch clean-up.
Diffstat (limited to 'keymap.h')
-rw-r--r--keymap.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/keymap.h b/keymap.h
index 580bc2ba..7ec44a5c 100644
--- a/keymap.h
+++ b/keymap.h
@@ -25,13 +25,15 @@
/* type for key storage, the rest of mutt works fine with int type */
typedef short keycode_t;
-void km_bindkey (char *, int, int, char *);
+void km_bind (char *, int, int, char *, char *);
+void km_bindkey (char *, int, int);
int km_dokey (int);
/* entry in the keymap tree */
struct keymap_t
{
char *macro; /* macro expansion (op == OP_MACRO) */
+ char *descr; /* description of a macro for the help menu */
struct keymap_t *next; /* next key in map */
short op; /* operation to perform */
short eq; /* number of leading keys equal to next entry */