aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/misc/emacs-mime.texi7
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/misc/emacs-mime.texi b/doc/misc/emacs-mime.texi
index 45f37fb8557..9280311b5c9 100644
--- a/doc/misc/emacs-mime.texi
+++ b/doc/misc/emacs-mime.texi
@@ -1561,6 +1561,9 @@ Here's a bunch of time/date/second/day examples:
1561(time-less-p '(13818 19266) '(13818 19145)) 1561(time-less-p '(13818 19266) '(13818 19145))
1562@result{} nil 1562@result{} nil
1563 1563
1564(time-equal-p '(13818 19266) '(13818 19145))
1565@result{} nil
1566
1564(time-subtract '(13818 19266) '(13818 19145)) 1567(time-subtract '(13818 19266) '(13818 19145))
1565@result{} (0 121) 1568@result{} (0 121)
1566 1569
@@ -1641,6 +1644,10 @@ return a ``zero'' time.
1641Take two times and say whether the first time is less (i.e., earlier) 1644Take two times and say whether the first time is less (i.e., earlier)
1642than the second time. (This is a built-in function.) 1645than the second time. (This is a built-in function.)
1643 1646
1647@item time-equal-p
1648Check, whether two time values are equal. The time values must not be
1649in the same format. (This is a built-in function.)
1650
1644@item time-since 1651@item time-since
1645Take a time and return a time saying how long it was since that time. 1652Take a time and return a time saying how long it was since that time.
1646 1653