diff options
| author | John Wiegley | 2008-07-30 02:13:37 +0000 |
|---|---|---|
| committer | John Wiegley | 2008-07-30 02:13:37 +0000 |
| commit | 1661df026fefb564694f3b46ccfb36087bbe68d4 (patch) | |
| tree | cecef71b52592f9e9eb724eb4445d30b9eacc228 | |
| parent | d1dad0b9a42055c130f744fdebe176ad2f728b13 (diff) | |
| download | emacs-1661df026fefb564694f3b46ccfb36087bbe68d4.tar.gz emacs-1661df026fefb564694f3b46ccfb36087bbe68d4.zip | |
* calendar/timeclock.el (timeclock-day-projects): Change a `cdr' to `cddr'.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/calendar/timeclock.el | 2 |
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 @@ | |||
| 1 | 2008-07-30 David Lord <david.lord@phonecoop.coop> | ||
| 2 | |||
| 3 | * calendar/timeclock.el (timeclock-day-projects): Change a `cdr' | ||
| 4 | to `cddr'. | ||
| 5 | |||
| 1 | 2008-07-29 Chong Yidong <cyd@stupidchicken.com> | 6 | 2008-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." |