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 44385f5bc4
commit 13bbe6743d
No known key found for this signature in database
GPG Key ID: 6470762A7DA11D8B
1 changed files with 2 additions and 2 deletions

View File

@ -1924,8 +1924,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)))