1
0
mirror of https://github.com/rfivet/uemacs.git synced 2025-11-23 11:41:15 -05:00

Transition from logger/logwrite/mlwrite to writestr/writefmt.

This commit is contained in:
2015-01-21 21:30:01 +08:00
parent 891f4c3238
commit 15ae2d4135
11 changed files with 70 additions and 66 deletions

View File

@@ -74,7 +74,7 @@ int copyregion(int f, int n)
++loffs;
}
}
logwrite("(region copied)");
writestr( "(region copied)") ;
return TRUE;
}
@@ -171,7 +171,7 @@ int getregion(struct region *rp)
long bsize;
if (curwp->w_markp == NULL) {
logwrite("No mark set in this window");
writestr( "No mark set in this window") ;
return FALSE;
}
if (curwp->w_dotp == curwp->w_markp) {
@@ -213,6 +213,6 @@ int getregion(struct region *rp)
}
}
}
logwrite("Bug: lost mark");
writestr( "Bug: lost mark") ;
return FALSE;
}