mirror of
https://github.com/rfivet/uemacs.git
synced 2024-12-18 15:26:23 -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'.
22 lines
518 B
C
22 lines
518 B
C
/* bind.h -- bindable functions dealing with name and key bindings */
|
|
#ifndef _BIND_H_
|
|
#define _BIND_H_
|
|
|
|
#include "names.h" /* BINDABLE() */
|
|
|
|
/* Bindable uEMACS functions */
|
|
BINDABLE( apro) ;
|
|
BINDABLE( bindtokey) ;
|
|
BINDABLE( desbind) ;
|
|
BINDABLE( deskey) ;
|
|
BINDABLE( help) ;
|
|
BINDABLE( unbindkey) ;
|
|
|
|
int startup( const char *fname) ;
|
|
|
|
/* find a key to function association in the key to function mapping table */
|
|
const char *transbind( char *skey) ; /* by string representation of key */
|
|
|
|
#endif
|
|
/* end of bind.h */
|