]> git.jsancho.org Git - gacela.git/commitdiff
(no commit message)
authorjsancho <devnull@localhost>
Sun, 8 Nov 2009 06:58:20 +0000 (06:58 +0000)
committerjsancho <devnull@localhost>
Sun, 8 Nov 2009 06:58:20 +0000 (06:58 +0000)
gacela.lisp

index a98446b823a7114b705053b0f8433e45dfa4426b..6a93356b0da12ecd5c331a0eb4267b9e126ba39e 100644 (file)
     (when (and socket (si::listen socket)) (push (si:accept socket) clients)))
 
   (defun eval-from-clients ()
-    (dolist (cli clients) (when (si::listen cli) (eval (read cli)))))
+    (dolist (cli clients)
+      (when (si::listen cli)
+       (let ((sto *standard-output*))
+         (setq *standard-output* cli)
+         (setq *break-enable* nil)
+         (eval (read cli))
+         (setq *break-enable* t)
+         (setq *standard-output* sto)))))
 
   (defun stop-server ()
     (when socket