From: Glenn Morris Date: Thu, 29 Nov 2007 04:46:12 +0000 (+0000) Subject: Ari Roponen (tiny change) X-Git-Tag: emacs-pretest-22.1.90~310 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e4b07c8b950d768b29295897c2dc514bc910f000;p=emacs.git Ari Roponen (tiny change) (encode-time-value): Doc fix. --- 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))