]> git.eshelyaron.com Git - emacs.git/commitdiff
(shell-quote-wildcard-pattern): Make sure to return
authorGerd Moellmann <gerd@gnu.org>
Mon, 7 Aug 2000 10:06:54 +0000 (10:06 +0000)
committerGerd Moellmann <gerd@gnu.org>
Mon, 7 Aug 2000 10:06:54 +0000 (10:06 +0000)
PATTERN, in the Unix case.

lisp/files.el

index bb17d5ca13b469418eda73d3e8ca0b841501627c..b86b8d640040bb2314c3648e4a5d8b07415099aa 100644 (file)
@@ -3453,7 +3453,9 @@ PATTERN that already quotes some of the special characters."
                (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'.")