[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
emacs-28 6d5886e 1/3: * test/lisp/repeat-tests.el (repeat-tests-call-b):
From: |
Juri Linkov |
Subject: |
emacs-28 6d5886e 1/3: * test/lisp/repeat-tests.el (repeat-tests-call-b): Test for commit 588caf0b27. |
Date: |
Tue, 30 Nov 2021 14:08:59 -0500 (EST) |
branch: emacs-28
commit 6d5886e7804314e9e9f94a0b6f09cc3197c29879
Author: Juri Linkov <juri@linkov.net>
Commit: Juri Linkov <juri@linkov.net>
* test/lisp/repeat-tests.el (repeat-tests-call-b): Test for commit
588caf0b27.
This tests for 'repeat-map' as a variable instead of a symbol.
---
test/lisp/repeat-tests.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test/lisp/repeat-tests.el b/test/lisp/repeat-tests.el
index a1f9bbb..76abd24 100644
--- a/test/lisp/repeat-tests.el
+++ b/test/lisp/repeat-tests.el
@@ -47,7 +47,7 @@
map)
"Keymap for repeating sequences.")
(put 'repeat-tests-call-a 'repeat-map 'repeat-tests-repeat-map)
-(put 'repeat-tests-call-b 'repeat-map 'repeat-tests-repeat-map)
+(put 'repeat-tests-call-b 'repeat-map repeat-tests-repeat-map)
(defmacro with-repeat-mode (&rest body)
"Create environment for testing `repeat-mode'."