aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1995-03-31 01:56:18 +0000
committerRichard M. Stallman1995-03-31 01:56:18 +0000
commit108aa1b5f05b036d9bd0926fd820e89c44fc92e7 (patch)
tree836b4846bb307603ac7a4281a866a2fbea821401
parent45486731af0f5ee95a877c9020fd5b66a152dd81 (diff)
downloademacs-108aa1b5f05b036d9bd0926fd820e89c44fc92e7.tar.gz
emacs-108aa1b5f05b036d9bd0926fd820e89c44fc92e7.zip
(insert-directory): Use \ before insert-directory-program
to ignore shell aliasing.
-rw-r--r--lisp/files.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/files.el b/lisp/files.el
index 6abe596ef01..0003bd533fe 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -2203,7 +2203,8 @@ If WILDCARD, it also runs the shell specified by `shell-file-name'."
2203 (substring pattern (match-beginning 0))) 2203 (substring pattern (match-beginning 0)))
2204 beg (1+ (match-end 0)))) 2204 beg (1+ (match-end 0))))
2205 (call-process shell-file-name nil t nil 2205 (call-process shell-file-name nil t nil
2206 "-c" (concat insert-directory-program 2206 "-c" (concat "\\" ;; Disregard shell aliases!
2207 insert-directory-program
2207 " -d " 2208 " -d "
2208 (if (stringp switches) 2209 (if (stringp switches)
2209 switches 2210 switches