Space character inside an argument (emacs lisp) -


in windows, set variable inferior-lisp-program (shell-quote-argument "d:/program files/ccl/wx86cl.exe").

but when run inferior lisp command run-lisp, emacs responds:

searching program: no such file or directory, "d:/program 

it seemed emacs treats "d:/program files/ccl/wx86cl.exe" 2 arguments "d:/program , files/ccl/wx86cl.exe" separated space character.

how can make emacs treat "d:/program files/ccl/wx86cl.exe" whole?

try using old "progra~1" compatibility name "program files". so,

(setq inferior-lisp-program "d:/progra~1/ccl/wx86cl.exe") 

Comments

Popular posts from this blog

c++ - Function signature as a function template parameter -

algorithm - What are some ways to combine a number of (potentially incompatible) sorted sub-sets of a total set into a (partial) ordering of the total set? -

How to call a javascript function after the page loads with a chrome extension? -