1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-05-13 19:16:15 +02:00

47301: Fix print -v metafication

This commit is contained in:
Jun-ichi Takimoto 2020-10-25 23:02:36 +01:00 committed by Mikael Magnusson
parent ead29c2a36
commit b6ba74cd4e
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2020-10-25 Mikael Magnusson <mikachu@gmail.com>
* Jun-ichi Takimoto: 47301: Src/builtin.c: Fix print -v
metafication
2020-10-18 Roman Perepelitsa <roman.perepelitsa@gmail.com>
* 47476: Src/Modules/files.c: Fix a race condition in zf_mkdir -p

View File

@ -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.