Function: hmouse-check-assist-key
hmouse-check-assist-key is a byte-compiled function defined in
hmouse-key.el.
Signature
(hmouse-check-assist-key)
Documentation
After Assist 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
(defun hmouse-check-assist-key ()
"After Assist 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 assist-key-depress-args) (eventp assist-key-release-args))
(not (or assist-key-depress-args assist-key-release-args)))
(where-is-internal 'assist-key-depress-emacs hyperbole-mode-map t)
(where-is-internal 'assist-mouse-key-emacs hyperbole-mode-map t)))