}
}
-/* This should be used for macros, push, and exec commands only. */
-#define tokenize_push_macro_string(s) \
- generic_tokenize_push_string(s, mutt_push_macro_event)
-/* This should be used for other unget operations. */
-#define tokenize_unget_string(s) \
- generic_tokenize_push_string(s, mutt_unget_event)
-
static int retry_generic(int menu, keycode_t *keys, int keyslen, int lastkey)
{
if (menu != MENU_EDITOR && menu != MENU_GENERIC && menu != MENU_PAGER)
return -1;
}
- tokenize_push_macro_string(map->macro);
+ generic_tokenize_push_string(map->macro, mutt_push_macro_event);
map = Keymaps[menu];
pos = 0;
}
r = -1;
}
else
- tokenize_push_macro_string(buf->data);
+ generic_tokenize_push_string(buf->data, mutt_push_macro_event);
return r;
}