changeset 97105:1cf204ce38b7

* calendar/timeclock.el (timeclock-day-projects): Change a `cdr' to `cddr'.
author John Wiegley <johnw@newartisans.com>
date Wed, 30 Jul 2008 02:13:37 +0000
parents bb04ab23199c
children 2abff4e5c97f
files lisp/ChangeLog lisp/calendar/timeclock.el
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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 <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.
--- 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."