[slime-cvs] CVS slime

heller heller at common-lisp.net
Thu Sep 18 15:23:31 UTC 2008


Update of /project/slime/cvsroot/slime
In directory clnet:/tmp/cvs-serv26888

Modified Files:
	ChangeLog slime.el 
Log Message:
* slime.el (slime-show-last-output)
(slime-show-last-output-function)
(slime-show-last-output-region)
(slime-maybe-display-output-buffer): Delete unused code.

--- /project/slime/cvsroot/slime/ChangeLog	2008/09/18 10:08:37	1.1518
+++ /project/slime/cvsroot/slime/ChangeLog	2008/09/18 15:23:25	1.1519
@@ -5,6 +5,13 @@
 
 2008-09-18  Helmut Eller  <heller at common-lisp.net>
 
+	* slime.el (slime-show-last-output)
+	(slime-show-last-output-function)
+	(slime-show-last-output-region)
+	(slime-maybe-display-output-buffer): Delete unused code.
+
+2008-09-18  Helmut Eller  <heller at common-lisp.net>
+
 	* slime.el (slime-eval-with-transcript): Accept some more arguments
 	so that we can also use it for compile-file.
 	(slime-eval-with-transcript-cont): New. Insert prompt.
--- /project/slime/cvsroot/slime/slime.el	2008/09/17 23:14:45	1.1024
+++ /project/slime/cvsroot/slime/slime.el	2008/09/18 15:23:30	1.1025
@@ -2544,31 +2544,6 @@
           slime-repl-package-stack '())
     (slime-repl-update-banner)))
 
-(defvar slime-show-last-output-function 
-  'slime-maybe-display-output-buffer
-  "*This function is called when a evaluation request is finished.
-It is called in the slime-output buffer and receives the region of the
-output as arguments.")
-
-(defun slime-show-last-output-region (start end)
-  (when (< start end)
-    (slime-display-buffer-region (current-buffer) (1- start)
-                                 slime-repl-input-start-mark)))
-
-(defun slime-maybe-display-output-buffer (start end)
-  (when (and (< start end)
-             (not (get-buffer-window (current-buffer) t)))
-    (display-buffer (current-buffer)))
-  (when (eobp)
-    (slime-repl-show-maximum-output t)))
-
-(defun slime-show-last-output ()
-  "Show the output from the last Lisp evaluation."
-  (with-current-buffer (slime-output-buffer)
-    (let ((start slime-output-start)
-          (end slime-output-end))
-      (funcall slime-show-last-output-function start end))))
-
 (defun slime-display-output-buffer ()
   "Display the output buffer and scroll to bottom."
   (with-current-buffer (slime-output-buffer)
@@ -2985,7 +2960,7 @@
     (goto-char (point-max)))
   (slime-repl-show-maximum-output))
 
-(defun slime-repl-show-maximum-output (&optional force)
+(defun slime-repl-show-maximum-output ()
   "Put the end of the buffer at the bottom of the window."
   (assert (eobp))
   (let ((win (get-buffer-window (current-buffer))))




More information about the slime-cvs mailing list