From 525a133f2f37a7f4d881bd86fc79522223cfd5a2 Mon Sep 17 00:00:00 2001
From: Sven Wischnowsky <wischnow@users.sourceforge.net>
Date: Mon, 7 May 2001 09:25:05 +0000
Subject: [PATCH] double all backslashes before colons in the original pattern
 (14240)

---
 ChangeLog                   | 5 +++++
 Completion/Unix/Type/_files | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog
index 52c391af3..3555b4490 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-05-07  Sven Wischnowsky  <wischnow@zsh.org>
+
+	* 14240: Completion/Unix/Type/_files: double all backslashes
+	before colons in the original pattern
+
 2001-05-06  Bart Schaefer  <schaefer@zsh.org>
 
 	* 14235: Completion/Zsh/Context/_subscript: Improve handling of
diff --git a/Completion/Unix/Type/_files b/Completion/Unix/Type/_files
index 1385bfc97..a291ee786 100644
--- a/Completion/Unix/Type/_files
+++ b/Completion/Unix/Type/_files
@@ -52,7 +52,7 @@ fi
 
 tried=()
 for def in "$pats[@]"; do
-  eval "def=( ${${def:s/\\:/\\\\\\\\\\\\:}//(#b)([][()|*?^#~<>])/\\${match[1]}} )"
+  eval "def=( ${${def:gs/\\:/\\\\\\\\\\\\:}//(#b)([][()|*?^#~<>])/\\${match[1]}} )"
   for sdef in "$def[@]"; do
 
     tag="${${sdef#*[^\\]:}%%:*}"