1
0
mirror of https://github.com/rfivet/uemacs.git synced 2024-06-12 22:40:42 +00:00
uemacs/log.c

27 lines
451 B
C

#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 ;
}