diff options
-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 ;; |