Function: diary-insert-entry

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

Signature

(diary-insert-entry ARG &optional EVENT)

Documentation

Insert a diary entry for the date indicated by point.

Prefix argument ARG makes the entry nonmarking.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/diary-lib.el.gz
;;;###cal-autoload
(defun diary-insert-entry (arg &optional event)
  "Insert a diary entry for the date indicated by point.
Prefix argument ARG makes the entry nonmarking."
  (interactive
   (list current-prefix-arg last-nonmenu-event))
  (diary-make-entry (calendar-date-string (calendar-cursor-to-date t event) t t)
                    arg))