From e47b701926d690e6a4e6a686656f7c9aafd4b055 Mon Sep 17 00:00:00 2001 From: Nick Roberts Date: Sat, 14 Apr 2007 12:34:35 +0000 Subject: [PATCH] (tmm-get-keybind): Use copy-sequence to ensure that the global map isn't modified --- lisp/tmm.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/tmm.el b/lisp/tmm.el index 087d864d0c3..f70a8cd2ea2 100644 --- a/lisp/tmm.el +++ b/lisp/tmm.el @@ -541,7 +541,7 @@ of `menu-bar-final-items'." ;; Make a list of all the bindings in all the keymaps. (setq minorbind (mapcar 'cdr (minor-mode-key-binding keyseq))) (setq localbind (local-key-binding keyseq)) - (setq globalbind (cdr (global-key-binding keyseq))) + (setq globalbind (copy-sequence (cdr (global-key-binding keyseq)))) ;; If items have been redefined/undefined locally, remove them from ;; the global list. -- 2.39.5