bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: RMAIL, summary/message focus switching with `h' button


From: Alexander Pohoyda
Subject: Re: RMAIL, summary/message focus switching with `h' button
Date: Thu, 13 Feb 2003 10:37:48 +0100 (MET)

> |> +  (let ((was-in-summary) (eq major-mode 'rmail-summary-mode))
>                            ^
> This paren is misplaced, see above.

Right. My bad. Thanks. Corrected patch:

--- rmailsum.el.orig    Sun Jan  5 23:01:28 2003
+++ rmailsum.el Sun Jan  5 23:40:13 2003
@@ -66,7 +66,10 @@
 (defun rmail-summary ()
   "Display a summary of all messages, one line per message."
   (interactive)
-  (rmail-new-summary "All" '(rmail-summary) nil))
+  (let ((was-in-summary (eq major-mode 'rmail-summary-mode))
+    (rmail-new-summary "All" '(rmail-summary) nil)
+    ;; Swap the focus.
+    (if was-in-summary (other-window 1))))
 
 ;;;###autoload
 (defun rmail-summary-by-labels (labels)

-- 
Alexander Pohoyda
<alexander.pohoyda@gmx.net>





reply via email to

[Prev in Thread] Current Thread [Next in Thread]