replace incf

This commit is contained in:
Łukasz Pankowski 2018-02-26 19:45:49 +01:00
parent 20e1392936
commit 374da8a706

View File

@ -864,7 +864,7 @@ of the key binding used to execute this command."
(let ((character ?a))
(while (<= character ?z)
(define-key my-jj-map (format "%c" character) #'my-switch-to-register)
(incf character)))
(setq character (1+ character))))
(key-chord-define-global "jj" my-jj-map)