diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2018-09-28 10:32:41 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2018-09-28 10:37:53 -0700 |
commit | 857c2c271080ef62e57128f531cee6e974ca28fb (patch) | |
tree | cd5855c98bb8b5f18c462add82b5e2e44980a464 /test | |
parent | 6aa93b45af9fb3631fb8fb6a04407db4d9a74107 (diff) | |
download | emacs-857c2c271080ef62e57128f531cee6e974ca28fb.tar.gz |
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.el | 2 |
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 @@ (should (debug-timer-check)) t)) (ert-deftest timer-test-multiple-of-time () - (should (time-equal + (should (time-equal-p (timer-next-integral-multiple-of-time '(0 0 0 1) (1+ (ash 1 53))) (list (ash 1 (- 53 16)) 1)))) |