1
vote
How do you type lisp efficiently, with so many parentheses?
Mostly, I just type them, but occasionally, I use M-( and M-) (especially when I am adding a LET binding "late in the stage"), to enclose the relevant nnumber of expressions.
…
2
votes
Getting started with SLIME and SWANK: Lisp connection closed unexpectedly: connection broken by remote peer
Have you checked that the version of SLIME and SWANK you use are the same? I've had odd things happening when I've used mismatched versions of those two halves of a SLIME session.
…
0
votes
What’s in your .emacs?
One line to amend the load path
One line to load my init library
One line to load my emacs init files
Of course, the "emacs init files" are quite numerous, one per specific thing, loaded in …
0
votes
How do I get a list of Emacs lisp non-interactive functions?
You could check the contents of obarray, though that contains all symbols, rather than "all functions".
Alternatively, the following may do the trick (will pull in parts of the CL compatabi …
0
votes
something wrong with emacs shell
The problem is that "l" is trying to colorise the output and emacs isn't having any of it. Try the following:
$ unalias l
$ alias l ls --color=never
…
3
votes
Name of this function in built-in Emacs Lisp library?
You're either looking for append:
(defun flatten (list-of-lists)
(apply #'append list-of-lists))
If (and only if) you know that you'll always have a list of lists.
O …
0
votes
eval during emacs lisp macro expansion
The "right" fix is to not require evaluation of user-supplied parameters within the macro expansion function.
(defmacro foo4 (a)
`(setq ,a t))
Though this does NOT do the same thi …
