diff options
| -rw-r--r-- | lisp/comint.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/comint.el b/lisp/comint.el index dfe240f156a..849345ef205 100644 --- a/lisp/comint.el +++ b/lisp/comint.el | |||
| @@ -598,7 +598,7 @@ buffer. The hook `comint-exec-hook' is run after each exec." | |||
| 598 | (if (getenv "EMACS") nil (list "EMACS=t")) | 598 | (if (getenv "EMACS") nil (list "EMACS=t")) |
| 599 | process-environment)) | 599 | process-environment)) |
| 600 | (default-directory | 600 | (default-directory |
| 601 | (if (file-directory-p default-directory) | 601 | (if (file-accessible-directory-p default-directory) |
| 602 | default-directory | 602 | default-directory |
| 603 | "/"))) | 603 | "/"))) |
| 604 | (apply 'start-process name buffer command switches))) | 604 | (apply 'start-process name buffer command switches))) |