That worked wonderfully.
Would it make sense to include this somehow in my .emacs.d directory for the purposes of tidiness?
Would there be good reason for that not to be the default value?
Search found 2 matches
- Tue Mar 23, 2010 1:02 pm
- Forum: Common Lisp
- Topic: slime repl problem
- Replies: 5
- Views: 10960
- Tue Mar 23, 2010 11:59 am
- Forum: Common Lisp
- Topic: slime repl problem
- Replies: 5
- Views: 10960
slime repl problem
Forgive my ignorance. I am using slime along with clisp. When I try out the following loop, I get NIL results in the *slime-repl clisp* buffer: CL-USER> (loop for i in '(1 2 3) do (print i)) NIL However, if I look over at the *inferior lisp* events buffer I see the expected: 1 2 3 Is this normal? If...