[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/helm 456491cc15 1/5: Fix missing f12 in nth keys
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/helm 456491cc15 1/5: Fix missing f12 in nth keys |
Date: |
Wed, 6 Jul 2022 11:58:35 -0400 (EDT) |
branch: elpa/helm
commit 456491cc156a7fd0345edd6e52b8e5647aa8647b
Author: Thierry Volpiatto <thievol@posteo.net>
Commit: Thierry Volpiatto <thievol@posteo.net>
Fix missing f12 in nth keys
the number of iterations in dotimes is different from cl-loop.
---
helm-core.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/helm-core.el b/helm-core.el
index 4c48fa61cf..196cbaf892 100644
--- a/helm-core.el
+++ b/helm-core.el
@@ -283,7 +283,7 @@ and vectors, so don't use strings to define them."
(define-key map k #'helm-help))
;; Bind all actions from f1 to f12, `helm-select-nth-action'
;; counts from 0, i.e. (helm-select-nth-action 0) = action 1.
- (dotimes (n 11)
+ (dotimes (n 12)
(define-key map (kbd (format "<f%s>" (1+ n)))
(lambda ()
(interactive)