summaryrefslogtreecommitdiffstats
path: root/doc/clock.n
diff options
context:
space:
mode:
Diffstat (limited to 'doc/clock.n')
-rw-r--r--doc/clock.n28
1 files changed, 14 insertions, 14 deletions
diff --git a/doc/clock.n b/doc/clock.n
index c1f1f4d..3f19644 100644
--- a/doc/clock.n
+++ b/doc/clock.n
@@ -190,10 +190,10 @@ that observe summer time (Daylight Saving Time). For example,
the following code sets the value of \fBx\fR to \fB04:00:00\fR because
the clock has changed in the interval in question.
.CS
-set s [\fBclock\fR scan {2004-10-30 05:00:00} \\
+set s [\fBclock scan\fR {2004-10-30 05:00:00} \\
-format {%Y-%m-%d %H:%M:%S} -timezone :America/New_York]
-set a [\fBclock\fR add $s 24 hours -timezone :America/New_York]
-set x [\fBclock\fR format $a \\
+set a [\fBclock add\fR $s 24 hours -timezone :America/New_York]
+set x [\fBclock format\fR $a \\
-format {%H:%M:%S} -timezone :America/New_York]
.CE
.PP
@@ -209,10 +209,10 @@ the time changes at the start or end of summer time (Daylight Saving Time)
results in the \fIsame local time\fR on the day in question. For
instance, the following code sets the value of \fBx\fR to \fB05:00:00\fR.
.CS
-set s [\fBclock\fR scan {2004-10-30 05:00:00} \\
+set s [\fBclock scan\fR {2004-10-30 05:00:00} \\
-format {%Y-%m-%d %H:%M:%S} -timezone :America/New_York]
-set a [\fBclock\fR add $s 1 day -timezone :America/New_York]
-set x [\fBclock\fR format $a \\
+set a [\fBclock add\fR $s 1 day -timezone :America/New_York]
+set x [\fBclock format\fR $a \\
-format {%H:%M:%S} -timezone :America/New_York]
.CE
.PP
@@ -223,10 +223,10 @@ Daylight Saving Time change using US rules), the time is converted
as if the clock had not changed. Thus, the following code
will set the value of \fBx\fR to \fB03:30:00\fR.
.CS
-set s [\fBclock\fR scan {2004-04-03 02:30:00} \\
+set s [\fBclock scan\fR {2004-04-03 02:30:00} \\
-format {%Y-%m-%d %H:%M:%S} -timezone :America/New_York]
-set a [\fBclock\fR add $s 1 day -timezone :America/New_York]
-set x [\fBclock\fR format $a \\
+set a [\fBclock add\fR $s 1 day -timezone :America/New_York]
+set x [\fBclock format\fR $a \\
-format {%H:%M:%S} -timezone :America/New_York]
.CE
.PP
@@ -234,9 +234,9 @@ Adding a given number of days or weeks works correctly across the conversion
between the Julian and Gregorian calendars; the omitted days are skipped.
The following code sets \fBz\fR to \fB1752-09-14\fR.
.CS
-set x [\fBclock\fR scan 1752-09-02 -format %Y-%m-%d -locale en_US]
-set y [\fBclock\fR add $x 1 day -locale en_US]
-set z [\fBclock\fR format $y -format %Y-%m-%d -locale en_US]
+set x [\fBclock scan\fR 1752-09-02 -format %Y-%m-%d -locale en_US]
+set y [\fBclock add\fR $x 1 day -locale en_US]
+set z [\fBclock format\fR $y -format %Y-%m-%d -locale en_US]
.CE
.PP
In the bizarre case that adding the given number of days yields a date
@@ -846,9 +846,9 @@ years. This means that when crossing the daylight savings time boundary,
different results will be given for \fBclock scan "1 day"\fR and
\fBclock scan "24 hours"\fR:
.CS
-% \fBclock\fR scan "1 day" -base [\fBclock\fR scan 1999-10-31]
+% \fBclock scan\fR "1 day" -base [\fBclock scan\fR 1999-10-31]
941443200
-% \fBclock\fR scan "24 hours" -base [\fBclock\fR scan 1999-10-31]
+% \fBclock scan\fR "24 hours" -base [\fBclock scan\fR 1999-10-31]
941439600
.CE
.SH "SEE ALSO"