]> git.eshelyaron.com Git - emacs.git/commitdiff
* doc/lispref/os.texi (time-subtract): Doc fix.
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 7 Mar 2020 17:30:19 +0000 (09:30 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 7 Mar 2020 17:50:18 +0000 (09:50 -0800)
doc/lispref/os.texi

index 201ca18c1e45f4fff9c06e292d6678445c2adc59..92aaf24b851f0868de58aa8aa5dbb7a470419cd4 100644 (file)
@@ -1978,10 +1978,9 @@ The result is @code{nil} if either argument is a NaN.
 
 @defun time-subtract t1 t2
 This returns the time difference @var{t1} @minus{} @var{t2} between
-two time values, normally as a Lisp timestamp but as a float
-if either argument is infinite or a NaN@.
-When the result is a timestamp, it is exact and its clock
+two time values, as a Lisp time value.  The result is exact and its clock
 resolution is no worse than the worse of its two arguments' resolutions.
+The result is floating-point only if it is infinite or a NaN.
 If you need the difference in units
 of elapsed seconds, you can convert it with @code{time-convert} or
 @code{float-time}.  @xref{Time Conversion}.