From a8e6406d00494a2b254e29d77cbad0c39fcd75bc Mon Sep 17 00:00:00 2001 From: SANO Masatoshi Date: Sun, 3 Sep 2017 16:30:58 +0900 Subject: [PATCH] -L sbcl-bin -> -N roswell --- lisp/build.ros | 2 +- lisp/config.ros | 2 +- lisp/delete.ros | 2 +- lisp/emacs.ros | 2 +- lisp/fmt.ros | 2 +- lisp/git.ros | 2 +- lisp/help.ros | 2 +- lisp/hg.ros | 2 +- lisp/init.ros | 2 +- lisp/list.ros | 2 +- lisp/run.ros | 2 +- lisp/shell.ros | 2 +- lisp/template.ros | 2 +- lisp/update.ros | 2 +- lisp/use.ros | 2 +- lisp/version.ros | 2 +- lisp/which.ros | 2 +- 17 files changed, 17 insertions(+), 17 deletions(-) diff --git a/lisp/build.ros b/lisp/build.ros index 50e917d..d7f71f6 100644 --- a/lisp/build.ros +++ b/lisp/build.ros @@ -1,7 +1,7 @@ #!/bin/sh #|-*- mode:lisp -*-|# #|Make executable from script. -exec ros +Q -m roswell -L sbcl-bin -- $0 "$@" +exec ros +Q -m roswell -N roswell -- $0 "$@" |# (progn diff --git a/lisp/config.ros b/lisp/config.ros index 8587a34..e7d40c2 100644 --- a/lisp/config.ros +++ b/lisp/config.ros @@ -1,7 +1,7 @@ #!/bin/sh #|-*- mode:lisp -*-|# #|Get and set options -exec ros +R +Q -m roswell -L sbcl-bin -- $0 "$@" +exec ros +R +Q -m roswell -N roswell -- $0 "$@" |# (progn diff --git a/lisp/delete.ros b/lisp/delete.ros index 692be2b..862bf30 100644 --- a/lisp/delete.ros +++ b/lisp/delete.ros @@ -1,7 +1,7 @@ #!/bin/sh #|-*- mode:lisp -*-|# #|Delete installed implementations -exec ros -Q -m roswell -L sbcl-bin -- $0 "$@" +exec ros -Q -m roswell -N roswell -- $0 "$@" |# (progn diff --git a/lisp/emacs.ros b/lisp/emacs.ros index e9d91e5..0720b9a 100644 --- a/lisp/emacs.ros +++ b/lisp/emacs.ros @@ -1,7 +1,7 @@ #!/bin/sh #|-*- mode:lisp -*-|# #|Launch emacs -exec ros -L sbcl-bin -m roswell -- $0 "$@" +exec ros -m roswell -N roswell -- $0 "$@" |# (progn diff --git a/lisp/fmt.ros b/lisp/fmt.ros index 63d6d50..7e71efd 100644 --- a/lisp/fmt.ros +++ b/lisp/fmt.ros @@ -1,7 +1,7 @@ #!/bin/sh #|-*- mode:lisp -*-|# #|Indent lisp source. -exec ros -Q -L sbcl-bin -- $0 "$@" +exec ros -Q -N roswell -- $0 "$@" |# (progn ;;init forms (ros:ensure-asdf) diff --git a/lisp/git.ros b/lisp/git.ros index a447d93..0548c68 100644 --- a/lisp/git.ros +++ b/lisp/git.ros @@ -1,7 +1,7 @@ #!/bin/sh #|-*- mode:lisp -*-|# #|git wrapper -exec ros -Q -m roswell -L sbcl-bin -- $0 "$@" +exec ros -Q -m roswell -N roswell -- $0 "$@" |# (progn ;;init forms (ros:ensure-asdf) diff --git a/lisp/help.ros b/lisp/help.ros index 477be39..e15adcf 100644 --- a/lisp/help.ros +++ b/lisp/help.ros @@ -1,7 +1,7 @@ #!/bin/sh #|-*- mode:lisp -*-|# #|Show Command help -exec ros -Q -m roswell -L sbcl-bin -- $0 "$@" +exec ros -Q -m roswell -N roswell -- $0 "$@" |# (progn diff --git a/lisp/hg.ros b/lisp/hg.ros index fca1ecf..55fe915 100644 --- a/lisp/hg.ros +++ b/lisp/hg.ros @@ -1,7 +1,7 @@ #!/bin/sh #|-*- mode:lisp -*-|# #|Mercurial wrapper -exec ros -Q -m roswell -L sbcl-bin -- $0 "$@" +exec ros -Q -m roswell -N roswell -- $0 "$@" |# (progn ;;init forms (ros:ensure-asdf) diff --git a/lisp/init.ros b/lisp/init.ros index 55343c6..fe2f0f6 100644 --- a/lisp/init.ros +++ b/lisp/init.ros @@ -1,7 +1,7 @@ #!/bin/sh #|-*- mode:lisp -*-|# #|Creates a new ros script, optionally based on a template. -exec ros -Q -m roswell -L sbcl-bin -- $0 "$@" +exec ros -Q -m roswell -N roswell -- $0 "$@" |# (progn diff --git a/lisp/list.ros b/lisp/list.ros index e17cd6b..aa37b78 100644 --- a/lisp/list.ros +++ b/lisp/list.ros @@ -1,7 +1,7 @@ #!/bin/sh #|-*- mode:lisp -*-|# #|List Information -exec ros +Q -m roswell -L sbcl-bin -- $0 "$@" +exec ros +Q -m roswell -N roswell -- $0 "$@" |# (progn diff --git a/lisp/run.ros b/lisp/run.ros index 6fd480a..9f1d4db 100644 --- a/lisp/run.ros +++ b/lisp/run.ros @@ -1,7 +1,7 @@ #!/bin/sh #|-*- mode:lisp -*-|# #|Run repl -exec ros -Q -m roswell -L sbcl-bin -- $0 "$@" +exec ros -Q -m roswell -N roswell -- $0 "$@" |# (progn diff --git a/lisp/shell.ros b/lisp/shell.ros index 0237478..9e81ae7 100644 --- a/lisp/shell.ros +++ b/lisp/shell.ros @@ -1,7 +1,7 @@ #!/bin/sh #|-*- mode:lisp -*-|# #| Launch msys2 for windows -exec ros -Q -m roswell -L sbcl-bin -- $0 "$@" +exec ros -Q -m roswell -N roswell -- $0 "$@" |# (progn ;;init forms (roswell:ensure-asdf) diff --git a/lisp/template.ros b/lisp/template.ros index 48f0e91..0abee8f 100644 --- a/lisp/template.ros +++ b/lisp/template.ros @@ -1,7 +1,7 @@ #!/bin/sh #|-*- mode:lisp -*-|# #|[WIP] Manage templates -exec ros -Q -m roswell -L sbcl-bin -- $0 "$@" +exec ros -Q -m roswell -N roswell -- $0 "$@" |# (progn (roswell:include "util-template")) diff --git a/lisp/update.ros b/lisp/update.ros index 1439f25..efc6d5c 100644 --- a/lisp/update.ros +++ b/lisp/update.ros @@ -1,7 +1,7 @@ #!/bin/sh #|-*- mode:lisp -*-|# #|Update installed systems. -exec ros -Q -m roswell -L sbcl-bin -- $0 "$@" +exec ros -Q -m roswell -N roswell -- $0 "$@" |# (progn ;;init forms (roswell:ensure-asdf) diff --git a/lisp/use.ros b/lisp/use.ros index b4cb2d7..53f01c4 100644 --- a/lisp/use.ros +++ b/lisp/use.ros @@ -1,7 +1,7 @@ #!/bin/sh #|-*- mode:lisp -*-|# #|Change default implementation. -exec ros +R -Q -L sbcl-bin -m roswell -- $0 "$@" +exec ros +R -Q -m roswell -N roswell -- $0 "$@" |# (progn diff --git a/lisp/version.ros b/lisp/version.ros index 498059a..141da0f 100644 --- a/lisp/version.ros +++ b/lisp/version.ros @@ -1,7 +1,7 @@ #!/bin/sh #|-*- mode:lisp -*-|# #|Show the roswell version information -exec ros -Q -m roswell -L sbcl-bin -- $0 "$@" +exec ros -Q -m roswell -N roswell -- $0 "$@" |# (progn diff --git a/lisp/which.ros b/lisp/which.ros index 731f056..aa59225 100644 --- a/lisp/which.ros +++ b/lisp/which.ros @@ -1,7 +1,7 @@ #!/bin/sh #|-*- mode:lisp -*-|# #| show system's PATH -exec ros -Q -m roswell -L sbcl-bin -- $0 "$@" +exec ros -Q -m roswell -N roswell -- $0 "$@" |# (progn ;;init forms (ros:ensure-asdf))