diff options
| author | EuAndreh <eu@euandre.org> | 2022-10-25 00:14:19 -0300 |
|---|---|---|
| committer | EuAndreh <eu@euandre.org> | 2022-10-25 00:14:19 -0300 |
| commit | 26f57c646b600603a376169470f2f12b09f9533f (patch) | |
| tree | 250cc88a429ce4b5b43aa5b02b3d54be5bab844d /bin | |
| parent | bin/cl: Setup Clozure (diff) | |
| download | dotfiles-26f57c646b600603a376169470f2f12b09f9533f.tar.gz dotfiles-26f57c646b600603a376169470f2f12b09f9533f.tar.xz | |
bin/cl: Grow "$@" at the beginning
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/cl | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 "$@" |
