help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: apply start-process fails because of invalid current directory


From: Stefan Monnier
Subject: Re: apply start-process fails because of invalid current directory
Date: Wed, 31 Jul 2013 10:47:24 -0400
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux)

> From time to time i encounter problems with commands running
> start-process for ex. eimp-start-process. Trace follows:

> --8<---------------cut here---------------start------------->8---
> Debugger entered--Lisp error: (file-error "Setting current directory"
>   "no such file or directory" "y:/")

That's a common problem: start-process runs an external process and for
that it needs to decide what the "current working directory" of that
process should be.  Elisp says that this should be the directory
specified by `default-directory'.

If your process doesn't use the current directory, then the Elisp code
that runs it should explicitly rebind `default-directory' to some "safe"
choice (e.g. (expand-file-name "~/")) around the call to start-process.


        Stefan




reply via email to

[Prev in Thread] Current Thread [Next in Thread]