Function: org-get-date-from-calendar

org-get-date-from-calendar is a byte-compiled function defined in org.el.gz.

Signature

(org-get-date-from-calendar)

Documentation

Return a list (month day year) of date at point in calendar.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-get-date-from-calendar ()
  "Return a list (month day year) of date at point in calendar."
  (with-current-buffer "*Calendar*"
    (save-match-data
      (calendar-cursor-to-date))))