1
0
mirror of https://github.com/rfivet/uemacs.git synced 2025-11-23 11:41:15 -05:00

Revise keycode encoding.

Gather APROP and CFENCE conditional code.
This commit is contained in:
2021-07-30 16:24:52 +08:00
parent 22bbd0417c
commit c4fab606d1
11 changed files with 242 additions and 243 deletions

View File

@@ -1,5 +1,20 @@
extern int gasave ; /* global ASAVE size */
extern int gacount ; /* count until next ASAVE */
/* execute.h -- */
int execute( int c, int f, int n) ;
#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 */