mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-15 17:16:48 -05:00
Renaud Fivet
b4d69118f5
Finish tagging BBINDABLE functions. Modify forward-character to handle combined Unicode. Bump up version number and set default program name as 'ue'.
20 lines
419 B
C
20 lines
419 B
C
/* execute.h -- */
|
|
#ifndef _EXECUTE_H_
|
|
#define _EXECUTE_H_
|
|
|
|
#include "names.h" /* BINDABLE() */
|
|
|
|
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) ;
|
|
|
|
#define CFENCE 1 /* fence matching in CMODE */
|
|
#if CFENCE
|
|
BINDABLE( getfence) ;
|
|
#endif
|
|
|
|
#endif
|
|
/* end of execute.h */
|