Function: timeclock-ask-for-project

timeclock-ask-for-project is a byte-compiled function defined in timeclock.el.gz.

Signature

(timeclock-ask-for-project)

Documentation

Ask the user for the project they are clocking into.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/timeclock.el.gz
(defun timeclock-ask-for-project ()
  "Ask the user for the project they are clocking into."
  (completing-read
   (format-prompt "Clock into which project"
                  (or timeclock-last-project
                      (car timeclock-project-list)))
   timeclock-project-list
   nil nil nil nil
   (or timeclock-last-project
       (car timeclock-project-list))))