From fc4210519903635af286532eaf9ab5a85e32dd32 Mon Sep 17 00:00:00 2001 From: tg Date: Sat, 12 Mar 2011 22:40:02 +0000 Subject: [PATCH] revert SLETARRAY changes for now, this introduces problems --- lex.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lex.c b/lex.c index d2736d8..f6a05aa 100644 --- a/lex.c +++ b/lex.c @@ -22,7 +22,7 @@ #include "sh.h" -__RCSID("$MirOS: src/bin/mksh/lex.c,v 1.131 2011/03/12 21:41:13 tg Exp $"); +__RCSID("$MirOS: src/bin/mksh/lex.c,v 1.132 2011/03/12 22:40:02 tg Exp $"); /* * states while lexing word @@ -752,8 +752,9 @@ yylex(int cf) c = 0; goto Done; } - } else if (c == '$') - goto subst_dollar; + } +//else if (c == '$') +// goto subst_dollar; *wp++ = CHAR; *wp++ = c; break;