diff options
| author | Edward M. Reingold <reingold@emr.cs.iit.edu> | 1998-06-09 22:30:01 +0000 |
|---|---|---|
| committer | Edward M. Reingold <reingold@emr.cs.iit.edu> | 1998-06-09 22:30:01 +0000 |
| commit | f2ad0664957310ca41e4fef61eafa14982502f77 (patch) | |
| tree | f9dccdb94b0f8257b7d48599efac47c5e566cc7a /lisp | |
| parent | f20d548a4857d585d5780e0ee2ee54eef988a5f3 (diff) | |
| download | emacs-f2ad0664957310ca41e4fef61eafa14982502f77.tar.gz | |
Prevent diary display from being corrupted on printed calendar generation.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/calendar/cal-tex.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/calendar/cal-tex.el b/lisp/calendar/cal-tex.el index 47d179b9c72..265bcd64cec 100644 --- a/lisp/calendar/cal-tex.el +++ b/lisp/calendar/cal-tex.el @@ -203,7 +203,7 @@ 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-list-include-blanks nil) - (diary-display-hook nil)) + (diary-display-hook 'ignore)) (list-diary-entries (calendar-gregorian-from-absolute d1) (1+ (- d2 d1))))) |
