From: Richard M. Stallman Date: Tue, 11 Jan 2000 19:31:26 +0000 (+0000) Subject: (array-mode): Don't use make-variable-buffer-local. X-Git-Tag: emacs-pretest-21.0.90~5385 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7fbc46a0a2d47e66c17967b359fc75921ef2a3e3;p=emacs.git (array-mode): Don't use make-variable-buffer-local. Use make-local-variable for `truncate-lines'. --- diff --git a/lisp/array.el b/lisp/array.el index b1182c7f16e..d6084650a59 100644 --- a/lisp/array.el +++ b/lisp/array.el @@ -903,7 +903,7 @@ Entering array mode calls the function `array-mode-hook'." (setq major-mode 'array-mode) (setq mode-name "Array") (force-mode-line-update) - (make-variable-buffer-local 'truncate-lines) + (make-local-variable 'truncate-lines) (setq truncate-lines t) (setq overwrite-mode 'overwrite-mode-textual) (use-local-map array-mode-map)