
4 Dec
2007
4 Dec
'07
12:38 a.m.
I'm wondering if there is some way to tell SLIME to not try to report all output from the inferior lisp? My emacs buffer-menu shows the slime-repl as huge and ever-growing: * *slime-repl sbc: 123816001 REPL I'm building a huge data structure and need some way of SLIME sending the command but turning off output from SBCL. Here is the code that is taking a long time to run: (defvar *datasize* 100000 "size of dataset") (defun gendata () (dotimes (i *datasize*) (let* ( (m (random (1+ i))) (n (random (1+ m))) (text (write (generate 'sentence))) ) (list :text text :m m :n n))) ) (setf *d* (gendata)) -- http://www.aliveandwell.org/ | http://www.SlowChess.com | http://mostholy.wholefoodfarmacy.com