about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2004-10-26 17:20:21 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2004-10-26 17:20:21 +0000
commitc8e70ab5cffaffacf6d0a4e81df4fbd685378bfd (patch)
tree05c643d439176b1feee4456b07b3a2e6d5f9643a
parentced347cf3afd9475e07ae3676b6d637243bdabb2 (diff)
downloadzsh-c8e70ab5cffaffacf6d0a4e81df4fbd685378bfd.tar.gz
zsh-c8e70ab5cffaffacf6d0a4e81df4fbd685378bfd.tar.xz
zsh-c8e70ab5cffaffacf6d0a4e81df4fbd685378bfd.zip
20522: must-match optimisation in parameter substitution broken
-rw-r--r--ChangeLog5
-rw-r--r--Src/glob.c16
-rw-r--r--Test/D02glob.ztst5
3 files changed, 24 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index b6852687c..ddf0e1143 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-10-26  Peter Stephenson  <pws@csr.com>
+
+	* 20522: Src/glob.c, Test/D02glob.ztst: must-match optimisation
+	was broken for pattern substitutions in parameters.
+
 2004-10-22  Wayne Davison  <wayned@users.sourceforge.net>
 
 	* 20510: Borzenkov Andrey: Src/jobs.c: Fixed the arg to a call
diff --git a/Src/glob.c b/Src/glob.c
index 84ee8a751..5519e0e02 100644
--- a/Src/glob.c
+++ b/Src/glob.c
@@ -2206,8 +2206,20 @@ igetmatch(char **sp, Patprog p, int fl, int n, char *replstr)
     repllist = NULL;
 
     /* perform must-match test for complex closures */
-    if (p->mustoff && !strstr((char *)s, (char *)p + p->mustoff))
-	matched = 0;
+    if (p->mustoff)
+    {
+	/*
+	 * Yuk.  Probably we should rewrite this whole function to
+	 * use an unmetafied test string.
+	 *
+	 * Use META_HEAPDUP because we need a terminating NULL.
+	 */
+	char *muststr = metafy((char *)p + p->mustoff,
+			       p->patmlen, META_HEAPDUP);
+
+	if (!strstr(s, muststr))
+	    matched = 0;
+    }
 
     /* in case we used the prog before... */
     p->flags &= ~(PAT_NOTSTART|PAT_NOTEND);
diff --git a/Test/D02glob.ztst b/Test/D02glob.ztst
index c7976225d..f35e5eb75 100644
--- a/Test/D02glob.ztst
+++ b/Test/D02glob.ztst
@@ -312,3 +312,8 @@
  [[ "" = "" ]] && echo OK
 0:Empty strings
 >OK
+
+ foo="this string has a : colon in it"
+ print ${foo%% #:*}
+0:Must-match arguments in complex patterns
+>this string has a