# HG changeset patch # User Gerd Moellmann # Date 965642814 0 # Node ID 5c09c89349f4a71383924a7e0c3d8e55f4712338 # Parent 7c02f09cfefb8b62ea3428ab6832e3f6503e4fc4 (shell-quote-wildcard-pattern): Make sure to return PATTERN, in the Unix case. diff -r 7c02f09cfefb -r 5c09c89349f4 lisp/files.el --- 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'.")