From 573e8eef86acb560541226465817d5a84efeebc5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mattias=20Engdeg=C3=A5rd?= Date: Fri, 20 Aug 2021 13:51:36 +0200 Subject: [PATCH] ; * lisp/mouse.el: Fix typos in previous change --- lisp/mouse.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/mouse.el b/lisp/mouse.el index 4dcc2f28f4a..3441a4787e6 100644 --- a/lisp/mouse.el +++ b/lisp/mouse.el @@ -455,9 +455,9 @@ CLICK-SYM and DOWN-SYM are the mouse click and down key symbols to use." context-menu--saved-bindings) (global-set-key down context-menu-entry))) -(defun context-menu--reset-bindings () +(defun context-menu--restore-bindings () "Restore saved `context-menu-mode' bindings." - (pcase-dolist (`(sym . binding) context-menu--saved-bindings) + (pcase-dolist (`(,sym . ,binding) context-menu--saved-bindings) (let ((key (vector sym))) (if binding (global-set-key key binding) -- 2.39.5