X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=help.c;h=1162b23d342ba7446b230c9c75e9d9e9aea130f8;hp=407b7a492cd4ac82c8a46bb73baff3b901eef6ce;hb=53b1d39270dad5bcba362bf9d399d9c592d842c3;hpb=9ed7a487e3a922f2cbb222961c2c9710c3a65f91 diff --git a/help.c b/help.c index 407b7a4..1162b23 100644 --- a/help.c +++ b/help.c @@ -41,7 +41,7 @@ static struct binding_t *help_lookupFunction (int op, int menu) void mutt_make_help (char *d, ssize_t dlen, char *txt, int menu, int op) { - char buf[SHORT_STRING]; + char buf[STRING]; if (km_expand_key (buf, sizeof (buf), km_find_func (menu, op)) || km_expand_key (buf, sizeof (buf), km_find_func (MENU_GENERIC, op))) @@ -226,7 +226,7 @@ static void dump_menu (FILE * f, int menu) { struct keymap_t *map; struct binding_t *b; - char buf[SHORT_STRING]; + char buf[STRING]; /* browse through the keymap table */ for (map = Keymaps[menu]; map; map = map->next) { @@ -273,7 +273,7 @@ static void dump_unbound (FILE * f, void mutt_help (int menu) { char tmp[_POSIX_PATH_MAX]; - char buf[SHORT_STRING]; + char buf[STRING]; const char *desc; FILE *f; struct binding_t *funcs;