From 374da8a706b2470d84b1218e9bead07149939ff3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Pankowski?= Date: Mon, 26 Feb 2018 19:45:49 +0100 Subject: [PATCH] replace incf --- init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.el b/init.el index 9b68d70..419fc5a 100644 --- a/init.el +++ b/init.el @@ -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)