mirror of
https://github.com/vale981/boon
synced 2025-03-05 09:31:43 -05:00
parent
dea1f7e830
commit
a218610425
1 changed files with 1 additions and 1 deletions
|
@ -255,7 +255,7 @@ See boon-regs.el."
|
|||
(while (and (or kmv kms) (not (commandp kms)) (not (commandp kmv)))
|
||||
(let ((last-char (read-event (format "%s %s" msg my-prefix-arg))))
|
||||
;; read-event, because mc badly advises read-char
|
||||
(if (and (>= last-char ?0) (<= last-char ?9))
|
||||
(if (and (integerp last-char) (>= last-char ?0) (<= last-char ?9))
|
||||
(setq my-prefix-arg (+ (- last-char ?0) (* 10 my-prefix-arg )))
|
||||
(if kms (setq kms (lookup-key kms (vector last-char))))
|
||||
(if kmv (setq kmv (lookup-key kmv (vector last-char)))))))
|
||||
|
|
Loading…
Add table
Reference in a new issue