1
0
mirror of https://github.com/rfivet/uemacs.git synced 2025-09-30 19:14:12 -04:00

Harmonize usage of mlreply, mlreplyt and nextarg based on actual needs (input always terminated either on meta or newline characters).

This commit is contained in:
2015-08-25 09:17:41 +08:00
parent 1ab601071e
commit 51967939b8
6 changed files with 15 additions and 25 deletions

2
exec.c
View File

@@ -298,7 +298,7 @@ int macarg( char *tok, int toksz)
savcle = clexec; /* save execution mode */
clexec = TRUE; /* get the argument */
status = nextarg("", tok, toksz, ctoec('\n'));
status = mlreply( "", tok, toksz) ;
clexec = savcle; /* restore execution mode */
return status;
}