default-directory に値を設定してからstart-processを呼び出す。
(defun run-dir ()
(interactive)
(let ((default-directory "c:/home/"))
(start-process "dir" "*dir*" "dir")))
(run-dir)
default-directory に値を設定してからstart-processを呼び出す。
(defun run-dir ()
(interactive)
(let ((default-directory "c:/home/"))
(start-process "dir" "*dir*" "dir")))
(run-dir)