Mercurial > emacs
diff lisp/array.el @ 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 | 10ee0084db53 |
| children | 253f761ad37b |
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)
