aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorPaul Eggert2018-09-28 10:32:41 -0700
committerPaul Eggert2018-09-28 10:37:53 -0700
commit857c2c271080ef62e57128f531cee6e974ca28fb (patch)
treecd5855c98bb8b5f18c462add82b5e2e44980a464 /test
parent6aa93b45af9fb3631fb8fb6a04407db4d9a74107 (diff)
downloademacs-857c2c271080ef62e57128f531cee6e974ca28fb.tar.gz
emacs-857c2c271080ef62e57128f531cee6e974ca28fb.zip
Rename time-equal to time-equal-p
This is for consistency with time-less-p. * doc/lispref/os.texi (Time Calculations), etc/NEWS: * src/editfns.c (Ftime_equal_p, syms_of_editfns): * test/lisp/emacs-lisp/timer-tests.el (timer-test-multiple-of-time): Rename.
Diffstat (limited to 'test')
-rw-r--r--test/lisp/emacs-lisp/timer-tests.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lisp/emacs-lisp/timer-tests.el b/test/lisp/emacs-lisp/timer-tests.el
index 0e40cdf442f..c5971ee7687 100644
--- a/test/lisp/emacs-lisp/timer-tests.el
+++ b/test/lisp/emacs-lisp/timer-tests.el
@@ -40,7 +40,7 @@
40 (should (debug-timer-check)) t)) 40 (should (debug-timer-check)) t))
41 41
42(ert-deftest timer-test-multiple-of-time () 42(ert-deftest timer-test-multiple-of-time ()
43 (should (time-equal 43 (should (time-equal-p
44 (timer-next-integral-multiple-of-time '(0 0 0 1) (1+ (ash 1 53))) 44 (timer-next-integral-multiple-of-time '(0 0 0 1) (1+ (ash 1 53)))
45 (list (ash 1 (- 53 16)) 1)))) 45 (list (ash 1 (- 53 16)) 1))))
46 46