diff options
author | EuAndreh <eu@euandre.org> | 2022-10-25 00:18:12 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-10-25 00:18:12 -0300 |
commit | 3f4b1c440db863452ecb3d7b3149fe35e364b5c8 (patch) | |
tree | 1a446abe8c3456ef7369bddddce1f002f92b6b37 | |
parent | Makefile: s/ccl/clozure/ (diff) | |
download | dotfiles-3f4b1c440db863452ecb3d7b3149fe35e364b5c8.tar.gz dotfiles-3f4b1c440db863452ecb3d7b3149fe35e364b5c8.tar.xz |
bin/cl: Alphabetically order Clozure code
-rwxr-xr-x | bin/cl | 32 |
1 files changed, 16 insertions, 16 deletions
@@ -28,9 +28,9 @@ escape_name() { IMPLEMENTATIONS=' abcl allegro -clozure clasp clisp +clozure cmucl ecl jscl @@ -240,21 +240,6 @@ case "$IMPL" in allegro) exit 4 ;; - clozure) - set -- -l "$MAIN" "$@" - if [ -n "$IMAGE" ]; then - set -- -I "$IMAGE" "$@" - fi - if [ "$NO_RC" = true ]; then - set -- -n "$@" - fi - if [ "$VERBOSE" = false ]; then - set -- -Q "$@" - else - set -x - fi - exec ccl "$@" - ;; clasp) exit 4 ;; @@ -273,6 +258,21 @@ case "$IMPL" in fi exec clisp "$@" ;; + clozure) + set -- -l "$MAIN" "$@" + if [ -n "$IMAGE" ]; then + set -- -I "$IMAGE" "$@" + fi + if [ "$NO_RC" = true ]; then + set -- -n "$@" + fi + if [ "$VERBOSE" = false ]; then + set -- -Q "$@" + else + set -x + fi + exec ccl "$@" + ;; cmucl) exit 4 ;; |