Function: transient--do-quit-one

transient--do-quit-one is a byte-compiled function defined in transient.el.

Signature

(transient--do-quit-one)

Documentation

If active, quit help or edit mode, else exit the active transient.

Source Code

;; Defined in ~/.emacs.d/elpa/transient-20260414.1009/transient.el
(defun transient--do-quit-one ()
  "If active, quit help or edit mode, else exit the active transient."
  (cond (transient--helpp
         (setq transient--helpp nil)
         transient--stay)
        (transient--editp
         (setq transient--editp nil)
         (transient-setup)
         transient--stay)
        (prefix-arg
         transient--stay)
        (transient--exit)))