zsh-workers
 help / color / mirror / code / Atom feed
From: Peter Stephenson <p.w.stephenson@ntlworld.com>
To: "Zsh Hackers' List" <zsh-workers@zsh.org>
Subject: Re: PATCH: fix command substitution parsing
Date: Sat, 10 Jan 2015 20:25:49 +0000	[thread overview]
Message-ID: <20150110202549.172a1646@ntlworld.com> (raw)
In-Reply-To: <CAHYJk3SRhx_D3ENXNF4dgWLBAPP7PNhvFFx7cn==tGse2e9CyQ@mail.gmail.com>

On Sat, 10 Jan 2015 20:56:58 +0100
Mikael Magnusson <mikachu@gmail.com> wrote:
> % alias foo=bar
> % f() $(foo)
> % which f
> f () {
>     $(foobar)
> }

diff --git a/Src/input.c b/Src/input.c
index 04dda5a..2ecac7b 100644
--- a/Src/input.c
+++ b/Src/input.c
@@ -537,6 +537,12 @@ inpush(char *str, int flags, Alias inalias)
 static void
 inpoptop(void)
 {
+    if (!lexstop) {
+	inbufflags &= ~INP_ALCONT;
+	while (inbufptr > inbuf)
+	    inungetc(inbufptr[-1]);
+    }
+
     if (inbuf && (inbufflags & INP_FREE))
 	free(inbuf);
 


  reply	other threads:[~2015-01-10 20:25 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-01-07 16:48 Peter Stephenson
2015-01-09 21:26 ` Peter Stephenson
2015-01-10  1:28   ` Bart Schaefer
2015-01-10 19:56 ` Mikael Magnusson
2015-01-10 20:25   ` Peter Stephenson [this message]
2015-01-11 19:02 ` 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=20150110202549.172a1646@ntlworld.com \
    --to=p.w.stephenson@ntlworld.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).