Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: Bug in ${(Q)...}
- X-seq: zsh-workers 18864
- From: Peter Stephenson <pws@xxxxxxx>
- To: zsh-workers@xxxxxxxxxx
- Subject: Re: Bug in ${(Q)...}
- Date: Thu, 17 Jul 2003 10:32:14 +0100
- In-reply-to: "Bart Schaefer"'s message of "Sun, 13 Jul 2003 17:24:18 -0000." <1030713172418.ZM4800@xxxxxxxxxxxxxxxxxxxxxxx>
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
Bart Schaefer wrote:
> On Jul 12, 7:38pm, Philippe Troin wrote:
> } Subject: Bug in ${(Q)...}
> }
> } % setopt extended_glob
> } % echo $ZSH_VERSION "<${(Q)${$(print hello)/%hello#}}>"
> } 4.0.6 < >
> }
> } Shouldn't that be:
> } 4.0.6 <>
> }
> } (no space)
>
> So I'm not sure if this is really a problem with (Q) in paramsubst(), or
> if it's deeper, in parse_subst_string(), and it just happens that (Q)
> makes it visible.
I think the fix is the following. I've never quite followed the logic
of using a string consisting only of a Nularg to represent an empty
string, but it occurs sporadically.
Index: Src/lex.c
===================================================================
RCS file: /cvsroot/zsh/zsh/Src/lex.c,v
retrieving revision 1.24
diff -u -r1.24 lex.c
--- Src/lex.c 6 Oct 2002 18:38:14 -0000 1.24
+++ Src/lex.c 17 Jul 2003 09:29:06 -0000
@@ -1512,7 +1512,7 @@
{
int c, l = strlen(s), err, olen;
- if (! *s)
+ if (!*s || !strcmp(s, nulstring))
return 0;
lexsave();
untokenize(s);
--
Peter Stephenson <pws@xxxxxxx> Software Engineer
CSR Ltd., Science Park, Milton Road,
Cambridge, CB4 0WH, UK Tel: +44 (0)1223 692070
**********************************************************************
The information transmitted is intended only for the person or
entity to which it is addressed and may contain confidential
and/or privileged material.
Any review, retransmission, dissemination or other use of, or
taking of any action in reliance upon, this information by
persons or entities other than the intended recipient is
prohibited.
If you received this in error, please contact the sender and
delete the material from any computer.
**********************************************************************
Messages sorted by:
Reverse Date,
Date,
Thread,
Author