diff options
author | Kyle Meyer <kyle@kyleam.com> | 2024-02-17 10:17:41 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2024-02-17 10:17:41 -0500 |
commit | 07a392f445eb21c5e4681027eee9d981300a4309 (patch) | |
tree | 25a3269ab8478717d79b36d16d5b80d4a4739e87 /lisp/org/org-table.el | |
parent | 45f9af61b8ecbe500de915f63de53e9c598184b9 (diff) | |
download | emacs-07a392f445eb21c5e4681027eee9d981300a4309.tar.gz emacs-07a392f445eb21c5e4681027eee9d981300a4309.tar.bz2 emacs-07a392f445eb21c5e4681027eee9d981300a4309.zip |
Update to Org 9.6.19
Diffstat (limited to 'lisp/org/org-table.el')
-rw-r--r-- | lisp/org/org-table.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/org/org-table.el b/lisp/org/org-table.el index 6408f48ccbd..92490f9f6bf 100644 --- a/lisp/org/org-table.el +++ b/lisp/org/org-table.el @@ -1922,8 +1922,8 @@ However, when N is 0, do not increment the field at all." (let ((org-table-may-need-update nil)) (org-table-next-row)) (org-table-blank-field)) ;; Insert the new field. NEW-FIELD may be nil if - ;; `org-table-increment' is nil, or N = 0. In that case, copy - ;; FIELD. + ;; `org-table-copy-increment' is nil, or N = 0. In that case, + ;; copy FIELD. (insert (or next-field field)) (org-table-maybe-recalculate-line) (org-table-align))) @@ -4084,8 +4084,8 @@ already hidden." "Read column selection select as a list of numbers. SELECT is a string containing column ranges, separated by white -space characters, see `org-table-hide-column' for details. MAX -is the maximum column number. +space characters, see `org-table-toggle-column-width' for details. +MAX is the maximum column number. Return value is a sorted list of numbers. Ignore any number outside of the [1;MAX] range." |