aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2002-07-03 13:18:53 +0000
committerJuanma Barranquero2002-07-03 13:18:53 +0000
commit69a04106befa7e1e168f3190f75adf626331ca9b (patch)
treecacde387004c1d81e829d5b7d317ee6de2f38b1d
parent4696802bdef9a81448d55c4f631785b02fe18ba0 (diff)
downloademacs-69a04106befa7e1e168f3190f75adf626331ca9b.tar.gz
emacs-69a04106befa7e1e168f3190f75adf626331ca9b.zip
(timeclock-workday-remaining): Fix typo.
(timeclock-workday-elapsed): Likewise.
-rw-r--r--lisp/calendar/timeclock.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/calendar/timeclock.el b/lisp/calendar/timeclock.el
index a7f3c73d32d..c93464f02fe 100644
--- a/lisp/calendar/timeclock.el
+++ b/lisp/calendar/timeclock.el
@@ -458,7 +458,7 @@ as with time remaining, where negative time really means overtime)."
458 (% (truncate (/ (abs seconds) 60)) 60)))) 458 (% (truncate (/ (abs seconds) 60)) 60))))
459 459
460(defsubst timeclock-workday-remaining (&optional today-only) 460(defsubst timeclock-workday-remaining (&optional today-only)
461 "Return a the number of seconds until the workday is complete. 461 "Return the number of seconds until the workday is complete.
462The amount returned is relative to the value of `timeclock-workday'. 462The amount returned is relative to the value of `timeclock-workday'.
463If TODAY-ONLY is non-nil, the value returned will be relative only to 463If TODAY-ONLY is non-nil, the value returned will be relative only to
464the time worked today, and not to past time. This argument only makes 464the time worked today, and not to past time. This argument only makes
@@ -491,7 +491,7 @@ See `timeclock-relative' for more information about the meaning of
491 string))) 491 string)))
492 492
493(defsubst timeclock-workday-elapsed () 493(defsubst timeclock-workday-elapsed ()
494 "Return a the number of seconds worked so far today. 494 "Return the number of seconds worked so far today.
495If RELATIVE is non-nil, the amount returned will be relative to past 495If RELATIVE is non-nil, the amount returned will be relative to past
496time worked. The default is to return only the time that has elapsed 496time worked. The default is to return only the time that has elapsed
497so far today." 497so far today."