zsh-workers
 help / color / mirror / code / Atom feed
From: Bart Schaefer <schaefer@brasslantern.com>
To: zsh-workers@zsh.org
Subject: Re: BUG:  Parser unwinding (lack thereof)
Date: Wed, 6 May 2015 07:42:21 -0700	[thread overview]
Message-ID: <150506074221.ZM622@torch.brasslantern.com> (raw)
In-Reply-To: <150506000839.ZM19106@torch.brasslantern.com>

On May 6, 12:08am, Bart Schaefer wrote:
} Subject: BUG:  Parser unwinding (lack thereof)
}
} torch% print -l ${            
} braceparam> ^C
} torch% print -l ${
} braceparam braceparam> 

This seems to handle it:


diff --git a/Src/lex.c b/Src/lex.c
index c929bb9..5b6d3a6 100644
--- a/Src/lex.c
+++ b/Src/lex.c
@@ -1345,8 +1345,11 @@ gettokstr(int c, int sub)
 	    break;
     }
   brk:
-    if (errflag)
+    if (errflag) {
+	while(bct-- >= in_brace_param)
+	    cmdpop();
 	return LEXERR;
+    }
     hungetc(c);
     if (unmatched)
 	zerr("unmatched %c", unmatched);


  reply	other threads:[~2015-05-06 14:42 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-05-06  7:08 Bart Schaefer
2015-05-06 14:42 ` Bart Schaefer [this message]
2015-05-06 14:55   ` Peter Stephenson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=150506074221.ZM622@torch.brasslantern.com \
    --to=schaefer@brasslantern.com \
    --cc=zsh-workers@zsh.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).