mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-02 11:21:42 +00:00
(array-mode): Use kill-all-local-variables and run-mode-hooks.
This commit is contained in:
parent
21a88c56b3
commit
e3e4b1f233
@ -872,6 +872,7 @@ take a numeric prefix argument):
|
|||||||
Entering array mode calls the function `array-mode-hook'."
|
Entering array mode calls the function `array-mode-hook'."
|
||||||
|
|
||||||
(interactive)
|
(interactive)
|
||||||
|
(kill-all-local-variables)
|
||||||
;; Number of rows in the array.
|
;; Number of rows in the array.
|
||||||
(make-local-variable 'array-max-row)
|
(make-local-variable 'array-max-row)
|
||||||
;; Number of columns in the array.
|
;; Number of columns in the array.
|
||||||
@ -907,7 +908,7 @@ Entering array mode calls the function `array-mode-hook'."
|
|||||||
(setq truncate-lines t)
|
(setq truncate-lines t)
|
||||||
(setq overwrite-mode 'overwrite-mode-textual)
|
(setq overwrite-mode 'overwrite-mode-textual)
|
||||||
(use-local-map array-mode-map)
|
(use-local-map array-mode-map)
|
||||||
(run-hooks 'array-mode-hook))
|
(run-mode-hooks 'array-mode-hook))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user