Search found 2 matches

by bass-machine
Wed Dec 12, 2018 2:08 pm
Forum: Emacs Lisp
Topic: Emacs Lisp Library Reference
Replies: 2
Views: 23177

Re: Emacs Lisp Library Reference

The Emacs Lisp Reference is already included in your Emacs, simply type C-h i and go to ELISP.
by bass-machine
Thu Nov 03, 2011 2:55 am
Forum: Common Lisp
Topic: List building
Replies: 5
Views: 7629

Re: List building

I see that this is pretty old, but it needs saying. Be wary of using quasiquotes for building lists as they basically assume that any code that touches those lists isn't going to mutate them. In general, you cannot assume that everybody that uses your library is going know not to do that. Take for ...