Variable: cal-menu-diary-menu

cal-menu-diary-menu is a variable defined in cal-menu.el.gz.

Value

("Diary"
 ["Other File" diary-view-other-diary-entries]
 ["Cursor Date" diary-view-entries]
 ["Mark All" diary-mark-entries]
 ["Show All" diary-show-all-entries]
 ["Insert Diary Entry" diary-insert-entry]
 ["Insert Weekly" diary-insert-weekly-entry]
 ["Insert Monthly" diary-insert-monthly-entry]
 ["Insert Yearly" diary-insert-yearly-entry]
 ["Insert Anniversary" diary-insert-anniversary-entry]
 ["Insert Block" diary-insert-block-entry]
 ["Insert Cyclic" diary-insert-cyclic-entry]
 ("Insert Bahá’í"
  ["One time" diary-bahai-insert-entry]
  ["Monthly" diary-bahai-insert-monthly-entry]
  ["Yearly" diary-bahai-insert-yearly-entry])
 ("Insert Chinese"
  ["One time" diary-chinese-insert-entry]
  ["Monthly" diary-chinese-insert-monthly-entry]
  ["Yearly" diary-chinese-insert-yearly-entry]
  ["Anniversary" diary-chinese-insert-anniversary-entry])
 ("Insert Islamic"
  ["One time" diary-islamic-insert-entry]
  ["Monthly" diary-islamic-insert-monthly-entry]
  ["Yearly" diary-islamic-insert-yearly-entry])
 ("Insert Hebrew"
  ["One time" diary-hebrew-insert-entry]
  ["Monthly" diary-hebrew-insert-monthly-entry]
  ["Yearly" diary-hebrew-insert-yearly-entry]))

Documentation

Key map for "Diary" menu in the calendar.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/cal-menu.el.gz
(defconst cal-menu-diary-menu
  '("Diary"
    ["Other File" diary-view-other-diary-entries]
    ["Cursor Date" diary-view-entries]
    ["Mark All" diary-mark-entries]
    ["Show All" diary-show-all-entries]
    ["Insert Diary Entry" diary-insert-entry]
    ["Insert Weekly" diary-insert-weekly-entry]
    ["Insert Monthly" diary-insert-monthly-entry]
    ["Insert Yearly" diary-insert-yearly-entry]
    ["Insert Anniversary" diary-insert-anniversary-entry]
    ["Insert Block" diary-insert-block-entry]
    ["Insert Cyclic" diary-insert-cyclic-entry]
    ("Insert Bahá’í"
     ["One time" diary-bahai-insert-entry]
     ["Monthly" diary-bahai-insert-monthly-entry]
     ["Yearly" diary-bahai-insert-yearly-entry])
    ("Insert Chinese"
     ["One time" diary-chinese-insert-entry]
     ["Monthly" diary-chinese-insert-monthly-entry]
     ["Yearly" diary-chinese-insert-yearly-entry]
     ["Anniversary" diary-chinese-insert-anniversary-entry])
    ("Insert Islamic"
     ["One time" diary-islamic-insert-entry]
     ["Monthly" diary-islamic-insert-monthly-entry]
     ["Yearly" diary-islamic-insert-yearly-entry])
    ("Insert Hebrew"
     ["One time" diary-hebrew-insert-entry]
     ["Monthly" diary-hebrew-insert-monthly-entry]
     ["Yearly" diary-hebrew-insert-yearly-entry]))
    "Key map for \"Diary\" menu in the calendar.")