mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-11 23:31:43 -05:00
9 lines
226 B
C
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 */
|
|
|