Function: widget-choice-inline-bubbles-p

widget-choice-inline-bubbles-p is a byte-compiled function defined in wid-edit.el.gz.

Signature

(widget-choice-inline-bubbles-p WIDGET)

Documentation

Non-nil if the choice WIDGET has at least one choice that is inline.

This is used when matching values, because a choice widget needs to match a value inline rather than just match it if at least one of its choices is inline.

Source Code

;; Defined in /usr/src/emacs/lisp/wid-edit.el.gz
(defun widget-choice-inline-bubbles-p (widget)
  "Non-nil if the choice WIDGET has at least one choice that is inline.
This is used when matching values, because a choice widget needs to
match a value inline rather than just match it if at least one of its choices
is inline."
  (let ((args (widget-get widget :args))
        cur found)
    (while (and args (not found))
      (setq cur (car args)
            args (cdr args)
            found (widget-get cur :inline)))
    found))