* riece-mini.el (riece-mini-show-backlog): Fix for long messages.
authorbg66 <bg66>
Mon, 13 Sep 2004 11:01:56 +0000 (11:01 +0000)
committerbg66 <bg66>
Mon, 13 Sep 2004 11:01:56 +0000 (11:01 +0000)
lisp/ChangeLog
lisp/riece-mini.el

index 895c170..0fd5e9b 100644 (file)
@@ -1,3 +1,7 @@
+2004-09-13  OHASHI Akira  <bg66@koka-in.org>
+
+       * riece-mini.el (riece-mini-show-backlog): Fix for long messages.
+
 2004-09-12  OHASHI Akira  <bg66@koka-in.org>
 
        * riece-mini.el (riece-mini-show-backlog): Protect 1st arg of
index 256bd51..d540d17 100644 (file)
@@ -117,12 +117,17 @@ If twice (C-u C-u), then ask the channel."
 (defun riece-mini-show-backlog ()
   "Send back logs to minibuffer."
   (interactive)
-  (let ((max-mini-window-height (1+ riece-mini-backlog-size))
-       (resize-mini-windows t))
-    (when riece-mini-backlog-history
-      (setq riece-mini-backlog-shown t)
-      (riece-mini-message-no-log "%s"
-       (mapconcat 'identity riece-mini-backlog-history "\n")))))
+  (when riece-mini-backlog-history
+    (let ((height (1+ riece-mini-backlog-size)))
+      (mapc #'(lambda (string)
+               (setq height (+ height
+                               (/ (length string) (window-width)))))
+           riece-mini-backlog-history)
+      (let ((max-mini-window-height height)
+           (resize-mini-windows t))
+       (setq riece-mini-backlog-shown t)
+       (riece-mini-message-no-log
+        "%s" (mapconcat #'identity riece-mini-backlog-history "\n"))))))
 
 (defun riece-mini-pre-command ()
   (when riece-mini-backlog-shown