(comint-exec-1): Use file-accessible-directory-p.
This commit is contained in:
parent
be65c2f46a
commit
e1d409fed5
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue