Function: hycontrol-virtual-numeric-keypad
hycontrol-virtual-numeric-keypad is a byte-compiled function defined
in hycontrol.el.
Signature
(hycontrol-virtual-numeric-keypad ARG)
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hycontrol.el
(defun hycontrol-virtual-numeric-keypad (arg)
(catch 'quit
(let (e)
(while (and (setq e (read-char hycontrol--vnk-string))
(not (when (memq e '(?q ?\C-g)) (throw 'quit nil)))
(or (not (numberp e)) (< e ?0) (> e ?9)))
(beep))
(hycontrol-numeric-keypad (- e ?0) arg))))