diff options
| author | Yuuki Harano | 2020-12-21 01:53:07 +0900 |
|---|---|---|
| committer | Yuuki Harano | 2020-12-21 01:53:07 +0900 |
| commit | 565d8f57d349c19d9bbb5d5d5fdacf3c70b85d42 (patch) | |
| tree | 5a25406b9f4ff091cb6856e857d2857bb3e631e4 /lisp/array.el | |
| parent | a44cd7c88121bb0e04bdf13d73e15f085cf3b085 (diff) | |
| parent | 87b82a1969edf80d3bd4781454ec9fc968773a6d (diff) | |
| download | emacs-565d8f57d349c19d9bbb5d5d5fdacf3c70b85d42.tar.gz emacs-565d8f57d349c19d9bbb5d5d5fdacf3c70b85d42.zip | |
Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs into feature/pgtk
Diffstat (limited to 'lisp/array.el')
| -rw-r--r-- | lisp/array.el | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/lisp/array.el b/lisp/array.el index 0ad565b5bc7..de2de3ce6cb 100644 --- a/lisp/array.el +++ b/lisp/array.el | |||
| @@ -817,14 +817,16 @@ The variables are: | |||
| 817 | Variables you assign: | 817 | Variables you assign: |
| 818 | array-max-row: The number of rows in the array. | 818 | array-max-row: The number of rows in the array. |
| 819 | array-max-column: The number of columns in the array. | 819 | array-max-column: The number of columns in the array. |
| 820 | array-columns-per-line: The number of columns in the array per line of buffer. | 820 | array-columns-per-line: The number of columns in the array |
| 821 | per line of buffer. | ||
| 821 | array-field-width: The width of each field, in characters. | 822 | array-field-width: The width of each field, in characters. |
| 822 | array-rows-numbered: A logical variable describing whether to ignore | 823 | array-rows-numbered: A logical variable describing whether to ignore |
| 823 | row numbers in the buffer. | 824 | row numbers in the buffer. |
| 824 | 825 | ||
| 825 | Variables which are calculated: | 826 | Variables which are calculated: |
| 826 | array-line-length: The number of characters in a buffer line. | 827 | array-line-length: The number of characters in a buffer line. |
| 827 | array-lines-per-row: The number of buffer lines used to display each row. | 828 | array-lines-per-row: The number of buffer lines used to |
| 829 | display each row. | ||
| 828 | 830 | ||
| 829 | The following commands are available (an asterisk indicates it may | 831 | The following commands are available (an asterisk indicates it may |
| 830 | take a numeric prefix argument): | 832 | take a numeric prefix argument): |
| @@ -834,17 +836,17 @@ take a numeric prefix argument): | |||
| 834 | * \\[array-next-row] Move down one row. | 836 | * \\[array-next-row] Move down one row. |
| 835 | * \\[array-previous-row] Move up one row. | 837 | * \\[array-previous-row] Move up one row. |
| 836 | 838 | ||
| 837 | * \\[array-copy-forward] Copy the current field into the column to the right. | 839 | * \\[array-copy-forward] Copy current field into the column to the right. |
| 838 | * \\[array-copy-backward] Copy the current field into the column to the left. | 840 | * \\[array-copy-backward] Copy current field into the column to the left. |
| 839 | * \\[array-copy-down] Copy the current field into the row below. | 841 | * \\[array-copy-down] Copy current field into the row below. |
| 840 | * \\[array-copy-up] Copy the current field into the row above. | 842 | * \\[array-copy-up] Copy current field into the row above. |
| 841 | 843 | ||
| 842 | * \\[array-copy-column-forward] Copy the current column into the column to the right. | 844 | * \\[array-copy-column-forward] Copy current column into the column to the right. |
| 843 | * \\[array-copy-column-backward] Copy the current column into the column to the left. | 845 | * \\[array-copy-column-backward] Copy current column into the column to the left. |
| 844 | * \\[array-copy-row-down] Copy the current row into the row below. | 846 | * \\[array-copy-row-down] Copy the current row into the row below. |
| 845 | * \\[array-copy-row-up] Copy the current row into the row above. | 847 | * \\[array-copy-row-up] Copy the current row into the row above. |
| 846 | 848 | ||
| 847 | \\[array-fill-rectangle] Copy the field at mark into every cell with row and column | 849 | \\[array-fill-rectangle] Copy field at mark into every cell with row and column |
| 848 | between that of point and mark. | 850 | between that of point and mark. |
| 849 | 851 | ||
| 850 | \\[array-what-position] Display the current array row and column. | 852 | \\[array-what-position] Display the current array row and column. |
| @@ -855,7 +857,7 @@ take a numeric prefix argument): | |||
| 855 | \\[array-expand-rows] Expand the array (remove row numbers and | 857 | \\[array-expand-rows] Expand the array (remove row numbers and |
| 856 | newlines inside rows) | 858 | newlines inside rows) |
| 857 | 859 | ||
| 858 | \\[array-display-local-variables] Display the current values of local variables. | 860 | \\[array-display-local-variables] Display current values of local variables. |
| 859 | 861 | ||
| 860 | Entering array mode calls the function `array-mode-hook'." | 862 | Entering array mode calls the function `array-mode-hook'." |
| 861 | (make-local-variable 'array-buffer-line) | 863 | (make-local-variable 'array-buffer-line) |