mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-14 00:26:01 -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'.
17 lines
359 B
C
17 lines
359 B
C
/* bindable.h -- misc bindable functions */
|
|
#ifndef _BINDABLE_H_
|
|
#define _BINDABLE_H_
|
|
|
|
#include "names.h" /* BINDABLE() */
|
|
|
|
/* functions that can be bound to keys or procedure names */
|
|
BBINDABLE( ctlxe) ;
|
|
BBINDABLE( ctlxlp) ;
|
|
BBINDABLE( ctlxrp) ;
|
|
BINDABLE( ctrlg) ; /* ABORT */
|
|
BINDABLE( quickexit) ;
|
|
BINDABLE( quit) ;
|
|
|
|
#endif
|
|
/* end of bindable.h */
|