tweaks: delete a now-unused function

master
Benno Schulenberg 2020-06-27 10:23:03 +02:00
parent 009fb2fae6
commit 331bd7662e
2 changed files with 0 additions and 15 deletions

View File

@ -460,20 +460,6 @@ const keystruct *first_sc_for(int menu, void (*func)(void))
return NULL;
}
/* Return the first keycode that is bound to the given function in the
* current menu, if any; otherwise, return the given default value. */
int the_code_for(void (*func)(void), int defaultval)
{
const keystruct *sc = first_sc_for(currmenu, func);
if (sc == NULL)
return defaultval;
meta_key = (0x20 <= sc->keycode && sc->keycode <= 0x7E);
return sc->keycode;
}
/* Return the number of entries that can be shown in the given menu. */
size_t shown_entries_for(int menu)
{

View File

@ -325,7 +325,6 @@ char *input_tab(char *buf, size_t *place, void (*refresh_func)(void), bool *list
/* Some functions in global.c. */
const keystruct *first_sc_for(int menu, void (*func)(void));
int the_code_for(void (*func)(void), int defaultval);
size_t shown_entries_for(int menu);
const keystruct *get_shortcut(int *keycode);
functionptrtype func_from_key(int *keycode);