Function: org-get-scheduled-time

org-get-scheduled-time is a byte-compiled function defined in org.el.gz.

Signature

(org-get-scheduled-time POM &optional INHERIT)

Documentation

Get the scheduled time as a time tuple, of a format suitable for calling org-schedule with, or if there is no scheduling, returns nil.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-get-scheduled-time (pom &optional inherit)
  "Get the scheduled time as a time tuple, of a format suitable
for calling org-schedule with, or if there is no scheduling,
returns nil."
  (let ((time (org-entry-get pom "SCHEDULED" inherit)))
    (when time
      (org-time-string-to-time time))))