changeset 30630:5c09c89349f4

(shell-quote-wildcard-pattern): Make sure to return PATTERN, in the Unix case.
author Gerd Moellmann <gerd@gnu.org>
date Mon, 07 Aug 2000 10:06:54 +0000
parents 7c02f09cfefb
children 0c3f7d0ebb82
files lisp/files.el
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/files.el	Mon Aug 07 07:51:40 2000 +0000
+++ b/lisp/files.el	Mon Aug 07 10:06:54 2000 +0000
@@ -3453,7 +3453,9 @@
 		(concat (substring pattern 0 (match-beginning 0))
 			"\\"
 			(substring pattern (match-beginning 0)))
-		beg (1+ (match-end 0)))))))))
+		beg (1+ (match-end 0)))))
+      pattern))))
+  
 
 (defvar insert-directory-program "ls"
   "Absolute or relative name of the `ls' program used by `insert-directory'.")