mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-25 10:47:00 +00:00
(comint-exec-1): Use file-accessible-directory-p.
This commit is contained in:
parent
be65c2f46a
commit
e1d409fed5
@ -598,7 +598,7 @@ buffer. The hook `comint-exec-hook' is run after each exec."
|
||||
(if (getenv "EMACS") nil (list "EMACS=t"))
|
||||
process-environment))
|
||||
(default-directory
|
||||
(if (file-directory-p default-directory)
|
||||
(if (file-accessible-directory-p default-directory)
|
||||
default-directory
|
||||
"/")))
|
||||
(apply 'start-process name buffer command switches)))
|
||||
|
Loading…
Reference in New Issue
Block a user