diff options
author | Glenn Morris <rgm@gnu.org> | 2012-08-20 21:10:27 -0400 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2012-08-20 21:10:27 -0400 |
commit | 6d74698e4bc745cf2f5e985b482371ab4a7c49e7 (patch) | |
tree | 2bc2b2fa6bd41c2830b9e7f7f57a991a533e0b2b /lisp/calendar/cal-tex.el | |
parent | 64cde19918824433ac8b0d753ff94cc7bfc36118 (diff) | |
download | emacs-6d74698e4bc745cf2f5e985b482371ab4a7c49e7.tar.gz |
cal-tex small fix
* lisp/calendar/cal-tex.el (cal-tex-cursor-week-iso)
(cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
(cal-tex-cursor-filofax-daily): Correct start date for diary entries.
Diffstat (limited to 'lisp/calendar/cal-tex.el')
-rw-r--r-- | lisp/calendar/cal-tex.el | 20 |
1 files changed, 4 insertions, 16 deletions
diff --git a/lisp/calendar/cal-tex.el b/lisp/calendar/cal-tex.el index c8c80370dfa..3063c657b93 100644 --- a/lisp/calendar/cal-tex.el +++ b/lisp/calendar/cal-tex.el @@ -816,10 +816,7 @@ position to use instead of point." (holidays (if cal-tex-holidays (holiday-in-range d1 d2))) (diary-list (if cal-tex-diary - (cal-tex-list-diary-entries - ;; FIXME d1? - (calendar-absolute-from-gregorian (list month 1 year)) - d2))) + (cal-tex-list-diary-entries d1 d2))) s) (cal-tex-preamble "11pt") (cal-tex-cmd "\\textwidth 6.5in") @@ -1194,10 +1191,7 @@ Optional EVENT indicates a buffer position to use instead of point." (holidays (if cal-tex-holidays (holiday-in-range d1 d2))) (diary-list (if cal-tex-diary - (cal-tex-list-diary-entries - ;; FIXME d1? - (calendar-absolute-from-gregorian (list month 1 year)) - d2)))) + (cal-tex-list-diary-entries d1 d2)))) (cal-tex-preamble "twoside") (cal-tex-cmd "\\textwidth 3.25in") (cal-tex-cmd "\\textheight 6.5in") @@ -1291,10 +1285,7 @@ Optional EVENT indicates a buffer position to use instead of point." (holidays (if cal-tex-holidays (holiday-in-range d1 d2))) (diary-list (if cal-tex-diary - (cal-tex-list-diary-entries - ;; FIXME d1? - (calendar-absolute-from-gregorian (list month 1 year)) - d2)))) + (cal-tex-list-diary-entries d1 d2)))) (cal-tex-preamble "twoside") (cal-tex-cmd "\\textwidth 3.25in") (cal-tex-cmd "\\textheight 6.5in") @@ -1434,10 +1425,7 @@ Optional EVENT indicates a buffer position to use instead of point." (holidays (if cal-tex-holidays (holiday-in-range d1 d2))) (diary-list (if cal-tex-diary - (cal-tex-list-diary-entries - ;; FIXME d1? - (calendar-absolute-from-gregorian (list month 1 year)) - d2)))) + (cal-tex-list-diary-entries d1 d2)))) (cal-tex-preamble "twoside") (cal-tex-cmd "\\textwidth 3.25in") (cal-tex-cmd "\\textheight 6.5in") |