Function: ibut:map

ibut:map is a byte-compiled function defined in hbut.el.

Signature

(ibut:map BUT-FUNC &optional REGEXP-MATCH INCLUDE-DELIMS)

Documentation

Apply BUT-FUNC to the visible, named implicit buttons.

If REGEXP-MATCH is non-nil, only buttons which match this argument are considered.

BUT-FUNC must take precisely three arguments: the button name, the start position of the delimited button name and its end position (positions include delimiters when INCLUDE-DELIMS is non-nil).

Aliases

map-ibut

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hbut.el
(defun    ibut:map (but-func &optional regexp-match include-delims)
  "Apply BUT-FUNC to the visible, named implicit buttons.

If REGEXP-MATCH is non-nil, only buttons which match this argument
are considered.

BUT-FUNC must take precisely three arguments: the button name,
the start position of the delimited button name and its end
position (positions include delimiters when INCLUDE-DELIMS is
non-nil)."
  (hbut:map-type but-func ibut:label-start ibut:label-end regexp-match include-delims))