diff --git a/src/prototypes.h b/src/prototypes.h index dda7b95a..94ac3f9a 100644 --- a/src/prototypes.h +++ b/src/prototypes.h @@ -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 diff --git a/src/search.c b/src/search.c index 9eb99e24..afaeffc4 100644 --- a/src/search.c +++ b/src/search.c @@ -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; }