uemacs/ebind.h

9 lines
226 B
C

/* Structure for the table of initial key bindings. */
struct key_tab {
int k_code; /* Key code */
int (*k_fp)(int, int); /* Routine to handle it */
};
extern struct key_tab keytab[]; /* key bind to functions table */