1
1

tweaks: when discarding keycodes, don't bother parsing them

Этот коммит содержится в:
Benno Schulenberg 2022-02-04 11:18:52 +01:00
родитель 8546139997
Коммит a29aa31e93
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -572,7 +572,7 @@ size_t waiting_keycodes(void);
#ifdef ENABLE_NANORC
void implant(const char *string);
#endif
int parse_kbinput(WINDOW *win);
int get_input(WINDOW *win);
int get_kbinput(WINDOW *win, bool showcursor);
char *get_verbatim_kbinput(WINDOW *win, size_t *count);
#ifdef ENABLE_MOUSE

Просмотреть файл

@ -289,7 +289,7 @@ int findnextstr(const char *needle, bool whole_word_only, int modus,
statusbar(_("Cancelled"));
/* Clear out the key buffer (in case a macro is running). */
while (input != ERR)
input = parse_kbinput(NULL);
input = get_input(NULL);
nodelay(edit, FALSE);
return -2;
}