aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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
;;