(comint-exec-1): Use file-accessible-directory-p.
authorRichard M. Stallman <rms@gnu.org>
Mon, 27 Jan 1997 22:55:04 +0000 (22:55 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 27 Jan 1997 22:55:04 +0000 (22:55 +0000)
lisp/comint.el

index dfe240f..849345e 100644 (file)
@@ -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)))