From 7fbc46a0a2d47e66c17967b359fc75921ef2a3e3 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 11 Jan 2000 19:31:26 +0000 Subject: [PATCH] (array-mode): Don't use make-variable-buffer-local. Use make-local-variable for `truncate-lines'. --- lisp/array.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.5