diff options
| author | Paul Eggert | 2019-08-04 09:57:27 -0700 |
|---|---|---|
| committer | Paul Eggert | 2019-08-04 10:09:25 -0700 |
| commit | 5f3f3884a0d2a88101d330b82ef5b584cfc02aa6 (patch) | |
| tree | 1fe0f5f8779f6836748d26ecfc58cee88da8e46e /doc/lispref | |
| parent | f01597a43ea2eac38cfbb829f301c2e6e3bcbe83 (diff) | |
| download | emacs-5f3f3884a0d2a88101d330b82ef5b584cfc02aa6.tar.gz emacs-5f3f3884a0d2a88101d330b82ef5b584cfc02aa6.zip | |
Improve time function doc
* doc/misc/emacs-mime.texi (time-date): Don’t give
parse-iso8601-time-string in the example, as the function is
not autoloaded.
* lisp/gnus/nndiary.el (nndiary-compute-reminders):
No need to call encode-time or use floating point here.
Diffstat (limited to 'doc/lispref')
| -rw-r--r-- | doc/lispref/os.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/lispref/os.texi b/doc/lispref/os.texi index b3444838d3b..7bb9833467d 100644 --- a/doc/lispref/os.texi +++ b/doc/lispref/os.texi | |||
| @@ -1559,7 +1559,7 @@ or more arguments. The first six arguments @var{second}, | |||
| 1559 | specify most of the components of a decoded time. If there are more | 1559 | specify most of the components of a decoded time. If there are more |
| 1560 | than six arguments the @emph{last} argument is used as @var{zone} and | 1560 | than six arguments the @emph{last} argument is used as @var{zone} and |
| 1561 | any other extra arguments are ignored, so that @code{(apply | 1561 | any other extra arguments are ignored, so that @code{(apply |
| 1562 | #\\='encode-time (decode-time ...))} works; otherwise @var{zone} defaults | 1562 | #'encode-time (decode-time ...))} works; otherwise @var{zone} defaults |
| 1563 | to the current time zone rule (@pxref{Time Zone Rules}). The decoded | 1563 | to the current time zone rule (@pxref{Time Zone Rules}). The decoded |
| 1564 | time's @var{dst} component is treated as if it was @minus{}1, and | 1564 | time's @var{dst} component is treated as if it was @minus{}1, and |
| 1565 | @var{form} takes its default value. | 1565 | @var{form} takes its default value. |
| @@ -1581,7 +1581,7 @@ You can perform simple date arithmetic by using out-of-range values for | |||
| 1581 | for example, day 0 means the day preceding the given month. | 1581 | for example, day 0 means the day preceding the given month. |
| 1582 | 1582 | ||
| 1583 | The operating system puts limits on the range of possible time values; | 1583 | The operating system puts limits on the range of possible time values; |
| 1584 | if you try to encode a time that is out of range, an error results. | 1584 | if the limits are exceeded while encoding the time, an error results. |
| 1585 | For instance, years before 1970 do not work on some systems; | 1585 | For instance, years before 1970 do not work on some systems; |
| 1586 | on others, years as early as 1901 do work. | 1586 | on others, years as early as 1901 do work. |
| 1587 | @end defun | 1587 | @end defun |