[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Warning when using LAMBDA-LIST-KEYWORDS in compiled function.



Is this the correct address for reporting bugs?  My apologies to all and
sundry if not?

Why do I get the following warning?  The compiled code appears to run
OK.  This is in Sun Common Lisp, Development Environment 2.1.1, 9-Dec-87

    > (defun foo () lambda-list-keywords)
    FOO
    > (foo)
    (&OPTIONAL &REST &KEY &AUX &ALLOW-OTHER-KEYS &BODY &WHOLE &ENVIRONMENT)
    > (compile 'foo)
    ;;; Compiling function FOO...
->  ;;; Warning: Assuming LAMBDA-LIST-KEYWORDS is special
    ;;;    assembling...sharing code...emitting...done.
    FOO
    > (foo)
    (&OPTIONAL &REST &KEY &AUX &ALLOW-OTHER-KEYS &BODY &WHOLE &ENVIRONMENT)