diff options
author | Bart Schaefer <barts@users.sourceforge.net> | 2013-01-06 18:55:00 +0000 |
---|---|---|
committer | Bart Schaefer <barts@users.sourceforge.net> | 2013-01-06 18:55:00 +0000 |
commit | dda51b9dbbfa6b3f7b8b99124b0a2a504521eb2c (patch) | |
tree | 944d782600d2cfe64ac7e2716fe3ca2525fd99ad /Src/builtin.c | |
parent | a67802ba824ca3a7d27cbb54a5d3bcd13c14677a (diff) | |
download | zsh-dda51b9dbbfa6b3f7b8b99124b0a2a504521eb2c.tar.gz zsh-dda51b9dbbfa6b3f7b8b99124b0a2a504521eb2c.tar.xz zsh-dda51b9dbbfa6b3f7b8b99124b0a2a504521eb2c.zip |
30949: restore "read -q" behavior lost by 27188
Diffstat (limited to 'Src/builtin.c')
-rw-r--r-- | Src/builtin.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Src/builtin.c b/Src/builtin.c index 90fe1a6c5..f5c727f47 100644 --- a/Src/builtin.c +++ b/Src/builtin.c @@ -5490,6 +5490,9 @@ bin_read(char *name, char **args, Options ops, UNUSED(int func)) eof = 2; else eof = (bptr - buf != 1 || (buf[0] != 'y' && buf[0] != 'Y')); + buf[0] = eof ? 'n' : 'y'; + buf[1] = 0; + bptr = buf+2; } if (OPT_ISSET(ops,'e') || OPT_ISSET(ops,'E')) fwrite(buf, bptr - buf, 1, stdout); |