2021-08-09 03:45:01 -04:00
|
|
|
/* bindable.h -- misc bindable functions */
|
|
|
|
#ifndef _BINDABLE_H_
|
|
|
|
#define _BINDABLE_H_
|
|
|
|
|
2021-08-12 23:06:58 -04:00
|
|
|
#include "names.h" /* BINDABLE() */
|
2021-07-23 20:58:23 -04:00
|
|
|
|
2013-06-04 23:48:40 -04:00
|
|
|
/* functions that can be bound to keys or procedure names */
|
2021-08-11 05:02:19 -04:00
|
|
|
BBINDABLE( ctlxe) ;
|
|
|
|
BBINDABLE( ctlxlp) ;
|
|
|
|
BBINDABLE( ctlxrp) ;
|
2021-08-12 23:06:58 -04:00
|
|
|
BINDABLE( ctrlg) ; /* ABORT */
|
2021-08-11 05:02:19 -04:00
|
|
|
BINDABLE( quickexit) ;
|
|
|
|
BINDABLE( quit) ;
|
2021-08-09 03:45:01 -04:00
|
|
|
|
|
|
|
#endif
|
|
|
|
/* end of bindable.h */
|