mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-11 15:08:49 -05:00
10 lines
295 B
C
10 lines
295 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 */
|
|
} ;
|
|
|
|
#define NBINDS 256 /* max # of bound keys */
|
|
extern struct key_tab keytab[ NBINDS] ; /* key bind to functions table */
|
|
|