Function: kbd-key:binding

kbd-key:binding is a byte-compiled function defined in hib-kbd.el.

Signature

(kbd-key:binding KEY-SERIES)

Documentation

Return key binding for KEY-SERIES if it is a single key sequence or nil.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hib-kbd.el
;;; ************************************************************************
;;; Private functions
;;; ************************************************************************

(defun kbd-key:binding (key-series)
  "Return key binding for KEY-SERIES if it is a single key sequence or nil."
  ;; This custom function is used to prevent the (kbd) call from
  ;; mistakenly removing angle brackets from Hyperbole implicit button
  ;; names, like: <[td]>.
  (key-binding (kbd-key:kbd key-series)))