[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Warning when using LAMBDA-LIST-KEYWORDS in compiled function.
- To: lucites@Think.COM
- Subject: Warning when using LAMBDA-LIST-KEYWORDS in compiled function.
- From: David Vinayak Wallace <Gumby@mcc.com>
- Date: Thu, 15 Sep 88 17:53 CDT
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)