org.el: Fix warning when updating to the same TODO state

*  (org-todo): Only warn about TODO state change when both new and
old states are not `nil'.
This commit is contained in:
Bastien 2019-12-05 16:57:37 +01:00
parent 0ff2867aa1
commit 7938b6ec30
1 changed files with 1 additions and 1 deletions

View File

@ -10192,7 +10192,7 @@ When called through ELisp, arg is also interpreted in the following way:
(throw 'exit nil)))))
(store-match-data match-data)
(replace-match next t t)
(cond ((equal this org-state)
(cond ((and org-state (equal this org-state))
(message "TODO state was already %s" (org-trim next)))
((not (pos-visible-in-window-p hl-pos))
(message "TODO state changed to %s" (org-trim next))))