From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13417 invoked from network); 30 Jun 2004 15:58:57 -0000 Received: from odin.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.85) by ns1.primenet.com.au with SMTP; 30 Jun 2004 15:58:57 -0000 Received: (qmail 17005 invoked from network); 30 Jun 2004 17:10:10 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 30 Jun 2004 17:10:10 -0000 Received: (qmail 10496 invoked by alias); 30 Jun 2004 15:58:40 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 20121 Received: (qmail 10486 invoked from network); 30 Jun 2004 15:58:39 -0000 Received: from odin.dotsrc.org (HELO a.mx.sunsite.dk) (qmailr@130.225.247.85) by sunsite.dk with SMTP; 30 Jun 2004 15:58:39 -0000 Received: (qmail 16747 invoked from network); 30 Jun 2004 17:10:00 -0000 Received: from unknown (HELO moonbase.zanshin.com) (@167.160.213.139) by a.mx.sunsite.dk with SMTP; 30 Jun 2004 17:09:53 -0000 Received: from toltec.zanshin.com (toltec.zanshin.com [64.84.47.166]) by moonbase.zanshin.com (8.12.11/8.12.11) with ESMTP id i5UFwUHs011045 for ; Wed, 30 Jun 2004 08:58:30 -0700 Date: Wed, 30 Jun 2004 08:58:30 -0700 (PDT) From: Bart Schaefer Reply-To: zsh-workers@sunsite.dk To: zsh-workers@sunsite.dk Subject: Re: PATCH: (2): Bug#255788: $'' does not work after <<< In-Reply-To: <200406301000.i5UA08he023718@news01.csr.com> Message-ID: References: <200406301000.i5UA08he023718@news01.csr.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Spam-Checker-Version: SpamAssassin 2.63 on a.mx.sunsite.dk X-Spam-Level: X-Spam-Status: No, hits=0.0 required=6.0 tests=none autolearn=no version=2.63 X-Spam-Hits: 0.0 [I've dropped bugs.debian.org from this.] On Wed, 30 Jun 2004, Peter Stephenson wrote: > I've finally plucked up my courage for another round... > > Bart Schaefer wrote: > > > > schaefer<501> cat <<`echo `foo `bar > > bquote> ` > > bquote> ` > > bquote> ` > > bquote> > > Hmmm... are you sure? Ah, it's SUN_KEYBOARD_HACK causing the solitary backtick to be silently discaraded. With "zsh -f" I get what you got: > % cat <<`echo `foo `bar > bquote> ` > heredoc> > > At this point, there's no way of finishing the here-document because it > parses line by line and can't match the newline. I see; but if completion is active you're now in a state where it's not possible to get zsh to recognize the EOF character, unless it's bound to something different than delete-char-or-list. So you must type interrupt to get on with your life. That's what bothers me ... but I guess it was always that way and I just never noticed before.