diff options
| author | Dave Love | 1999-02-12 14:57:05 +0000 |
|---|---|---|
| committer | Dave Love | 1999-02-12 14:57:05 +0000 |
| commit | a184d9bf2f49589e62e86311f7256314979eebd3 (patch) | |
| tree | 5dffd98a8c7f8f878c7621a5f7fc98648f4281f6 /lisp | |
| parent | 86c06e88d4276fedc5fabc1365e10d1832ad2cb1 (diff) | |
| download | emacs-a184d9bf2f49589e62e86311f7256314979eebd3.tar.gz emacs-a184d9bf2f49589e62e86311f7256314979eebd3.zip | |
(timezone-make-date-sortable, timezone-make-date-arpa-standard): Doc fix.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/timezone.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/timezone.el b/lisp/timezone.el index 122b986e0d5..3de071a4a70 100644 --- a/lisp/timezone.el +++ b/lisp/timezone.el | |||
| @@ -66,9 +66,9 @@ Use `current-time-zone' instead.") | |||
| 66 | 66 | ||
| 67 | (defun timezone-make-date-arpa-standard (date &optional local timezone) | 67 | (defun timezone-make-date-arpa-standard (date &optional local timezone) |
| 68 | "Convert DATE to an arpanet standard date. | 68 | "Convert DATE to an arpanet standard date. |
| 69 | Optional 1st argument LOCAL specifies the default local timezone of the DATE; | 69 | Optional 2nd argument LOCAL specifies the default local timezone of the DATE; |
| 70 | if nil, GMT is assumed. | 70 | if nil, GMT is assumed. |
| 71 | Optional 2nd argument TIMEZONE specifies a time zone to be represented in; | 71 | Optional 3rd argument TIMEZONE specifies a time zone to be represented in; |
| 72 | if nil, the local time zone is assumed." | 72 | if nil, the local time zone is assumed." |
| 73 | (let ((new (timezone-fix-time date local timezone))) | 73 | (let ((new (timezone-fix-time date local timezone))) |
| 74 | (timezone-make-arpa-date (aref new 0) (aref new 1) (aref new 2) | 74 | (timezone-make-arpa-date (aref new 0) (aref new 1) (aref new 2) |
| @@ -79,9 +79,9 @@ if nil, the local time zone is assumed." | |||
| 79 | 79 | ||
| 80 | (defun timezone-make-date-sortable (date &optional local timezone) | 80 | (defun timezone-make-date-sortable (date &optional local timezone) |
| 81 | "Convert DATE to a sortable date string. | 81 | "Convert DATE to a sortable date string. |
| 82 | Optional 1st argument LOCAL specifies the default local timezone of the DATE; | 82 | Optional 2nd argument LOCAL specifies the default local timezone of the DATE; |
| 83 | if nil, GMT is assumed. | 83 | if nil, GMT is assumed. |
| 84 | Optional 2nd argument TIMEZONE specifies a timezone to be represented in; | 84 | Optional 3rd argument TIMEZONE specifies a timezone to be represented in; |
| 85 | if nil, the local time zone is assumed." | 85 | if nil, the local time zone is assumed." |
| 86 | (let ((new (timezone-fix-time date local timezone))) | 86 | (let ((new (timezone-fix-time date local timezone))) |
| 87 | (timezone-make-sortable-date (aref new 0) (aref new 1) (aref new 2) | 87 | (timezone-make-sortable-date (aref new 0) (aref new 1) (aref new 2) |