Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: skipping assignment and function statements; Interactive comments
- X-seq: zsh-workers 25535
- From: "Rocky Bernstein" <rocky.bernstein@xxxxxxxxx>
- To: "Peter Stephenson" <p.w.stephenson@xxxxxxxxxxxx>
- Subject: Re: skipping assignment and function statements; Interactive comments
- Date: Mon, 25 Aug 2008 22:59:03 -0400
- Cc: "Zsh hackers list" <zsh-workers@xxxxxxxxxx>
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=eLEFHyuuAciQRDrnw5iqrn3adNukKaLqw+eVWkJ54Y0=; b=RCwHQWTMXEEGtvPO6Ecc83bZAoR5OKQZ634G+xI+HkjbTnK11mNADxz/Uge+VTGyyr YqdC8cug51E3xJydYjrcZigNUFHoAu2UfdpEH6LtSJze4nMR8YFdfg6DokYuuKewoDMn MgeFFUhtfHIRVTs6iX4ddbN0ovI/EWhSeiwyQ=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=xBWs5o30pl9fgYYI2cMElDcLrCfaHrTnhg9eJagQ/FP1LcgKACFB3pz/s8fXA9MhWe AoyVXa9Nb9XbwRM0hY+It1BKeNEJ/iuPMAZJ7WHHwHkkqBBz3nn9HEfTaasw595/OQNH 9QrxDGtERqYM09lwwzs3WBzxTeSDYwjUom+cU=
- In-reply-to: <20080825182229.50299852@pws-pc>
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
- References: <6cd6de210808222115x56de11bdv957bb8cc21358789@xxxxxxxxxxxxxx> <20080825182229.50299852@pws-pc>
Thanks! Seems to work fine.
(Now I have to work out my own regression tests for on this ;-)
On Mon, Aug 25, 2008 at 1:22 PM, Peter Stephenson
<p.w.stephenson@xxxxxxxxxxxx> wrote:
> On Sat, 23 Aug 2008 00:15:31 -0400
> "Rocky Bernstein" <rocky.bernstein@xxxxxxxxx> wrote:
>> I just added a skip command to zshdb (and committed to github), but it
>> seems that assignment statements and function definitions are not
>> really skipped.
>
> Yes, thanks, there's yet another infuriating special case of the sort
> that makes me wish I'd picked an easier project.
>
> That's the third change here; the stuff with intrap is because it
> doesn't detect that it's already inside a trap (and hence should skip
> debugging) until it gets into dotrapargs(), and in this case it seems
> neater not to go to the trouble. This will be even more sensible when I
> get around to regenerating the line to be debugged at this point.
>
> Index: Src/exec.c
> ===================================================================
> RCS file: /cvsroot/zsh/zsh/Src/exec.c,v
> retrieving revision 1.141
> diff -u -r1.141 exec.c
> --- Src/exec.c 22 Aug 2008 15:41:31 -0000 1.141
> +++ Src/exec.c 25 Aug 2008 17:21:19 -0000
> @@ -1068,7 +1068,7 @@
> lineno = lnp1 - 1;
> }
>
> - if (sigtrapped[SIGDEBUG] && isset(DEBUGBEFORECMD)) {
> + if (sigtrapped[SIGDEBUG] && isset(DEBUGBEFORECMD) && !intrap) {
> int oerrexit_opt = opts[ERREXIT];
> opts[ERREXIT] = 0;
> noerrexit = 1;
> @@ -1086,11 +1086,12 @@
> donedebug = isset(ERREXIT) ? 2 : 1;
> opts[ERREXIT] = oerrexit_opt;
> } else
> - donedebug = 0;
> + donedebug = intrap ? 1 : 0;
>
> if (ltype & Z_SIMPLE) {
> next = state->pc + WC_LIST_SKIP(code);
> - execsimple(state);
> + if (donedebug != 2)
> + execsimple(state);
> state->pc = next;
> goto sublist_done;
> }
> Index: Test/C03traps.ztst
> ===================================================================
> RCS file: /cvsroot/zsh/zsh/Test/C03traps.ztst,v
> retrieving revision 1.14
> diff -u -r1.14 C03traps.ztst
> --- Test/C03traps.ztst 7 Aug 2008 16:25:16 -0000 1.14
> +++ Test/C03traps.ztst 25 Aug 2008 17:21:19 -0000
> @@ -415,6 +415,20 @@
> >3 three
> >5 five
>
> + # Assignments are a special case, since they use a simpler
> + # wordcode type, so we need to test skipping them separately.
> + fn() {
> + setopt localtraps localoptions debugbeforecmd
> + trap '(( LINENO == 4 )) && setopt errexit' DEBUG
> + x=three
> + x=four
> + print $LINENO $x
> + [[ -o errexit ]] && print "Hey, ERREXIT is set!"
> + }
> + fn
> +1:Skip assignment from DEBUG trap
> +>5 three
> +
> %clean
>
> rm -f TRAPEXIT
>
>
> --
> Peter Stephenson <p.w.stephenson@xxxxxxxxxxxx>
> Web page now at http://homepage.ntlworld.com/p.w.stephenson/
>
Messages sorted by:
Reverse Date,
Date,
Thread,
Author