Function: ebut:map

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

Signature

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

Documentation

Apply BUT-FUNC to the explicit buttons in the visible part of current buffer.

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

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

Aliases

map-ebut

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hbut.el
(defun    ebut:map (but-func &optional regexp-match include-delims)
  "Apply BUT-FUNC to the explicit buttons in the visible part of current buffer.
If REGEXP-MATCH is non-nil, only buttons which match this argument are
considered.

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