From 0732dfa5c1070905571405c03d7b613b0da5fa56 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Thu, 7 Apr 1994 07:09:16 +0000 Subject: [PATCH] (rmail-summary-disable): New function. (rmail-summary-enable): New function. (rmail-summary-mode): Call rmail-summary-enable. --- lisp/mail/rmailsum.el | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/lisp/mail/rmailsum.el b/lisp/mail/rmailsum.el index a4079f2f527..a8428e065b5 100644 --- a/lisp/mail/rmailsum.el +++ b/lisp/mail/rmailsum.el @@ -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. -- 2.11.4.GIT