diff options
Diffstat (limited to '.emacs.d')
-rw-r--r-- | .emacs.d/init.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 539be13..6ce29bf 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -274,7 +274,8 @@ the only window in the frame." (let ((name command)) (when (not (string= ";" (substring command -1 nil))) (setq name (concat command "&")) - (setq command (concat "which " (car (split-string command)) ">/dev/null&&" command "&"))) + (setq command (concat "which " (car (split-string command)) + ">/dev/null&&(" command "&)"))) (make-process :name name :buffer "*launch-program*" :filter #'launch-program-filter |