diff options
| author | Glenn Morris <rgm@gnu.org> | 2007-11-29 04:46:20 +0000 |
|---|---|---|
| committer | Glenn Morris <rgm@gnu.org> | 2007-11-29 04:46:20 +0000 |
| commit | ed15430b6c6e52178b7b4f67bd331b66c8b3231c (patch) | |
| tree | ae73deec2f70af4cf0fa7c6598e401228896ab2c | |
| parent | c45400672ff7d5ab7df0a6dded2e35eb128b2f67 (diff) | |
| download | emacs-ed15430b6c6e52178b7b4f67bd331b66c8b3231c.tar.gz | |
Ari Roponen <ari.roponen at gmail.com> (tiny change)
(encode-time-value): Doc fix.
| -rw-r--r-- | lisp/calendar/time-date.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/calendar/time-date.el b/lisp/calendar/time-date.el index d15312abfa3..4bb2606207a 100644 --- a/lisp/calendar/time-date.el +++ b/lisp/calendar/time-date.el @@ -86,7 +86,7 @@ LOW), and type 3 is the list (HIGH LOW MICRO)." (defun encode-time-value (high low micro type) "Encode HIGH, LOW, and MICRO into a time value of type TYPE. Type 0 is the cons cell (HIGH . LOW), type 1 is the list (HIGH LOW), -and type 3 is the list (HIGH LOW MICRO)." +and type 2 is the list (HIGH LOW MICRO)." (cond ((eq type 0) (cons high low)) ((eq type 1) (list high low)) |
