mirror of
https://github.com/rfivet/uemacs.git
synced 2024-12-18 15:26:23 -05:00
21 lines
356 B
C
21 lines
356 B
C
/* execute.h -- */
|
|
|
|
#define CFENCE 1 /* fence matching in CMODE */
|
|
|
|
|
|
#include "names.h" /* key code */
|
|
|
|
|
|
extern int gasave ; /* global ASAVE size */
|
|
extern int gacount ; /* count until next ASAVE */
|
|
|
|
|
|
int execute( unsigned keycode, int f, int n) ;
|
|
void kbd_loop( void) ;
|
|
|
|
#if CFENCE
|
|
BINDABLE( getfence) ;
|
|
#endif
|
|
|
|
/* end of execute.h */
|