summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2000-08-16 20:38:40 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2000-08-16 20:38:40 +0000
commit1e495fc7643d76017c7ae0bd062e623f286ac8df (patch)
treec9ba04a9bf5e2067b9fd016bc759800a1382dd8f /lisp
parent7e86942c8a01172bbe30a401c7a7555753e683c4 (diff)
downloademacs-1e495fc7643d76017c7ae0bd062e623f286ac8df.tar.gz
(mh-make-local-vars):
Replace make-variable-buffer-local with make-local-variable.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/mail/mh-e.el5
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/mail/mh-e.el b/lisp/mail/mh-e.el
index 8c3635c3df1..2a3462d6513 100644
--- a/lisp/mail/mh-e.el
+++ b/lisp/mail/mh-e.el
@@ -60,7 +60,7 @@
;; Modified by James Larus, BBN, July 1984 and UCB, 1984 & 1985.
;; Rewritten for GNU Emacs, James Larus 1985. larus@ginger.berkeley.edu
;; Modified by Stephen Gildea 1988. gildea@lcs.mit.edu
-(defconst mh-e-RCS-id "$Id: mh-e.el,v 1.24 2000/05/22 17:33:32 fx Exp $")
+(defconst mh-e-RCS-id "$Id: mh-e.el,v 1.25 2000/05/23 20:10:46 monnier Exp $")
;;; Code:
@@ -845,8 +845,7 @@ The value of mh-folder-mode-hook is called when a new folder is set up."
;; Take VARIABLE-VALUE pairs and make local variables initialized to the
;; value.
(while pairs
- (make-variable-buffer-local (car pairs))
- (set (car pairs) (car (cdr pairs)))
+ (set (make-local-variable (car pairs)) (car (cdr pairs)))
(setq pairs (cdr (cdr pairs)))))