From: Richard M. Stallman Date: Tue, 12 Aug 1997 00:58:44 +0000 (+0000) Subject: (cal-tex-latexify-list): Put the elements of RESULT in the proper order. X-Git-Tag: emacs-20.1~636 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=67f04586c37572504cfe52aed9e0c19ba640767f;p=emacs.git (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. --- 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)))))