Function: ebut:key-of-label-p
ebut:key-of-label-p is a byte-compiled function defined in hbut.el.
Signature
(ebut:key-of-label-p KEY LABEL)
Documentation
Return t iff KEY matches to LABEL in a case insensitive manner.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hbut.el
(defun ebut:key-of-label-p (key label)
"Return t iff KEY matches to LABEL in a case insensitive manner."
(and (stringp key) (stringp label)
(equal key (downcase (ebut:label-to-key label)))))