summaryrefslogtreecommitdiff
path: root/bin/ksh
diff options
context:
space:
mode:
Diffstat (limited to 'bin/ksh')
-rw-r--r--bin/ksh/lex.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/bin/ksh/lex.c b/bin/ksh/lex.c
index 568a960c06c..73c54b3af37 100644
--- a/bin/ksh/lex.c
+++ b/bin/ksh/lex.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: lex.c,v 1.67 2015/12/30 09:07:00 tedu Exp $ */
+/* $OpenBSD: lex.c,v 1.68 2016/03/04 09:37:23 czarkoff Exp $ */
/*
* lexical analysis and source input
@@ -582,6 +582,15 @@ yylex(int cf)
break;
case SBRACEQ:
+ /*{*/
+ if (c == '}') {
+ POP_STATE();
+ *wp++ = CSUBST;
+ *wp++ = /*{*/ '}';
+ } else
+ goto Sbase2;
+ break;
+
case SBRACE:
/*{*/
if (c == '}') {