Function: cal-tex-insert-day-names

cal-tex-insert-day-names is a byte-compiled function defined in cal-tex.el.gz.

Signature

(cal-tex-insert-day-names)

Documentation

Insert the names of the days at top of a monthly calendar.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/cal-tex.el.gz
(defun cal-tex-insert-day-names ()
  "Insert the names of the days at top of a monthly calendar."
  (let (j)
    (dotimes (i 7)
      (if (memq (setq j (mod (+ calendar-week-start-day i) 7))
                cal-tex-which-days)
          (insert (format cal-tex-day-name-format
                          (cal-tex-LaTeXify-string
                           (aref calendar-day-name-array j)))))
      (cal-tex-comment))))