diff options
| author | Juanma Barranquero | 2005-07-18 09:35:43 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2005-07-18 09:35:43 +0000 |
| commit | 26cf3f33ecab13d7f870bc7a63444a43444eb3be (patch) | |
| tree | dd954310e261adebd1ecb07d572f1a2b70e012f1 /lisp/array.el | |
| parent | 635ca796013e17912babc5d74257aaee7d335c1a (diff) | |
| download | emacs-26cf3f33ecab13d7f870bc7a63444a43444eb3be.tar.gz emacs-26cf3f33ecab13d7f870bc7a63444a43444eb3be.zip | |
(array-mode, array-reconfigure-rows, untabify-backward): Fix typos in
docstrings.
(array-reconfigure-rows): Use `insert-buffer-substring', not `insert-buffer'.
Diffstat (limited to 'lisp/array.el')
| -rw-r--r-- | lisp/array.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/array.el b/lisp/array.el index 836ba99ff6d..819840c8a1a 100644 --- a/lisp/array.el +++ b/lisp/array.el | |||
| @@ -638,7 +638,7 @@ If optional ARG is given, copy through ARG rows up." | |||
| 638 | "Reconfigure the state of `array-rows-numbered' and `array-columns-per-line'. | 638 | "Reconfigure the state of `array-rows-numbered' and `array-columns-per-line'. |
| 639 | NEW-COLUMNS-PER-LINE is the desired value of `array-columns-per-line' and | 639 | NEW-COLUMNS-PER-LINE is the desired value of `array-columns-per-line' and |
| 640 | NEW-ROWS-NUMBERED (a character, either ?y or ?n) is the desired value | 640 | NEW-ROWS-NUMBERED (a character, either ?y or ?n) is the desired value |
| 641 | of array-rows-numbered." | 641 | of `array-rows-numbered'." |
| 642 | (interactive "nColumns per line: \ncRows numbered? (y or n) ") | 642 | (interactive "nColumns per line: \ncRows numbered? (y or n) ") |
| 643 | ;; Check on new-columns-per-line | 643 | ;; Check on new-columns-per-line |
| 644 | (let ((check t)) | 644 | (let ((check t)) |
| @@ -717,7 +717,7 @@ of array-rows-numbered." | |||
| 717 | (let ((inhibit-quit t)) | 717 | (let ((inhibit-quit t)) |
| 718 | (set-buffer main-buffer) | 718 | (set-buffer main-buffer) |
| 719 | (erase-buffer) | 719 | (erase-buffer) |
| 720 | (insert-buffer temp-buffer) | 720 | (insert-buffer-substring temp-buffer) |
| 721 | ;; Update local variables. | 721 | ;; Update local variables. |
| 722 | (setq array-columns-per-line new-columns-per-line) | 722 | (setq array-columns-per-line new-columns-per-line) |
| 723 | (setq array-rows-numbered new-rows-numbered) | 723 | (setq array-rows-numbered new-rows-numbered) |
| @@ -767,7 +767,7 @@ Return COLUMN." | |||
| 767 | (move-to-column column))))) | 767 | (move-to-column column))))) |
| 768 | 768 | ||
| 769 | (defun untabify-backward () | 769 | (defun untabify-backward () |
| 770 | "Untabify the preceding tab." | 770 | "Untabify the preceding TAB." |
| 771 | (save-excursion | 771 | (save-excursion |
| 772 | (let ((start (point))) | 772 | (let ((start (point))) |
| 773 | (backward-char 1) | 773 | (backward-char 1) |
| @@ -817,7 +817,7 @@ NOT recognized as integers or real numbers. | |||
| 817 | The array MUST reside at the top of the buffer. | 817 | The array MUST reside at the top of the buffer. |
| 818 | 818 | ||
| 819 | TABs are not respected, and may be converted into spaces at any time. | 819 | TABs are not respected, and may be converted into spaces at any time. |
| 820 | Setting the variable 'array-respect-tabs to non-nil will prevent TAB conversion, | 820 | Setting the variable `array-respect-tabs' to non-nil will prevent TAB conversion, |
| 821 | but will cause many functions to give errors if they encounter one. | 821 | but will cause many functions to give errors if they encounter one. |
| 822 | 822 | ||
| 823 | Upon entering array mode, you will be prompted for the values of | 823 | Upon entering array mode, you will be prompted for the values of |