diff options
| author | Miles Bader | 2005-06-06 02:39:45 +0000 |
|---|---|---|
| committer | Miles Bader | 2005-06-06 02:39:45 +0000 |
| commit | fdffd346262841cb194225ea0acd8059c57ec2d4 (patch) | |
| tree | d8b3699131f7d1b94bc46c7d8be62af6b8b5ebfe /lisp/array.el | |
| parent | a5c508fe3a3f456c987283156315d0384d38fe9e (diff) | |
| parent | a9b4333620eb259e974445066a8e64cee0c21d69 (diff) | |
| download | emacs-fdffd346262841cb194225ea0acd8059c57ec2d4.tar.gz emacs-fdffd346262841cb194225ea0acd8059c57ec2d4.zip | |
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-57
Merge from emacs--cvs-trunk--0
Patches applied:
* emacs--cvs-trunk--0 (patch 324-352)
- Merge from gnus--rel--5.10
- Update from CVS
- etc/emacs-buffer.gdb: Remove RCS keywords
* gnus--rel--5.10 (patch 70-79)
- Update from CVS
- Merge from emacs--cvs-trunk--0
Diffstat (limited to 'lisp/array.el')
| -rw-r--r-- | lisp/array.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/array.el b/lisp/array.el index f65f14ac550..2f270d0f086 100644 --- a/lisp/array.el +++ b/lisp/array.el | |||
| @@ -872,6 +872,7 @@ take a numeric prefix argument): | |||
| 872 | Entering array mode calls the function `array-mode-hook'." | 872 | Entering array mode calls the function `array-mode-hook'." |
| 873 | 873 | ||
| 874 | (interactive) | 874 | (interactive) |
| 875 | (kill-all-local-variables) | ||
| 875 | ;; Number of rows in the array. | 876 | ;; Number of rows in the array. |
| 876 | (make-local-variable 'array-max-row) | 877 | (make-local-variable 'array-max-row) |
| 877 | ;; Number of columns in the array. | 878 | ;; Number of columns in the array. |
| @@ -907,7 +908,7 @@ Entering array mode calls the function `array-mode-hook'." | |||
| 907 | (setq truncate-lines t) | 908 | (setq truncate-lines t) |
| 908 | (setq overwrite-mode 'overwrite-mode-textual) | 909 | (setq overwrite-mode 'overwrite-mode-textual) |
| 909 | (use-local-map array-mode-map) | 910 | (use-local-map array-mode-map) |
| 910 | (run-hooks 'array-mode-hook)) | 911 | (run-mode-hooks 'array-mode-hook)) |
| 911 | 912 | ||
| 912 | 913 | ||
| 913 | 914 | ||