zsh-users
 help / color / mirror / code / Atom feed
From: Bart Schaefer <schaefer@brasslantern.com>
To: Zach Riggle <zachriggle@gmail.com>
Cc: Zsh Users <zsh-users@zsh.org>
Subject: Re: Accessing the evaluated expression which caused an error
Date: Sat, 4 Sep 2021 19:08:07 -0700	[thread overview]
Message-ID: <CAH+w=7a7FsYcm6bGaYn+E6hXZy=O2-_6oPnNU=1KG_FMvSFHbA@mail.gmail.com> (raw)
In-Reply-To: <CAMP9c5ngXWo4U2cjWeQtBr5+-tjA2gBu=Yi=k1STNkRidW1QAQ@mail.gmail.com>

On Sat, Sep 4, 2021 at 5:27 PM Zach Riggle <zachriggle@gmail.com> wrote:
>
> Will the (e) actually evaluate the parameters and execute them again? Or just a single layer of expansion?

Well ... it only does a single layer, but the string value of
ZSH_DEBUG_CMD is not itself specially quoted, so you only want to
apply (e) to cases like "${cmd[@]}" where you've deliberately added an
extra layer of quoting and want to peek inside it.

Then of course you probably want to put the quoting back again ... I
guess it ends up something like:

TRAPDEBUG() {
  if function {
    setopt localoptions extendedglob
    [[ $ZSH_DEBUG_CMD = \"[^\"](#c1,)\" ]]
  }
  then ZSH_DEBUG_CMD=${(@q-)${(z)${(e)${(Q)ZSH_DEBUG_CMD}}}}
  fi
  print -r -- $ZSH_DEBUG_CMD
}


      parent reply	other threads:[~2021-09-05  2:09 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-03  1:42 Zach Riggle
2021-09-03 17:14 ` Bart Schaefer
2021-09-03 17:38   ` Zach Riggle
2021-09-04 20:08     ` Bart Schaefer
2021-09-05  0:26       ` Zach Riggle
2021-09-05  1:44         ` Lawrence Velázquez
2021-09-05  2:08         ` Bart Schaefer [this message]

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='CAH+w=7a7FsYcm6bGaYn+E6hXZy=O2-_6oPnNU=1KG_FMvSFHbA@mail.gmail.com' \
    --to=schaefer@brasslantern.com \
    --cc=zachriggle@gmail.com \
    --cc=zsh-users@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).