23 lines
673 B
Common Lisp
Executable file
23 lines
673 B
Common Lisp
Executable file
#!/bin/sh
|
|
#|-*- mode:lisp -*-|#
|
|
#|
|
|
exec ros -Q -- $0 "$@"
|
|
|#
|
|
(progn ;;init forms
|
|
(ros:ensure-asdf)
|
|
(when (member :asdf3 *features*)
|
|
(asdf:initialize-source-registry
|
|
'(:source-registry (:tree :here)
|
|
:inherit-configuration)))
|
|
#-quicklisp (error "Quicklisp must be available to your Roswell install.")
|
|
#+quicklisp (ql:quickload '() :silent t)
|
|
#+quicklisp (ql:quickload '#:editor :silent t))
|
|
|
|
(defpackage :ros.script.run-editor-real.3962771235
|
|
(:use :cl))
|
|
(in-package :ros.script.run-editor-real.3962771235)
|
|
|
|
(defun main (&rest argv)
|
|
(declare (ignorable argv))
|
|
(editor:main (first argv) :refresh-asm-functions-p nil))
|
|
;;; vim: set ft=lisp lisp:
|