about summary refs log tree commit diff
path: root/Src/glob.c
diff options
context:
space:
mode:
authorClint Adams <clint@users.sourceforge.net>2008-11-08 06:31:01 +0000
committerClint Adams <clint@users.sourceforge.net>2008-11-08 06:31:01 +0000
commit29852fe2145abdae0da87113dbea37b81dc5d58f (patch)
treea66ff16f73de6fa073e0076e60180118ffe8a1b5 /Src/glob.c
parent3a8803a411b697e34652d8e33c11ad86dca99784 (diff)
downloadzsh-29852fe2145abdae0da87113dbea37b81dc5d58f.tar.gz
zsh-29852fe2145abdae0da87113dbea37b81dc5d58f.tar.xz
zsh-29852fe2145abdae0da87113dbea37b81dc5d58f.zip
unposted: revert 26014.
Diffstat (limited to 'Src/glob.c')
-rw-r--r--Src/glob.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/Src/glob.c b/Src/glob.c
index ce7de1ed6..f8d7b5ad0 100644
--- a/Src/glob.c
+++ b/Src/glob.c
@@ -693,13 +693,11 @@ parsecomplist(char *instr)
     if (*(str = instr) == Inpar && !skipparens(Inpar, Outpar, (char **)&str) &&
         *str == Pound && isset(EXTENDEDGLOB) && str[-2] == '/') {
 	instr++;
-
+	if (!(p1 = patcompile(instr, compflags, &instr)))
+	    return NULL;
 	if (instr[0] == '/' && instr[1] == Outpar && instr[2] == Pound) {
 	    int pdflag = 0;
 
-	    if (!(p1 = patcompile(instr, compflags, &instr)))
-	        return NULL;
-
 	    instr += 3;
 	    if (*instr == Pound) {
 		pdflag = 1;