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'.
14 lines
300 B
C
14 lines
300 B
C
/* mlout.h -- message line output interface */
|
|
#ifndef __MLOUT_H__
|
|
#define __MLOUT_H__
|
|
|
|
#include "retcode.h"
|
|
|
|
extern void (*mloutfmt)( const char *, ...) ;
|
|
|
|
void mloutstr( const char *str) ;
|
|
boolean mloutfail( const char *msg) ; /* output with BELL and return FALSE */
|
|
|
|
#endif
|
|
/* end of mlout.h */
|