Search found 2 matches

by akoumjian
Tue Mar 23, 2010 1:02 pm
Forum: Common Lisp
Topic: slime repl problem
Replies: 5
Views: 8264

Re: slime repl problem

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?
by akoumjian
Tue Mar 23, 2010 11:59 am
Forum: Common Lisp
Topic: slime repl problem
Replies: 5
Views: 8264

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...