From: Gerd Moellmann Date: Mon, 7 Aug 2000 10:06:54 +0000 (+0000) Subject: (shell-quote-wildcard-pattern): Make sure to return X-Git-Tag: emacs-pretest-21.0.90~2460 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9facfd265c43348d0088ecb76a285843f127e747;p=emacs.git (shell-quote-wildcard-pattern): Make sure to return PATTERN, in the Unix case. --- diff --git a/lisp/files.el b/lisp/files.el index bb17d5ca13b..b86b8d64004 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -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'.")