Kyle Meyer <[email protected]> writes: > That change seems to have unintentionally reversed the visibility check, > which should be > > -- >8 -- > diff --git a/lisp/org.el b/lisp/org.el > index 1e6d00973..d9b6489ff 100644 > --- a/lisp/org.el > +++ b/lisp/org.el > @@ -12681,7 +12681,7 @@ (defun org-todo (&optional arg) > (replace-match next t t) > (cond ((equal this org-state) > (message "TODO state was already %s" (org-trim next))) > - ((pos-visible-in-window-p hl-pos) > + ((not (pos-visible-in-window-p hl-pos)) > (message "TODO state changed to %s" (org-trim next)))) > (unless head > (setq head (org-get-todo-sequence-head org-state)
Pushed (1930a8f05ac3c09b6366491c076a3efde2f2205d). -- Kyle
