mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-15 17:16:48 -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'.
19 lines
346 B
C
19 lines
346 B
C
/* spawn.h -- various operating system access commands */
|
|
#ifndef _SPAWN_H_
|
|
#define _SPAWN_H_
|
|
|
|
#include "names.h" /* BINDABLE() */
|
|
|
|
/* Bindable functions */
|
|
BINDABLE( spawncli) ;
|
|
BINDABLE( bktoshell) ;
|
|
BINDABLE( spawn) ;
|
|
BINDABLE( execprg) ;
|
|
BINDABLE( pipecmd) ;
|
|
BINDABLE( filter_buffer) ;
|
|
|
|
void rtfrmshell( void) ;
|
|
|
|
#endif
|
|
/* end of spawn.h */
|