emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/eat c19cf68b28 08/15: * eat.el (eat-term-make-keymap): Use


From: ELPA Syncer
Subject: [nongnu] elpa/eat c19cf68b28 08/15: * eat.el (eat-term-make-keymap): Use 'cl-flet'
Date: Tue, 29 Nov 2022 05:58:38 -0500 (EST)

branch: elpa/eat
commit c19cf68b2827e91e4749d1b2bcf94268bb21cf0a
Author: Akib Azmain Turja <akib@disroot.org>
Commit: Akib Azmain Turja <akib@disroot.org>

    * eat.el (eat-term-make-keymap): Use 'cl-flet'
---
 eat.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/eat.el b/eat.el
index 0863dd3886..8cd1b23ca9 100644
--- a/eat.el
+++ b/eat.el
@@ -4766,9 +4766,9 @@ keywords:
 EXCEPTIONS is a list of key sequences to not bind.  Don't use
 \"M-...\" key sequences in EXCEPTIONS, use \"ESC ...\" instead."
   (let ((map (make-sparse-keymap)))
-    (cl-labels ((bind (key)
-                  (unless (member key exceptions)
-                    (define-key map key input-command))))
+    (cl-flet ((bind (key)
+                (unless (member key exceptions)
+                  (define-key map key input-command))))
       (when (memq :ascii categories)
         ;; Bind ASCII and self-insertable characters except ESC and
         ;; DEL.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]