branch: elpa/helm
commit 38011361e4ccd0d492649e8844e4e485ef18da1e
Author: Thierry Volpiatto <[email protected]>
Commit: Thierry Volpiatto <[email protected]>

    Avoid possibly binding an action to f13
---
 helm-core.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/helm-core.el b/helm-core.el
index 43bbc21ceb..63c7b8779e 100644
--- a/helm-core.el
+++ b/helm-core.el
@@ -284,7 +284,7 @@ and vectors, so don't use strings to define them."
       (define-key map k #'helm-help))
     (define-key map (kbd "C-c ?")    #'helm-help)
     ;; Bind all actions from 1 to 12 to their corresponding nth index+1.
-    (cl-loop for n from 0 to 12 do
+    (cl-loop for n from 0 to 11 do
              (define-key map (kbd (format "<f%s>" (1+ n)))
                `(lambda ()
                   (interactive)

Reply via email to