Function: diary-insert-weekly-entry

diary-insert-weekly-entry is an autoloaded, interactive and byte-compiled function defined in diary-lib.el.gz.

Signature

(diary-insert-weekly-entry ARG)

Documentation

Insert a weekly diary entry for the day of the week indicated by point.

Prefix argument ARG makes the entry nonmarking.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/diary-lib.el.gz
;;;###cal-autoload
(defun diary-insert-weekly-entry (arg)
  "Insert a weekly diary entry for the day of the week indicated by point.
Prefix argument ARG makes the entry nonmarking."
  (interactive "P")
  (diary-make-entry (calendar-day-name (calendar-cursor-to-date t))
                    arg))