Mercurial > emacs
changeset 30882:e5b3af28990a
(mh-make-local-vars):
Replace make-variable-buffer-local with make-local-variable.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Wed, 16 Aug 2000 20:38:40 +0000 |
parents | 4758e306c41e |
children | 869204bacd5f |
files | lisp/mail/mh-e.el |
diffstat | 1 files changed, 2 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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)))))