Function: org-date

org-date is a byte-compiled function defined in org-agenda.el.gz.

Signature

(org-date YEAR MONTH DAY &optional MARK)

Documentation

Like diary-date, but with fixed (ISO) order of arguments.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
(defun org-date (year month day &optional mark)
  "Like `diary-date', but with fixed (ISO) order of arguments."
  (with-no-warnings
    (let ((calendar-date-style 'iso))
      (diary-date year month day mark))))