diff options
author | Glenn Morris <rgm@gnu.org> | 2002-07-12 23:38:01 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2002-07-12 23:38:01 +0000 |
commit | a3dd6af2b5baf3b62a4221a634d849eac3ae0e15 (patch) | |
tree | 7bafbdcafbaa1f58271e7f013658a9649faa3e68 /lisp/calendar/timeclock.el | |
parent | edc590bb8a77290f9963b2d0f8520b4cbe7484d6 (diff) | |
download | emacs-a3dd6af2b5baf3b62a4221a634d849eac3ae0e15.tar.gz |
(timeclock-get-workday-function): `timeclock-workday' is not a valid
option for this, rather it is a value that may be returned.
Diffstat (limited to 'lisp/calendar/timeclock.el')
-rw-r--r-- | lisp/calendar/timeclock.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/calendar/timeclock.el b/lisp/calendar/timeclock.el index c93464f02fe..21a931297e8 100644 --- a/lisp/calendar/timeclock.el +++ b/lisp/calendar/timeclock.el @@ -124,11 +124,11 @@ If this variable is nil, no questions will be asked." "*A function used to determine the length of today's workday. The first time that a user clocks in each day, this function will be called to determine what the length of the current workday is. If -nil, or equal to `timeclock-workday', nothing special will be done. -If it is a quantity different from `timeclock-workday', however, a -record will be output to the timelog file to note the fact that that -day has a different length from the norm." - :type '(choice (const nil) (function-item timeclock-workday) function) +the return value is nil, or equal to `timeclock-workday', nothing special +will be done. If it is a quantity different from `timeclock-workday', +however, a record will be output to the timelog file to note the fact that +that day has a different length from the norm." + :type '(choice (const nil) function) :group 'timeclock) (defcustom timeclock-ask-before-exiting t |