aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/mail/mh-e.el
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1994-07-18 18:04:45 +0000
committerRichard M. Stallman <[email protected]>1994-07-18 18:04:45 +0000
commit11079525c071f9a6f5f3b24e3f3119205c249d51 (patch)
treea3ee95847c45ea67c0128414f809d42615cd264e /lisp/mail/mh-e.el
parent9081378e9f791bed3f4f498e26b28b3e5839c4bb (diff)
(mh-folder-mode): Use local-write-file-hooks.
Diffstat (limited to 'lisp/mail/mh-e.el')
-rw-r--r--lisp/mail/mh-e.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/mail/mh-e.el b/lisp/mail/mh-e.el
index 14e5c9a7bf..67cb9a1a96 100644
--- a/lisp/mail/mh-e.el
+++ b/lisp/mail/mh-e.el
@@ -52,7 +52,7 @@
;;; Modified by James Larus, BBN, July 1984 and UCB, 1984 & 1985.
;;; Rewritten for GNU Emacs, James Larus 1985. [email protected]
;;; Modified by Stephen Gildea 1988. [email protected]
-(defconst mh-e-RCS-id "$Header: mh-e.el,v 3.15 94/04/13 11:36:48 gildea Exp $")
+(defconst mh-e-RCS-id "$Header: /home/fsf/rms/e19/lisp/RCS/mh-e.el,v 1.2 1994/04/13 20:42:10 rms Exp rms $")
;;; Code:
@@ -280,7 +280,7 @@ provided, then prompt for the message sequence."
(mh-set-scan-mode)
(mh-goto-cur-msg) ; after mh-set-scan-mode for efficiency
(mh-make-folder-mode-line)
- t) ; return t for write-file-hooks
+ t) ; return t for local-write-file-hooks
(defun mh-first-msg ()
@@ -772,8 +772,8 @@ The value of mh-folder-mode-hook is called when a new folder is set up."
(setq truncate-lines t)
(auto-save-mode -1)
(setq buffer-offer-save t)
- (make-local-variable 'write-file-hooks)
- (setq write-file-hooks '(mh-execute-commands))
+ (make-local-variable 'local-write-file-hooks)
+ (setq local-write-file-hooks '(mh-execute-commands))
(make-local-variable 'revert-buffer-function)
(setq revert-buffer-function 'mh-undo-folder)
(or (assq 'mh-showing minor-mode-alist)