about summary refs log tree commit diff
path: root/Src/lex.c
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2003-07-17 09:44:38 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2003-07-17 09:44:38 +0000
commit74f47913dae9a1427e553ac01ef0a3a6ba1095b8 (patch)
tree06b7237387d9114975ba1fdbd101940664ccde1a /Src/lex.c
parent53eb501c708e74346f3ab3e93c51929f7b9c2588 (diff)
downloadzsh-74f47913dae9a1427e553ac01ef0a3a6ba1095b8.tar.gz
zsh-74f47913dae9a1427e553ac01ef0a3a6ba1095b8.tar.xz
zsh-74f47913dae9a1427e553ac01ef0a3a6ba1095b8.zip
18864: unnecessary space with ${(Q)...}
Diffstat (limited to 'Src/lex.c')
-rw-r--r--Src/lex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/lex.c b/Src/lex.c
index 8c6ae71c0..495d759d4 100644
--- a/Src/lex.c
+++ b/Src/lex.c
@@ -1512,7 +1512,7 @@ parse_subst_string(char *s)
 {
     int c, l = strlen(s), err, olen;
 
-    if (! *s)
+    if (!*s || !strcmp(s, nulstring))
 	return 0;
     lexsave();
     untokenize(s);