Function: org-get-deadline-time

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

Signature

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

Documentation

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

Source Code

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