1
0
mirror of https://github.com/rfivet/uemacs.git synced 2024-09-28 16:35:53 -04:00
uemacs/log.c

27 lines
451 B
C
Raw Normal View History

#include "log.h"
static void logdump( const char *buf, ...) {
}
void (*writefmt)( const char *, ...) = logdump ;
void writestr( const char *str) {
writefmt( "%s", str) ;
}
/*
* tell the user that this command is illegal while we are in
* VIEW (read-only) mode
*/
boolean rdonly( void) {
writefmt( "%B(Key illegal in VIEW mode)") ;
return FALSE ;
}
boolean resterr( void) {
writefmt( "%B(That command is RESTRICTED)") ;
return FALSE ;
2013-09-18 02:25:39 -04:00
}