diff options
| author | Richard M. Stallman | 2003-07-22 15:17:55 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2003-07-22 15:17:55 +0000 |
| commit | 75442b3f4306851019cbe7f9bdf8a52669433e97 (patch) | |
| tree | f90a73f034d66a96922c210f33e477df31344a4f | |
| parent | 6efdb8e54c4c5015b7b5f2693e9b617b6d02a57a (diff) | |
| download | emacs-75442b3f4306851019cbe7f9bdf8a52669433e97.tar.gz emacs-75442b3f4306851019cbe7f9bdf8a52669433e97.zip | |
(Time Conversion): decode-time arg is optional.
| -rw-r--r-- | lispref/os.texi | 7 |
1 files changed, 4 insertions, 3 deletions
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 | |||
| 1163 | the inverse conversion, use @code{float-time}. | 1163 | the inverse conversion, use @code{float-time}. |
| 1164 | @end defun | 1164 | @end defun |
| 1165 | 1165 | ||
| 1166 | @defun decode-time time | 1166 | @defun decode-time &optional time |
| 1167 | This function converts a time value into calendrical information. The | 1167 | This function converts a time value into calendrical information. If |
| 1168 | return value is a list of nine elements, as follows: | 1168 | you don't specify @var{time}, it decodes the current time. The return |
| 1169 | value is a list of nine elements, as follows: | ||
| 1169 | 1170 | ||
| 1170 | @example | 1171 | @example |
| 1171 | (@var{seconds} @var{minutes} @var{hour} @var{day} @var{month} @var{year} @var{dow} @var{dst} @var{zone}) | 1172 | (@var{seconds} @var{minutes} @var{hour} @var{day} @var{month} @var{year} @var{dow} @var{dst} @var{zone}) |