Variable: timeclock-get-project-function

timeclock-get-project-function is a customizable variable defined in timeclock.el.gz.

Value

timeclock-ask-for-project

Documentation

The function used to determine the name of the current project.

When clocking in, and no project is specified, this function will be called to determine what is the current project to be worked on. If this variable is nil, no questions will be asked.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/timeclock.el.gz
(defcustom timeclock-get-project-function #'timeclock-ask-for-project
  "The function used to determine the name of the current project.
When clocking in, and no project is specified, this function will be
called to determine what is the current project to be worked on.
If this variable is nil, no questions will be asked."
  :type '(choice (const :tag "Don't ask" nil)
                 function))