[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Orgmode] [BUG] more problems with future timestamps
From: |
Łukasz Stelmach |
Subject: |
[Orgmode] [BUG] more problems with future timestamps |
Date: |
Thu, 25 Feb 2010 22:35:24 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/23.1 (gnu/linux) |
EHLo.
I think the following patch should be applied to handle the future
properly. I belive the year is set by the time this part is reached.
At least that is what I observe using ISO dates. When I write 1-2
(1 January) I get it in 2010.
--8<---------------cut here---------------start------------->8---
diff --git a/lisp/org.el b/lisp/org.el
index 8ba782a..3ef2e1c 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -13491,11 +13491,10 @@ user."
(nth 3 tl) (< (nth 3 tl) (nth 3 nowdecode)))
(prog1 (1+ (nth 4 nowdecode)) (setq futurep t))
(nth 4 defdecode)))
- year (or (nth 5 tl)
- (if (and org-read-date-prefer-future
+ year (if (and org-read-date-prefer-future
(nth 4 tl) (< (nth 4 tl) (nth 4 nowdecode)))
(prog1 (1+ (nth 5 nowdecode)) (setq futurep t))
- (nth 5 defdecode)))
+ (nth 5 defdecode))
hour (or (nth 2 tl) (nth 2 defdecode))
minute (or (nth 1 tl) (nth 1 defdecode))
second (or (nth 0 tl) 0)
--8<---------------cut here---------------end--------------->8---
BTW when I write w2 in the org date input minibuffer
Error in post-command-hook: (void-function calendar-absolute-from-iso)
--
Miłego dnia,
Łukasz Stelmach
- [Orgmode] [BUG] more problems with future timestamps,
Łukasz Stelmach <=