diff options
| author | Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp> | 2020-10-25 23:02:36 +0100 |
|---|---|---|
| committer | Mikael Magnusson <mikachu@gmail.com> | 2020-10-25 23:05:19 +0100 |
| commit | b6ba74cd4eaec2b6cb515748cf1b74a19133d4a4 (patch) | |
| tree | 6549a1a7efe20c2e50581390fab9385cca17487d /Src | |
| parent | Fix a race condition in zf_mkdir -p (diff) | |
| download | zsh-b6ba74cd4eaec2b6cb515748cf1b74a19133d4a4.tar zsh-b6ba74cd4eaec2b6cb515748cf1b74a19133d4a4.tar.gz zsh-b6ba74cd4eaec2b6cb515748cf1b74a19133d4a4.tar.bz2 zsh-b6ba74cd4eaec2b6cb515748cf1b74a19133d4a4.tar.lz zsh-b6ba74cd4eaec2b6cb515748cf1b74a19133d4a4.tar.xz zsh-b6ba74cd4eaec2b6cb515748cf1b74a19133d4a4.tar.zst zsh-b6ba74cd4eaec2b6cb515748cf1b74a19133d4a4.zip | |
47301: Fix print -v metafication
Diffstat (limited to 'Src')
| -rw-r--r-- | Src/builtin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/builtin.c b/Src/builtin.c index ff84ce936..09eb3728c 100644 --- a/Src/builtin.c +++ b/Src/builtin.c @@ -4862,7 +4862,7 @@ bin_print(char *name, char **args, Options ops, int func) /* normal output */ if (!fmt) { - if (OPT_ISSET(ops, 'z') || OPT_ISSET(ops, 'v') || + if (OPT_ISSET(ops, 'z') || OPT_ISSET(ops, 's') || OPT_ISSET(ops, 'S')) { /* * We don't want the arguments unmetafied after all. |
