about summary refs log tree commit diff
path: root/Src
diff options
context:
space:
mode:
authorJun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>2020-10-25 23:02:36 +0100
committerMikael Magnusson <mikachu@gmail.com>2020-10-25 23:05:19 +0100
commitb6ba74cd4eaec2b6cb515748cf1b74a19133d4a4 (patch)
tree6549a1a7efe20c2e50581390fab9385cca17487d /Src
parentead29c2a366eb2c5006d7da64963ce5f60deb684 (diff)
downloadzsh-b6ba74cd4eaec2b6cb515748cf1b74a19133d4a4.tar.gz
zsh-b6ba74cd4eaec2b6cb515748cf1b74a19133d4a4.tar.xz
zsh-b6ba74cd4eaec2b6cb515748cf1b74a19133d4a4.zip
47301: Fix print -v metafication
Diffstat (limited to 'Src')
-rw-r--r--Src/builtin.c2
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.