On Nov 10, 2010, at 10:47 AM, Samuel Wales wrote:

On 2010-11-10, Carsten Dominik <carsten.domi...@gmail.com> wrote:
You can customize Org to use Due instead if you prefer this shorter
word - even though I think Due is more like DEADLINE.

I was wondering about that. Is the latter hardcoded in important places? e.g.

(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)))

DEADLINE is just an internal key here, it will look for whatever you can configured in org-deadline-string.

- Carsten

   (when time
     (apply 'encode-time (org-parse-time-string time)))))


_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Reply via email to