summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuri Linkov <juri@linkov.net>2021-11-30 20:52:47 +0200
committerJuri Linkov <juri@linkov.net>2021-11-30 21:07:18 +0200
commit6d5886e7804314e9e9f94a0b6f09cc3197c29879 (patch)
treecb952dd99502a8a58b60b3071edbdebabe08c829
parent9e16c6a96d6c5bbe97d6a90897e0322e3322e20e (diff)
downloademacs-6d5886e7804314e9e9f94a0b6f09cc3197c29879.tar.gz
* 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.
-rw-r--r--test/lisp/repeat-tests.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lisp/repeat-tests.el b/test/lisp/repeat-tests.el
index a1f9bbb1739..76abd24ea2f 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'."