Mercurial > emacs
changeset 27286:d3c2ea889aa8
(array-mode): Don't use make-variable-buffer-local.
Use make-local-variable for `truncate-lines'.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 11 Jan 2000 19:31:26 +0000 |
parents | 761090e3e94c |
children | 523c67808ff4 |
files | lisp/array.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/array.el Tue Jan 11 19:31:04 2000 +0000 +++ b/lisp/array.el Tue Jan 11 19:31:26 2000 +0000 @@ -903,7 +903,7 @@ (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)