Function: transient-default-value

transient-default-value is a byte-compiled function defined in transient.el.

Signature

(transient-default-value OBJ)

Documentation

Return the default value.

Implementations

((_ transient-suffix)) in `transient.el'.

Return `eieio--unbound' to indicate that there is no default value. Doing so causes `transient-init-value' to skip setting the `value' slot.

((obj transient-prefix)) in `transient.el'.

Return the default value as specified by the `default-value' slot. If the value of the `default-value' slot is a function, call it to determine the value. If the slot's value isn't a function, return that. If the slot is unbound, return nil.

Source Code

;; Defined in ~/.emacs.d/elpa/transient-20260414.1009/transient.el
;;;; Default

(cl-defgeneric transient-default-value (obj)
  "Return the default value.")