zsh-workers
 help / color / mirror / code / Atom feed
From: Peter Stephenson <pws@csr.com>
To: zsh-workers@sunsite.dk (Zsh hackers list)
Subject: Re: Test Failures Latest CVS
Date: Fri, 06 Jul 2001 10:17:50 +0100	[thread overview]
Message-ID: <Tc0a88d0154942c7815@mailsweeper01.cambridgesiliconradio.com> (raw)
In-Reply-To: ""Bart Schaefer""'s message of "Fri, 06 Jul 2001 05:51:58 -0000." <1010706055158.ZM9723@candle.brasslantern.com>

"Bart Schaefer" wrote:
> The question is, -should- it have been changed?
> ... difficult to understand ...
> ... This seems backwards to me. ...
> ... always before it has been the case ...

One real bug turned up here, at least.  This is after removing that patch.

% foo='where i walked lizards wandered here and there around'
% print ${(S)foo%%(#b)(h*e)} 
where i walked lizards wandered here and t around
% print ${foo[$mbegin,$mend]}
ere 
% print $mbegin
-10
% print $mend
-7

Those should always be positive; the fact they appear close to correct when
counting backwards is a coincidence.

Index: Src/glob.c
===================================================================
RCS file: /cvsroot/zsh/zsh/Src/glob.c,v
retrieving revision 1.19
diff -u -r1.19 glob.c
--- Src/glob.c	2001/07/06 09:03:48	1.19
+++ Src/glob.c	2001/07/06 09:14:49
@@ -2236,16 +2236,17 @@
 	    break;
 
 	case (SUB_END|SUB_SUBSTR):
-	    /* Shortest at end with substrings */
-	    patoffset = ml;
-	    set_pat_start(p, l);
-	    if (pattry(p, s + l) && !--n) {
-		*sp = get_match_ret(*sp, l, l, fl, replstr);
-		patoffset = 0;
-		return 1;
-	    } /* fall through */
 	case (SUB_END|SUB_LONG|SUB_SUBSTR):
 	    /* Longest/shortest at end, matching substrings.       */
+	    patoffset = ml;
+	    if (!(fl & SUB_LONG)) {
+		set_pat_start(p, l);
+		if (pattry(p, s + l) && !--n) {
+		    *sp = get_match_ret(*sp, l, l, fl, replstr);
+		    patoffset = 0;
+		    return 1;
+		}
+	    }
 	    patoffset--;
 	    for (t = s + l - 1; t >= s; t--, patoffset--) {
 		if (t > s && t[-1] == Meta)

-- 
Peter Stephenson <pws@csr.com>                  Software Engineer
CSR Ltd., Unit 300, Science Park, Milton Road,
Cambridge, CB4 0XL, UK                          Tel: +44 (0)1223 392070


**********************************************************************
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.
**********************************************************************


  parent reply	other threads:[~2001-07-06  9:18 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2001-07-06  3:53 Vin Shelton
2001-07-06  5:22 ` Andrej Borsenkow
2001-07-06 18:04   ` Clint Adams
2001-07-06  5:51 ` Bart Schaefer
2001-07-06  9:02   ` Peter Stephenson
2001-07-06  9:17   ` Peter Stephenson [this message]
2001-07-06  9:50     ` Peter Stephenson
2001-07-06 16:17       ` 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=Tc0a88d0154942c7815@mailsweeper01.cambridgesiliconradio.com \
    --to=pws@csr.com \
    --cc=zsh-workers@sunsite.dk \
    /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).