# HG changeset patch # User Dave Love # Date 918831425 0 # Node ID 85040d56fb6075402ac023b294c82a20047dfbb4 # Parent cef9cf0a46b45f388719819427fc7eba4b005fd7 (timezone-make-date-sortable, timezone-make-date-arpa-standard): Doc fix. diff -r cef9cf0a46b4 -r 85040d56fb60 lisp/timezone.el --- a/lisp/timezone.el Fri Feb 12 12:40:54 1999 +0000 +++ b/lisp/timezone.el Fri Feb 12 14:57:05 1999 +0000 @@ -66,9 +66,9 @@ (defun timezone-make-date-arpa-standard (date &optional local timezone) "Convert DATE to an arpanet standard date. -Optional 1st argument LOCAL specifies the default local timezone of the DATE; +Optional 2nd argument LOCAL specifies the default local timezone of the DATE; if nil, GMT is assumed. -Optional 2nd argument TIMEZONE specifies a time zone to be represented in; +Optional 3rd argument TIMEZONE specifies a time zone to be represented in; if nil, the local time zone is assumed." (let ((new (timezone-fix-time date local timezone))) (timezone-make-arpa-date (aref new 0) (aref new 1) (aref new 2) @@ -79,9 +79,9 @@ (defun timezone-make-date-sortable (date &optional local timezone) "Convert DATE to a sortable date string. -Optional 1st argument LOCAL specifies the default local timezone of the DATE; +Optional 2nd argument LOCAL specifies the default local timezone of the DATE; if nil, GMT is assumed. -Optional 2nd argument TIMEZONE specifies a timezone to be represented in; +Optional 3rd argument TIMEZONE specifies a timezone to be represented in; if nil, the local time zone is assumed." (let ((new (timezone-fix-time date local timezone))) (timezone-make-sortable-date (aref new 0) (aref new 1) (aref new 2)