Search found 3 matches

by learningcommonlisp
Sat Jul 14, 2012 8:50 am
Forum: Common Lisp
Topic: Identical Keyword Parameter
Replies: 1
Views: 4188

Identical Keyword Parameter

Hello,

I have a quick question.

Consider this:
((lambda (&key k) k) :k 1 :k 2)
=> 1 ; on my system

Is the outcome of this form well defined by the standard?

Thanks,
Frank
by learningcommonlisp
Wed Jul 04, 2012 6:17 pm
Forum: Common Lisp
Topic: trivial-features
Replies: 1
Views: 3548

trivial-features

hello,

what feature keywords does trivial-features support?

thanks,
frank
by learningcommonlisp
Thu Jun 21, 2012 4:15 pm
Forum: Common Lisp
Topic: Passing values by reference
Replies: 12
Views: 29865

Re: Passing values by reference

Code: Select all

(setf foo '(a b c))
(setf bar '(d e f))
(setf foo (nconc foo bar))  ; <= correct
Well I think this is wrong nevertheless as a literal list is modified here...