aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2001-07-10 14:22:13 +0000
committerGerd Moellmann2001-07-10 14:22:13 +0000
commit6f19114e19086d84bfce58c1f2929eb42f401470 (patch)
tree6d96f2419c716eebea9577537d8c4a456e630817
parent4e274a106e240cc9bf01a2dfd13fa7df7d426726 (diff)
downloademacs-6f19114e19086d84bfce58c1f2929eb42f401470.tar.gz
emacs-6f19114e19086d84bfce58c1f2929eb42f401470.zip
(rmail-show-message): Show beginning of message in
all windows containing it.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/mail/rmail.el5
2 files changed, 10 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index cbb1714dc77..924c35dae6c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -6,6 +6,11 @@
6 * startup.el (normal-top-level): Don't operate on the initial 6 * startup.el (normal-top-level): Don't operate on the initial
7 frame if we failed to create one. 7 frame if we failed to create one.
8 8
92001-07-10 Markus Rost <rost@math.ohio-state.edu>
10
11 * mail/rmail.el (rmail-show-message): Show beginning of message in
12 all windows containing it.
13
92001-07-10 Eli Zaretskii <eliz@is.elta.co.il> 142001-07-10 Eli Zaretskii <eliz@is.elta.co.il>
10 15
11 * term/tty-colors.el: Fix the header line and copyright years. 16 * term/tty-colors.el: Fix the header line and copyright years.
diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el
index 997568714b6..d55c070b403 100644
--- a/lisp/mail/rmail.el
+++ b/lisp/mail/rmail.el
@@ -2389,6 +2389,11 @@ If summary buffer is currently displayed, update current message there also."
2389 (search-forward "\n*** EOOH ***\n" end t) 2389 (search-forward "\n*** EOOH ***\n" end t)
2390 (narrow-to-region (point) end))) 2390 (narrow-to-region (point) end)))
2391 (goto-char (point-min)) 2391 (goto-char (point-min))
2392 (walk-windows
2393 (function (lambda (window)
2394 (if (eq (window-buffer window) (current-buffer))
2395 (set-window-point window (point)))))
2396 nil t)
2392 (rmail-display-labels) 2397 (rmail-display-labels)
2393 (if (eq rmail-enable-mime t) 2398 (if (eq rmail-enable-mime t)
2394 (funcall rmail-show-mime-function) 2399 (funcall rmail-show-mime-function)