aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2007-11-29 04:46:12 +0000
committerGlenn Morris2007-11-29 04:46:12 +0000
commite4b07c8b950d768b29295897c2dc514bc910f000 (patch)
treecdb299fc3cd4cc4db8cf6aad1216876c7f0b722c
parente05661923e3f7cba7f9e72ddf5073aaec0f9c82b (diff)
downloademacs-e4b07c8b950d768b29295897c2dc514bc910f000.tar.gz
emacs-e4b07c8b950d768b29295897c2dc514bc910f000.zip
Ari Roponen <ari.roponen at gmail.com> (tiny change)
(encode-time-value): Doc fix.
-rw-r--r--lisp/calendar/time-date.el2
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)."
86(defun encode-time-value (high low micro type) 86(defun encode-time-value (high low micro type)
87 "Encode HIGH, LOW, and MICRO into a time value of type TYPE. 87 "Encode HIGH, LOW, and MICRO into a time value of type TYPE.
88Type 0 is the cons cell (HIGH . LOW), type 1 is the list (HIGH LOW), 88Type 0 is the cons cell (HIGH . LOW), type 1 is the list (HIGH LOW),
89and type 3 is the list (HIGH LOW MICRO)." 89and type 2 is the list (HIGH LOW MICRO)."
90 (cond 90 (cond
91 ((eq type 0) (cons high low)) 91 ((eq type 0) (cons high low))
92 ((eq type 1) (list high low)) 92 ((eq type 1) (list high low))