X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fparse-lambda-list.lisp;h=85325e32ef4782c6cf0c77073ae0abbc3aac112f;hb=41ed816c7915806abca6b09ecd2136458f27adcc;hp=2c30e85a9659c650b5b8b4dc17d85391656a170b;hpb=19b57ee6640261133a179417c814ca38039e1ab1;p=sbcl.git diff --git a/src/compiler/parse-lambda-list.lisp b/src/compiler/parse-lambda-list.lisp index 2c30e85..85325e3 100644 --- a/src/compiler/parse-lambda-list.lisp +++ b/src/compiler/parse-lambda-list.lisp @@ -14,9 +14,9 @@ ;;; Break a lambda list into its component parts. We return eleven ;;; values: ;;; 1. a list of the required args; -;;; 2. a list of the optional arg specs; -;;; 3. true if a rest arg was specified; -;;; 4. the &rest arg; +;;; 2. a list of the &OPTIONAL arg specs; +;;; 3. true if a &REST arg was specified; +;;; 4. the &REST arg; ;;; 5. true if &KEY args are present; ;;; 6. a list of the &KEY arg specs; ;;; 7. true if &ALLOW-OTHER-KEYS was specified.;