aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2022-10-25 00:18:12 -0300
committerEuAndreh <eu@euandre.org>2022-10-25 00:18:12 -0300
commit3f4b1c440db863452ecb3d7b3149fe35e364b5c8 (patch)
tree1a446abe8c3456ef7369bddddce1f002f92b6b37
parentMakefile: s/ccl/clozure/ (diff)
downloaddotfiles-3f4b1c440db863452ecb3d7b3149fe35e364b5c8.tar.gz
dotfiles-3f4b1c440db863452ecb3d7b3149fe35e364b5c8.tar.xz
bin/cl: Alphabetically order Clozure code
-rwxr-xr-xbin/cl32
1 files changed, 16 insertions, 16 deletions
diff --git a/bin/cl b/bin/cl
index 12de987..73dbb7a 100755
--- a/bin/cl
+++ b/bin/cl
@@ -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
;;