1
0
mirror of https://github.com/rfivet/uemacs.git synced 2025-09-26 15:04:04 -04:00

Align naming convention for output of text on the message line: mlout*. (Was a mix of log & write).

This commit is contained in:
2015-02-13 12:31:59 +08:00
parent 6021a22b60
commit 5e5558e00b
16 changed files with 101 additions and 88 deletions

View File

@@ -22,7 +22,7 @@
#include "estruct.h"
#include "input.h"
#include "line.h"
#include "log.h"
#include "mlout.h"
#include "random.h"
#include "terminal.h"
#include "utf8.h"
@@ -101,7 +101,7 @@ int gotoline(int f, int n)
if( f == FALSE) {
status = mlreply( "Line to GOTO: ", arg, sizeof arg) ;
if( status != TRUE) {
writestr( "(Aborted)") ;
mloutstr( "(Aborted)") ;
return status ;
}
@@ -315,7 +315,7 @@ int setmark(int f, int n)
{
curwp->w_markp = curwp->w_dotp;
curwp->w_marko = curwp->w_doto;
writestr( "(Mark set)") ;
mloutstr( "(Mark set)") ;
return TRUE ;
}
@@ -331,7 +331,7 @@ int swapmark(int f, int n)
int odoto;
if( curwp->w_markp == NULL) {
writestr( "No mark in this window") ;
mloutstr( "No mark in this window") ;
return FALSE ;
}