# HG changeset patch # User Stefan Monnier # Date 966458320 0 # Node ID e5b3af28990aae58694555f72238d88cb9a42006 # Parent 4758e306c41e7dd4c6b69384989bdccb329fbfeb (mh-make-local-vars): Replace make-variable-buffer-local with make-local-variable. diff -r 4758e306c41e -r e5b3af28990a lisp/mail/mh-e.el --- a/lisp/mail/mh-e.el Wed Aug 16 20:34:25 2000 +0000 +++ b/lisp/mail/mh-e.el Wed Aug 16 20:38:40 2000 +0000 @@ -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 @@ ;; 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)))))