mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-02 10:01:11 +02:00
Merge of workers/{21131,21328}.
This commit is contained in:
parent
333ee0195a
commit
22fbfe532b
2 changed files with 9 additions and 5 deletions
10
Src/init.c
10
Src/init.c
|
@ -112,7 +112,7 @@ loop(int toplevel, int justonce)
|
|||
hbegin(1); /* init history mech */
|
||||
if (isset(SHINSTDIN)) {
|
||||
setblock_stdin();
|
||||
if (interact) {
|
||||
if (interact && toplevel) {
|
||||
int hstop = stophist;
|
||||
stophist = 3;
|
||||
preprompt();
|
||||
|
@ -308,14 +308,14 @@ parseargs(char **argv)
|
|||
}
|
||||
if (*argv) {
|
||||
if (unset(SHINSTDIN)) {
|
||||
argzero = *argv;
|
||||
if (!cmd)
|
||||
SHIN = movefd(open(unmeta(argzero), O_RDONLY | O_NOCTTY));
|
||||
SHIN = movefd(open(unmeta(*argv), O_RDONLY | O_NOCTTY));
|
||||
if (SHIN == -1) {
|
||||
zerr("can't open input file: %s", argzero, 0);
|
||||
exit(1);
|
||||
zerr("can't open input file: %s", *argv, 0);
|
||||
exit(127);
|
||||
}
|
||||
opts[INTERACTIVE] &= 1;
|
||||
argzero = *argv;
|
||||
argv++;
|
||||
}
|
||||
while (*argv)
|
||||
|
|
|
@ -452,3 +452,7 @@
|
|||
$ZTST_testdir/../Src/zsh -f -c "'"
|
||||
1:Parse error on inline command causes non-zero exit status
|
||||
?zsh: unmatched '
|
||||
|
||||
$ZTST_testdir/../Src/zsh -f NonExistentScript
|
||||
127q:Non-existent script causes exit status 127
|
||||
?$ZTST_testdir/../Src/zsh: can't open input file: NonExistentScript
|
||||
|
|
Loading…
Reference in a new issue