From 61b9529ff848d6758b498389256111984bda1437 Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Wed, 3 Oct 2012 18:11:12 +0000 Subject: users/17310: we can't treat < after [ as a normal character. Document problem and test for case that needs to work. --- Src/lex.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Src') diff --git a/Src/lex.c b/Src/lex.c index d02b3885a..1cf3611c9 100644 --- a/Src/lex.c +++ b/Src/lex.c @@ -1218,7 +1218,7 @@ gettokstr(int c, int sub) c = Comma; break; case LX2_OUTANG: - if (in_brace_param || sub || brct) + if (in_brace_param || sub) break; e = hgetc(); if (e != '(') { @@ -1255,7 +1255,7 @@ gettokstr(int c, int sub) break; } lexstop = 0; - if (in_brace_param || sub || brct) + if (in_brace_param || sub) break; goto brk; case LX2_EQUALS: -- cgit 1.4.1