greatly simplify hist_execute (useless to cut a string in twain, then
restore the very same string), except now, the one trailing newline is not removed (except in histsave)
This commit is contained in:
parent
b87215bbaf
commit
757d857319
20
histrap.c
20
histrap.c
@ -27,7 +27,7 @@
|
|||||||
#include <sys/file.h>
|
#include <sys/file.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
__RCSID("$MirOS: src/bin/mksh/histrap.c,v 1.144 2015/07/05 16:47:28 tg Exp $");
|
__RCSID("$MirOS: src/bin/mksh/histrap.c,v 1.145 2015/07/05 16:48:28 tg Exp $");
|
||||||
|
|
||||||
Trap sigtraps[ksh_NSIG + 1];
|
Trap sigtraps[ksh_NSIG + 1];
|
||||||
static struct sigaction Sigact_ign;
|
static struct sigaction Sigact_ign;
|
||||||
@ -371,7 +371,6 @@ hist_execute(char *cmd)
|
|||||||
static int last_line = -1;
|
static int last_line = -1;
|
||||||
Source *sold;
|
Source *sold;
|
||||||
int ret;
|
int ret;
|
||||||
char *p, *q;
|
|
||||||
|
|
||||||
/* Back up over last histsave */
|
/* Back up over last histsave */
|
||||||
if (histptr >= history && last_line != hist_source->line) {
|
if (histptr >= history && last_line != hist_source->line) {
|
||||||
@ -381,22 +380,7 @@ hist_execute(char *cmd)
|
|||||||
last_line = hist_source->line;
|
last_line = hist_source->line;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (p = cmd; p; p = q) {
|
histsave(&hist_source->line, cmd, true, true);
|
||||||
if ((q = strchr(p, '\n'))) {
|
|
||||||
/* kill the newline */
|
|
||||||
*q++ = '\0';
|
|
||||||
if (!*q)
|
|
||||||
/* ignore trailing newline */
|
|
||||||
q = NULL;
|
|
||||||
}
|
|
||||||
histsave(&hist_source->line, p, true, true);
|
|
||||||
|
|
||||||
/* POSIX doesn't say this is done... */
|
|
||||||
shellf("%s\n", p);
|
|
||||||
if (q)
|
|
||||||
/* restore \n (trailing \n not restored) */
|
|
||||||
q[-1] = '\n';
|
|
||||||
}
|
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Commands are executed here instead of pushing them onto the
|
* Commands are executed here instead of pushing them onto the
|
||||||
|
Loading…
x
Reference in New Issue
Block a user