From: Richard M. Stallman Date: Tue, 22 Jul 2003 15:17:55 +0000 (+0000) Subject: (Time Conversion): decode-time arg is optional. X-Git-Tag: ttn-vms-21-2-B4~9280 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=75442b3f4306851019cbe7f9bdf8a52669433e97;p=emacs.git (Time Conversion): decode-time arg is optional. --- diff --git a/lispref/os.texi b/lispref/os.texi index 98e63f2a878..3536c086f1f 100644 --- a/lispref/os.texi +++ b/lispref/os.texi @@ -1163,9 +1163,10 @@ seconds since the epoch, to a time value and returns that. To perform the inverse conversion, use @code{float-time}. @end defun -@defun decode-time time -This function converts a time value into calendrical information. The -return value is a list of nine elements, as follows: +@defun decode-time &optional time +This function converts a time value into calendrical information. If +you don't specify @var{time}, it decodes the current time. The return +value is a list of nine elements, as follows: @example (@var{seconds} @var{minutes} @var{hour} @var{day} @var{month} @var{year} @var{dow} @var{dst} @var{zone})