mirror of
https://github.com/roswell/roswell.git
synced 2026-09-10 07:16:17 -04:00
Fix ros emacs for windows
This commit is contained in:
parent
636c375aba
commit
00afa76c4b
|
|
@ -31,6 +31,11 @@ exec ros -m roswell -N roswell -- $0 "$@"
|
|||
(mute-error-if-not-verbose
|
||||
(roswell:exec
|
||||
`("emacs" "-l" ,(namestring path) "--eval"
|
||||
,(format nil "(setq inferior-lisp-program \"ros -Q ~:[~;~:*-L ~A ~]run\")" (roswell:opt "*lisp"))
|
||||
,(format nil
|
||||
#-win32
|
||||
"(setq inferior-lisp-program \"ros -Q ~:[~;~:*-L ~A ~]run\")"
|
||||
#+win32
|
||||
"\"(setq inferior-lisp-program \\\"ros -Q ~:[~;~:*-L ~A ~]run\\\")\""
|
||||
(roswell:opt "*lisp"))
|
||||
,@argv)))))
|
||||
;;; vim: set ft=lisp lisp:
|
||||
|
|
|
|||
|
|
@ -82,7 +82,10 @@
|
|||
(format *error-output* "~{~A~%~}"
|
||||
`(,(format nil "helper.el installed in ~S" (namestring target)) ""
|
||||
"To use, add this to your ~/.emacs:" ""
|
||||
,(format nil " (load (expand-file-name ~S))" enough)))))
|
||||
,(format nil
|
||||
" (load (expand-file-name ~S))"
|
||||
#-win32 enough
|
||||
#+win32 (namestring target))))))
|
||||
|
||||
(defun slime-install (argv)
|
||||
(let ((name (or (getf argv :version) (substitute #\. #\- (ql:dist-version "quicklisp")))))
|
||||
|
|
|
|||
Loading…
Reference in a new issue