(shell-quote-wildcard-pattern): Make sure to return
PATTERN, in the Unix case.
This commit is contained in:
parent
e0d8827bbe
commit
9facfd265c
1 changed files with 3 additions and 1 deletions
|
@ -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'.")
|
||||
|
|
Loading…
Add table
Reference in a new issue