Function: diary-redraw-calendar

diary-redraw-calendar is a byte-compiled function defined in diary-lib.el.gz.

Signature

(diary-redraw-calendar)

Documentation

If calendar-buffer is live and diary entries are marked, redraw it.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/diary-lib.el.gz
;;; Diary mode.

(defun diary-redraw-calendar ()
  "If `calendar-buffer' is live and diary entries are marked, redraw it."
  (and calendar-mark-diary-entries-flag
       (save-excursion
         (calendar-redraw)))
  ;; Return value suitable for `write-contents-functions'.
  nil)