diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-08-12 00:58:44 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-08-12 00:58:44 +0000 |
commit | 67f04586c37572504cfe52aed9e0c19ba640767f (patch) | |
tree | 03fd6981c2cbf754a90665b4f4a34c33cdd6b176 /lisp/calendar/cal-tex.el | |
parent | 6213b40df636feabde32b54e244b49db6f6e98da (diff) | |
download | emacs-67f04586c37572504cfe52aed9e0c19ba640767f.tar.gz |
(cal-tex-latexify-list): Put the elements of RESULT in the proper order.
(cal-tex-list-diary-entries): Bind diary-list-include-blanks to nil.
Diffstat (limited to 'lisp/calendar/cal-tex.el')
-rw-r--r-- | lisp/calendar/cal-tex.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/calendar/cal-tex.el b/lisp/calendar/cal-tex.el index 4caa6839115..172f5d5ff84 100644 --- a/lisp/calendar/cal-tex.el +++ b/lisp/calendar/cal-tex.el @@ -212,7 +212,8 @@ This definition is the heart of the calendar!") (defun cal-tex-list-diary-entries (d1 d2) "Generate a list of all diary-entries from absolute date D1 to D2." - (let ((diary-display-hook nil)) + (let ((diary-list-include-blanks nil) + (diary-display-hook nil)) (list-diary-entries (calendar-gregorian-from-absolute d1) (1+ (- d2 d1))))) |