mirror of
https://github.com/rfivet/uemacs.git
synced 2024-12-18 07:16: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'.
25 lines
458 B
C
25 lines
458 B
C
/* word.h -- word processing functions */
|
|
#ifndef _WORD_H_
|
|
#define _WORD_H_
|
|
|
|
#include "names.h"
|
|
|
|
/* Bindable functions */
|
|
BINDABLE( wrapword) ;
|
|
BINDABLE( backword) ;
|
|
BINDABLE( forwword) ;
|
|
BINDABLE( upperword) ;
|
|
BINDABLE( lowerword) ;
|
|
BINDABLE( capword) ;
|
|
BINDABLE( delfword) ;
|
|
BINDABLE( delbword) ;
|
|
BINDABLE( gotobop) ;
|
|
BINDABLE( gotoeop) ;
|
|
BINDABLE( fillpara) ;
|
|
BINDABLE( justpara) ;
|
|
BINDABLE( killpara) ;
|
|
BINDABLE( wordcount) ;
|
|
|
|
#endif
|
|
/* end of word.h */
|