summaryrefslogtreecommitdiff
path: root/lisp/calendar
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-08-12 00:58:44 +0000
committerRichard M. Stallman <rms@gnu.org>1997-08-12 00:58:44 +0000
commit67f04586c37572504cfe52aed9e0c19ba640767f (patch)
tree03fd6981c2cbf754a90665b4f4a34c33cdd6b176 /lisp/calendar
parent6213b40df636feabde32b54e244b49db6f6e98da (diff)
downloademacs-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')
-rw-r--r--lisp/calendar/cal-tex.el3
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)))))