# HG changeset patch # User John Wiegley # Date 1217384017 0 # Node ID 1cf204ce38b70754ff9321ca1a4730996fcc4a54 # Parent bb04ab23199c8b7bcb1ca19bfc8b1c08cee9614f * calendar/timeclock.el (timeclock-day-projects): Change a `cdr' to `cddr'. diff -r bb04ab23199c -r 1cf204ce38b7 lisp/ChangeLog --- a/lisp/ChangeLog Tue Jul 29 20:36:09 2008 +0000 +++ b/lisp/ChangeLog Wed Jul 30 02:13:37 2008 +0000 @@ -1,3 +1,8 @@ +2008-07-30 David Lord + + * calendar/timeclock.el (timeclock-day-projects): Change a `cdr' + to `cddr'. + 2008-07-29 Chong Yidong * Makefile.in (ELCFILES): Add mairix.elc. diff -r bb04ab23199c -r 1cf204ce38b7 lisp/calendar/timeclock.el --- a/lisp/calendar/timeclock.el Tue Jul 29 20:36:09 2008 +0000 +++ b/lisp/calendar/timeclock.el Wed Jul 30 02:13:37 2008 +0000 @@ -831,7 +831,7 @@ (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."