aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/calendar/timeclock.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 9a8dc5009cf..30f89ec3fcd 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12008-07-30 David Lord <david.lord@phonecoop.coop>
2
3 * calendar/timeclock.el (timeclock-day-projects): Change a `cdr'
4 to `cddr'.
5
12008-07-29 Chong Yidong <cyd@stupidchicken.com> 62008-07-29 Chong Yidong <cyd@stupidchicken.com>
2 7
3 * Makefile.in (ELCFILES): Add mairix.elc. 8 * Makefile.in (ELCFILES): Add mairix.elc.
diff --git a/lisp/calendar/timeclock.el b/lisp/calendar/timeclock.el
index ff4901e1393..9b223e3caa5 100644
--- a/lisp/calendar/timeclock.el
+++ b/lisp/calendar/timeclock.el
@@ -831,7 +831,7 @@ This is only provided for coherency when used by
831 831
832(defsubst timeclock-day-projects (day) 832(defsubst timeclock-day-projects (day)
833 "Return a list of all the projects in DAY." 833 "Return a list of all the projects in DAY."
834 (timeclock-entry-list-projects (cdr day))) 834 (timeclock-entry-list-projects (cddr day)))
835 835
836(defmacro timeclock-day-list-template (func) 836(defmacro timeclock-day-list-template (func)
837 "Template for summing the result of FUNC on each element of DAY-LIST." 837 "Template for summing the result of FUNC on each element of DAY-LIST."