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

Add %B in string format of mlwrite to ring a bell.

This commit is contained in:
2015-01-21 14:12:24 +08:00
parent 4ca3f53385
commit fbfaa29497
8 changed files with 17 additions and 17 deletions

View File

@@ -101,7 +101,7 @@ int gotoline(int f, int n)
if( f == FALSE) {
status = mlreply( "Line to GOTO: ", arg, sizeof arg) ;
if( status != TRUE)
return logger( status, FALSE, "(Aborted)") ;
return logger( status, "(Aborted)") ;
n = atoi( arg) ;
}
@@ -313,7 +313,7 @@ int setmark(int f, int n)
{
curwp->w_markp = curwp->w_dotp;
curwp->w_marko = curwp->w_doto;
return logger( TRUE, FALSE, "(Mark set)") ;
return logger( TRUE, "(Mark set)") ;
}
/*
@@ -328,7 +328,7 @@ int swapmark(int f, int n)
int odoto;
if( curwp->w_markp == NULL)
return logger( FALSE, FALSE, "No mark in this window") ;
return logger( FALSE, "No mark in this window") ;
odotp = curwp->w_dotp;
odoto = curwp->w_doto;