On Feb 27, 2010, at 1:29 PM, Łukasz Stelmach wrote:

Hello.

I've tried to rearrange org-read-date and some other helper function to make them usable from other applications which might not want to prefere future dates. Unfortunatelly I can't do it without making org-read- date *require* additional argument (prefer-future) everytime it is called in
orgmode like this:

(org-read-date ... org-read-date-prefer-future)


Ah, may be this is what this is about:

(defun org-my-read-date (&optional prefer-future)
   (let ((org-read-date-prefer-future prefer-future))
      (org-read-date)))

?????

- Carsten
        

_______________________________________________
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