zsh-workers
 help / color / mirror / code / Atom feed
From: "Jun T." <takimoto-j@kba.biglobe.ne.jp>
To: zsh-workers@zsh.org
Subject: Re: (z) flag little crazy when '((' closed with *single* ')'
Date: Tue, 29 May 2018 02:02:18 +0900	[thread overview]
Message-ID: <E7E4396C-79DF-4E67-B28F-88539F25928A@kba.biglobe.ne.jp> (raw)
In-Reply-To: <CAKc7PVA1bDLRsFiZgukbuY+KaD-vAaSMLpNsPzPQt15H4L89Fw@mail.gmail.com>


> 2018/05/28 23:43, Sebastian Gniazdowski <sgniazdowski@gmail.com> wrote:
> 
> ~ buf='(( i = 1, i <= size, ++ i )'; printf "|%s|\n" "${(z)buf}"
> |(|
> |(|
(snip)
> |)|
> 
> It splits almost char by char. I wonder if this couldn't be fixed? So
> that (z) would split this as:
> 
> |(( i = 1, i <= size, ++ i )|

If the lexer can't find the closing '))' on the command line, it tries
to interpret the opening '((' as '( (', i.e., nested subshells.

zsh% ((echo foo) )
foo
zsh% ((echo foo); echo bar)
foo
bar
zsh% ((echo foo)
subsh>

${(z)...} uses the same lexter, and even if it is OK to make it behave
differently from the command line, we may need to modify the lexer ...


  reply	other threads:[~2018-05-28 17:36 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-05-28 14:43 Sebastian Gniazdowski
2018-05-28 17:02 ` Jun T. [this message]
2018-05-29  0:08   ` Bart Schaefer

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=E7E4396C-79DF-4E67-B28F-88539F25928A@kba.biglobe.ne.jp \
    --to=takimoto-j@kba.biglobe.ne.jp \
    --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).