]> git.eshelyaron.com Git - emacs.git/commitdiff
(rmail-summary-disable): New function.
authorKarl Heuer <kwzh@gnu.org>
Thu, 7 Apr 1994 07:09:16 +0000 (07:09 +0000)
committerKarl Heuer <kwzh@gnu.org>
Thu, 7 Apr 1994 07:09:16 +0000 (07:09 +0000)
(rmail-summary-enable): New function.
(rmail-summary-mode): Call rmail-summary-enable.

lisp/mail/rmailsum.el

index a4079f2f5276323ff4180ed5ba8578e61318b6bf..a8428e065b572e04d103b25201a97e7425cffa3d 100644 (file)
@@ -515,7 +515,6 @@ Commands for sorting the summary:
   (kill-all-local-variables)
   (setq major-mode 'rmail-summary-mode)
   (setq mode-name "RMAIL Summary")
-  (use-local-map rmail-summary-mode-map)
   (setq truncate-lines t)
   (setq buffer-read-only t)
   (set-syntax-table text-mode-syntax-table)
@@ -526,11 +525,25 @@ Commands for sorting the summary:
   (make-local-variable 'rmail-summary-redo)
   (setq rmail-summary-redo nil)
   (make-local-variable 'revert-buffer-function)
-  (setq revert-buffer-function 'rmail-update-summary)
   (make-local-variable 'post-command-hook)
-  (add-hook 'post-command-hook 'rmail-summary-rmail-update)
+  (rmail-summary-enable)
   (run-hooks 'rmail-summary-mode-hook))
 
+;; Summary features need to be disabled during edit mode.
+(defun rmail-summary-disable ()
+  (save-excursion
+    (set-buffer rmail-summary-buffer)
+    (use-local-map text-mode-map)
+    (remove-hook 'post-command-hook 'rmail-summary-rmail-update)
+    (setq revert-buffer-function nil)))
+
+(defun rmail-summary-enable ()
+  (save-excursion
+    (set-buffer rmail-summary-buffer)
+    (use-local-map rmail-summary-mode-map)
+    (add-hook 'post-command-hook 'rmail-summary-rmail-update)
+    (setq revert-buffer-function 'rmail-update-summary)))
+
 ;; Show in Rmail the message described by the summary line that point is on,
 ;; but only if the Rmail buffer is already visible.
 ;; This is a post-command-hook in summary buffers.