mirror of
https://github.com/rfivet/uemacs.git
synced 2024-12-18 07:16:23 -05:00
20 lines
407 B
C
20 lines
407 B
C
#ifndef _BIND_H_
|
|
#define _BIND_H_
|
|
|
|
#include "names.h"
|
|
|
|
/* 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
|