(array-mode): Don't use make-variable-buffer-local.

Use make-local-variable for `truncate-lines'.
This commit is contained in:
Richard M. Stallman 2000-01-11 19:31:26 +00:00
parent 782bd3ec53
commit 7fbc46a0a2

View file

@ -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)