* lisp/org.el (org-log-beginning): Fix parens

This commit is contained in:
Ihor Radchenko 2022-09-15 19:23:52 +08:00
parent 1a5e3f931c
commit 17b51973bd
No known key found for this signature in database
GPG Key ID: 6470762A7DA11D8B
1 changed files with 1 additions and 2 deletions

View File

@ -10325,8 +10325,7 @@ narrowing."
;; When current headline is at the end of buffer and does not
;; end with trailing newline the above can move to the
;; beginning of the headline.
(when (< (point) endpos)) ;; FIXME: Spurious extra paren?
(goto-char endpos)))))
(when (< (point) endpos) (goto-char endpos))))))
(if (bolp) (point) (line-beginning-position 2))))
(defun org-add-log-setup (&optional purpose state prev-state how extra)