about summary refs log tree commit diff
path: root/Src/lex.c
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2000-05-24 17:20:26 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2000-05-24 17:20:26 +0000
commit9121d78354d0578333e4f64ac6fa96710e0bf118 (patch)
tree566bff997fcabff1143b26d1f6fe28f1ee45e3e3 /Src/lex.c
parent8fd4ecc3464651e7aca9f57ee42799b40ed3ec39 (diff)
downloadzsh-9121d78354d0578333e4f64ac6fa96710e0bf118.tar.gz
zsh-9121d78354d0578333e4f64ac6fa96710e0bf118.tar.xz
zsh-9121d78354d0578333e4f64ac6fa96710e0bf118.zip
11561: no RC_QUOTES in $'..'
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 0c16db60c..f5c8d7bdd 100644
--- a/Src/lex.c
+++ b/Src/lex.c
@@ -1190,7 +1190,7 @@ gettokstr(int c, int sub)
 		    goto brk;
 		}
 		e = hgetc();
-		if (e != '\'' || unset(RCQUOTES))
+		if (e != '\'' || unset(RCQUOTES) || strquote)
 		    break;
 		add(c);
 	    }