0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-07-16 15:46:27 +00:00

lisp/org-table.el (org-table-copy-down): Fix typo

This commit is contained in:
Ihor Radchenko 2024-01-26 15:04:19 +01:00
parent a5e84c2fb8
commit 75b6f2712a
No known key found for this signature in database
GPG key ID: 6470762A7DA11D8B

View file

@ -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)))