X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=keymap.c;h=29e0dcdd9576779606b60bf2a60265cc4579544e;hp=abfc8c305f05eff4450dd0a109caa022c1a12f64;hb=eed5352e46df93f8921d2e6dfdc95b027bad6e1e;hpb=9274cbe8e6410ddb95ddc667faa678a29da85420 diff --git a/keymap.c b/keymap.c index abfc8c3..29e0dcd 100644 --- a/keymap.c +++ b/keymap.c @@ -15,9 +15,9 @@ #include #include #include +#include #include "mutt.h" -#include "buffer.h" #include "mutt_menu.h" #include "mutt_curses.h" #include "keymap.h" @@ -359,7 +359,7 @@ int km_dokey (int menu) if (!map) return (retry_generic (menu, NULL, 0, 0)); - FOREVER { + for (;;) { /* ncurses doesn't return on resized screen when timeout is set to zero */ if (menu != MENU_EDITOR) timeout ((Timeout > 0 ? Timeout : 60) * 1000); @@ -491,7 +491,7 @@ int km_expand_key (char *s, size_t len, struct keymap_t *map) if (!map) return (0); - FOREVER { + for (;;) { strfcpy (s, km_keyname (map->keys[p]), len); len -= (l = m_strlen(s)); @@ -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); }