From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: agenda mode - carrying over tasks from previous week Date: Wed, 10 Nov 2010 11:05:42 -0600 Message-ID: References: <4FF2B8AD-EE22-4DBC-A3A2-E1F5A03C84EF@gmail.com> <2B4F8E4F-C181-4026-BA68-5BEBF0F76CD6@gmail.com> Mime-Version: 1.0 (Apple Message framework v936) Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Return-path: Received: from [140.186.70.92] (port=47754 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PGE7T-0004XQ-2i for emacs-orgmode@gnu.org; Wed, 10 Nov 2010 12:06:14 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PGE7H-0002eQ-Aq for emacs-orgmode@gnu.org; Wed, 10 Nov 2010 12:05:48 -0500 Received: from mail-gy0-f169.google.com ([209.85.160.169]:45442) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PGE7H-0002eD-7e for emacs-orgmode@gnu.org; Wed, 10 Nov 2010 12:05:47 -0500 Received: by gyd8 with SMTP id 8so619961gyd.0 for ; Wed, 10 Nov 2010 09:05:46 -0800 (PST) In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Samuel Wales Cc: emacs-orgmode , sergio_101 On Nov 10, 2010, at 10:47 AM, Samuel Wales wrote: > On 2010-11-10, Carsten Dominik 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)))))