1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-07 23:10:28 -08:00

* doc/misc/emacs-mime.texi (time-date): Document now-builtins better.

This commit is contained in:
Paul Eggert 2016-05-08 11:49:55 -07:00
parent cd27f7396b
commit b479deadf4

View file

@ -1554,7 +1554,7 @@ Here's a bunch of time/date/second/day examples:
(time-less-p '(13818 19266) '(13818 19145)) (time-less-p '(13818 19266) '(13818 19145))
@result{} nil @result{} nil
(subtract-time '(13818 19266) '(13818 19145)) (time-subtract '(13818 19266) '(13818 19145))
@result{} (0 121) @result{} (0 121)
(days-between "Sat Sep 12 12:21:54 1998 +0200" (days-between "Sat Sep 12 12:21:54 1998 +0200"
@ -1632,14 +1632,14 @@ return a ``zero'' time.
@item time-less-p @item time-less-p
Take two times and say whether the first time is less (i.e., earlier) Take two times and say whether the first time is less (i.e., earlier)
than the second time. than the second time. (This is a built-in function.)
@item time-since @item time-since
Take a time and return a time saying how long it was since that time. Take a time and return a time saying how long it was since that time.
@item subtract-time @item time-subtract
Take two times and subtract the second from the first. I.e., return Take two times and subtract the second from the first. I.e., return
the time between the two times. the time between the two times. (This is a built-in function.)
@item days-between @item days-between
Take two days and return the number of days between those two days. Take two days and return the number of days between those two days.