Function: org-block
org-block is a byte-compiled function defined in org-agenda.el.gz.
Signature
(org-block Y1 M1 D1 Y2 M2 D2 &optional MARK)
Documentation
Like diary-block, but with fixed (ISO) order of arguments.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
(defun org-block (Y1 M1 D1 Y2 M2 D2 &optional mark)
"Like `diary-block', but with fixed (ISO) order of arguments."
(with-no-warnings
(let ((calendar-date-style 'iso))
(diary-block Y1 M1 D1 Y2 M2 D2 mark))))