Function: hmouse-check-action-key

hmouse-check-action-key is a byte-compiled function defined in hmouse-key.el.

Signature

(hmouse-check-action-key)

Documentation

After Action Mouse Key use, ensure both depress and release events are bound.

Return t iff the key is properly bound, else nil.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hmouse-key.el
;;; ************************************************************************
;;; Public functions
;;; ************************************************************************

(defun hmouse-check-action-key ()
  "After Action Mouse Key use, ensure both depress and release events are bound.
Return t iff the key is properly bound, else nil."
  (and (or (and (eventp action-key-depress-args) (eventp action-key-release-args))
	   (not (or action-key-depress-args action-key-release-args)))
       (where-is-internal 'action-key-depress-emacs hyperbole-mode-map t)
       (where-is-internal 'action-mouse-key-emacs hyperbole-mode-map t)))