Function: timeclock-entry-list-projects
timeclock-entry-list-projects is a byte-compiled function defined in
timeclock.el.gz.
Signature
(timeclock-entry-list-projects ENTRY-LIST)
Documentation
Return a list of all the projects in ENTRY-LIST.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/timeclock.el.gz
(defun timeclock-entry-list-projects (entry-list)
"Return a list of all the projects in ENTRY-LIST."
(let (projects)
(dolist (entry entry-list)
(cl-pushnew (timeclock-entry-project entry) projects :test #'equal))
projects))