From b237de5619b734d2d3ce249aa46bd55e5f2422e9 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 17 May 2021 18:40:59 -0400 Subject: [PATCH] Fix shadowing keypad return --- core/core-keybinds.el | 1 + 1 file changed, 1 insertion(+) diff --git a/core/core-keybinds.el b/core/core-keybinds.el index 9e9df23a1..da9f76ff7 100644 --- a/core/core-keybinds.el +++ b/core/core-keybinds.el @@ -62,6 +62,7 @@ and Emacs states, and for non-evil users.") (cmd! (if (let ((keys (this-single-command-raw-keys))) (and keys (not (cl-position 'return keys)) + (not (cl-position 'kp-return keys)) (display-graphic-p))) [C-m] [?\C-m])))