]> git.eshelyaron.com Git - emacs.git/commitdiff
Rename time-equal to time-equal-p
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 28 Sep 2018 17:32:41 +0000 (10:32 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 28 Sep 2018 17:37:53 +0000 (10:37 -0700)
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.

doc/lispref/os.texi
etc/NEWS
src/editfns.c
test/lisp/emacs-lisp/timer-tests.el

index 400e6bb45c0d4c93e2b4499b5b63f7c531c609c3..8ce5a5ed6d81ce840fca943e26dad637a79e3616 100644 (file)
@@ -1739,7 +1739,7 @@ This returns @code{t} if time value @var{t1} is less than time value
 The result is @code{nil} if either argument is a NaN.
 @end defun
 
-@defun time-equal t1 t2
+@defun time-equal-p t1 t2
 This returns @code{t} if @var{t1} and @var{t2} are equal time values.
 The result is @code{nil} if either argument is a NaN.
 @end defun
index 4dd4260b29e03ed7b9f087a15341871c5e1ee8f0..e6508eb60bbaa9b8f60ff64927491c7ba97e2ee3 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -957,7 +957,7 @@ infinities and NaNs too, and propagate them or return nil like
 floating-point operators do.
 
 +++
-** New function 'time-equal' compares time values for equality.
+** New function 'time-equal-p' compares time values for equality.
 
 ** define-minor-mode automatically documents the meaning of ARG.
 
index acd80bbf3118e2df404736e567965710844d406c..daea7463871befa90287832fe1b95e77635ae38f 100644 (file)
@@ -1676,7 +1676,7 @@ See `current-time-string' for the various forms of a time value.  */)
   return time_cmp (t1, t2) < 0 ? Qt : Qnil;
 }
 
-DEFUN ("time-equal", Ftime_equal, Stime_equal, 2, 2, 0,
+DEFUN ("time-equal-p", Ftime_equal_p, Stime_equal_p, 2, 2, 0,
        doc: /* Return non-nil if T1 and T2 are equal time values.  */)
   (Lisp_Object t1, Lisp_Object t2)
 {
@@ -5765,7 +5765,7 @@ it to be non-nil.  */);
   defsubr (&Scurrent_time);
   defsubr (&Stime_add);
   defsubr (&Stime_subtract);
-  defsubr (&Stime_equal);
+  defsubr (&Stime_equal_p);
   defsubr (&Stime_less_p);
   defsubr (&Sget_internal_run_time);
   defsubr (&Sformat_time_string);
index 0e40cdf442feca0ae6ffe42e5bd39d8031f550e8..c5971ee7687e92c628fa9f2bc69ffda1f1dc7607 100644 (file)
@@ -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))))