aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref
diff options
context:
space:
mode:
Diffstat (limited to 'doc/lispref')
-rw-r--r--doc/lispref/os.texi4
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},
1559specify most of the components of a decoded time. If there are more 1559specify most of the components of a decoded time. If there are more
1560than six arguments the @emph{last} argument is used as @var{zone} and 1560than six arguments the @emph{last} argument is used as @var{zone} and
1561any other extra arguments are ignored, so that @code{(apply 1561any 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
1563to the current time zone rule (@pxref{Time Zone Rules}). The decoded 1563to the current time zone rule (@pxref{Time Zone Rules}). The decoded
1564time's @var{dst} component is treated as if it was @minus{}1, and 1564time'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
1581for example, day 0 means the day preceding the given month. 1581for example, day 0 means the day preceding the given month.
1582 1582
1583The operating system puts limits on the range of possible time values; 1583The operating system puts limits on the range of possible time values;
1584if you try to encode a time that is out of range, an error results. 1584if the limits are exceeded while encoding the time, an error results.
1585For instance, years before 1970 do not work on some systems; 1585For instance, years before 1970 do not work on some systems;
1586on others, years as early as 1901 do work. 1586on others, years as early as 1901 do work.
1587@end defun 1587@end defun