X-Git-Url: https://git.distorted.org.uk/~mdw/lisp/blobdiff_plain/348c27abfcd71554439ae9a04e31c067d3974a7e..209dc75acf6ca1b236324bbad404070a88f99851:/sys-base.lisp diff --git a/sys-base.lisp b/sys-base.lisp index 60bc8a4..4a90b93 100644 --- a/sys-base.lisp +++ b/sys-base.lisp @@ -1,7 +1,5 @@ ;;; -*-lisp-*- ;;; -;;; $Id$ -;;; ;;; Basic system-specific stuff ;;; ;;; (c) 2005 Mark Wooding @@ -58,7 +56,7 @@ #+sbcl sb-ext:*posix-argv* #+ecl (loop from i below (ext:argc) collect (ext:argv i)) #+clisp (loop with argv = (ext:argv) - for i from 7 below (length argv) + for i from 7 below (length argv) collect (aref argv i)) '("" "--" ""))) (setf *program-name* (pathname-name (car *command-line*))))