aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2022-10-25 00:14:19 -0300
committerEuAndreh <eu@euandre.org>2022-10-25 00:14:19 -0300
commit26f57c646b600603a376169470f2f12b09f9533f (patch)
tree250cc88a429ce4b5b43aa5b02b3d54be5bab844d /bin
parentbin/cl: Setup Clozure (diff)
downloaddotfiles-26f57c646b600603a376169470f2f12b09f9533f.tar.gz
dotfiles-26f57c646b600603a376169470f2f12b09f9533f.tar.xz
bin/cl: Grow "$@" at the beginning
Diffstat (limited to 'bin')
-rwxr-xr-xbin/cl8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/cl b/bin/cl
index 6ecfbba..ee75b9a 100755
--- a/bin/cl
+++ b/bin/cl
@@ -257,13 +257,13 @@ case "$IMPL" in
clisp)
set -- -ansi -i "$MAIN" "$@"
if [ -n "$IMAGE" ]; then
- set -- "$@" -M "$IMAGE"
+ set -- -M "$IMAGE" "$@"
fi
if [ "$NO_RC" = true ]; then
- set -- "$@" -norc
+ set -- -norc "$@"
fi
if [ "$VERBOSE" = false ]; then
- set -- "$@" -q -q
+ set -- -q -q "$@"
else
set -x
fi
@@ -289,7 +289,7 @@ case "$IMPL" in
set -- --core "$IMAGE" "$@"
fi
if [ "$NO_RC" = true ]; then
- set -- "$@" --no-sysinit --no-userinit
+ set -- --no-sysinit --no-userinit "$@"
fi
if [ "$VERBOSE" = false ]; then
set -- --noinform "$@"