X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=keymap.c;h=76ac63cfcdc1f2c7788874b26dd5ce6529d8e9ce;hb=2ea77d3b2827ba23feb756ce2fb936565ae38998;hp=586d4facd27f9adbe4497539349999b2ab7b4ee2;hpb=7f7a0be369840b290248e5b0302beb447fa1b3cd;p=apps%2Fmadmutt.git diff --git a/keymap.c b/keymap.c index 586d4fa..76ac63c 100644 --- a/keymap.c +++ b/keymap.c @@ -12,12 +12,12 @@ #endif #include +#include #include #include +#include #include "mutt.h" -#include "buffer.h" -#include "ascii.h" #include "mutt_menu.h" #include "mutt_curses.h" #include "keymap.h" @@ -516,7 +516,7 @@ struct keymap_t *km_find_func (int menu, int func) void km_init (void) { - memset (Keymaps, 0, sizeof (struct keymap_t *) * MENU_MAX); + p_clear(Keymaps, MENU_MAX); create_bindings (OpAttach, MENU_ATTACH); create_bindings (OpBrowser, MENU_FOLDER); @@ -677,7 +677,7 @@ static char *parse_keymap (int *menu, BUFFER * s, int maxmenus, int *nummenus, int i = 0; char *p, *q; - memset (&buf, 0, sizeof (buf)); + p_clear(&buf, 1); /* menu name */ mutt_extract_token (&buf, s, 0); @@ -722,7 +722,7 @@ try_bind (char *key, int menu, char *func, struct binding_t *bindings) int i; for (i = 0; bindings[i].name; i++) - if (str_cmp (func, bindings[i].name) == 0) { + if (m_strcmp(func, bindings[i].name) == 0) { km_bindkey (key, menu, bindings[i].op); return (0); }