Function: hsys-org-todo-set-cycle

hsys-org-todo-set-cycle is a byte-compiled function defined in hsys-org.el.

Signature

(hsys-org-todo-set-cycle)

Documentation

Call org-todo to switch to the next set of keywords.

Force it to be set as this-command.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hsys-org.el
(defun hsys-org-todo-set-cycle ()
  "Call `org-todo' to switch to the next set of keywords.
Force it to be set as `this-command'."
  (setq this-command 'org-todo)
  (org-call-with-arg 'org-todo 'nextset))