mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-18 02:26:06 -05:00
27 lines
451 B
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 ;
|
|
}
|