* calendar/timeclock.el (timeclock-day-projects): Change a cdr' to cddr'.

This commit is contained in:
John Wiegley 2008-07-30 02:13:37 +00:00
parent d1dad0b9a4
commit 1661df026f
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2008-07-30 David Lord <david.lord@phonecoop.coop>
* calendar/timeclock.el (timeclock-day-projects): Change a `cdr'
to `cddr'.
2008-07-29 Chong Yidong <cyd@stupidchicken.com>
* Makefile.in (ELCFILES): Add mairix.elc.

View file

@ -831,7 +831,7 @@ This is only provided for coherency when used by
(defsubst timeclock-day-projects (day)
"Return a list of all the projects in DAY."
(timeclock-entry-list-projects (cdr day)))
(timeclock-entry-list-projects (cddr day)))
(defmacro timeclock-day-list-template (func)
"Template for summing the result of FUNC on each element of DAY-LIST."