diff options
| author | Juanma Barranquero | 2002-07-03 13:18:53 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2002-07-03 13:18:53 +0000 |
| commit | 69a04106befa7e1e168f3190f75adf626331ca9b (patch) | |
| tree | cacde387004c1d81e829d5b7d317ee6de2f38b1d | |
| parent | 4696802bdef9a81448d55c4f631785b02fe18ba0 (diff) | |
| download | emacs-69a04106befa7e1e168f3190f75adf626331ca9b.tar.gz emacs-69a04106befa7e1e168f3190f75adf626331ca9b.zip | |
(timeclock-workday-remaining): Fix typo.
(timeclock-workday-elapsed): Likewise.
| -rw-r--r-- | lisp/calendar/timeclock.el | 4 |
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. |
| 462 | The amount returned is relative to the value of `timeclock-workday'. | 462 | The amount returned is relative to the value of `timeclock-workday'. |
| 463 | If TODAY-ONLY is non-nil, the value returned will be relative only to | 463 | If TODAY-ONLY is non-nil, the value returned will be relative only to |
| 464 | the time worked today, and not to past time. This argument only makes | 464 | the 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. |
| 495 | If RELATIVE is non-nil, the amount returned will be relative to past | 495 | If RELATIVE is non-nil, the amount returned will be relative to past |
| 496 | time worked. The default is to return only the time that has elapsed | 496 | time worked. The default is to return only the time that has elapsed |
| 497 | so far today." | 497 | so far today." |