1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

(timeclock-get-workday-function): `timeclock-workday' is not a valid

option for this, rather it is a value that may be returned.
This commit is contained in:
Glenn Morris 2002-07-12 23:38:01 +00:00
parent edc590bb8a
commit a3dd6af2b5
2 changed files with 11 additions and 5 deletions

View file

@ -1,3 +1,9 @@
2002-07-12 Glenn Morris <gmorris@ast.cam.ac.uk>
* calendar/timeclock.el (timeclock-get-workday-function):
`timeclock-workday' is not a valid option, rather a possible
return value.
2002-07-12 Richard M. Stallman <rms@gnu.org>
* net/ange-ftp.el (ange-ftp-write-region):

View file

@ -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