Deadlines: Deal with "incorrect" positioning of warning period
This commit is contained in:
parent
950334edb3
commit
54adaa4f9f
|
@ -1,3 +1,8 @@
|
|||
2009-02-18 Carsten Dominik <carsten.dominik@gmail.com>
|
||||
|
||||
* org.el (org-get-wdays): Find the warning period also if it is in
|
||||
the wrong place.
|
||||
|
||||
2009-02-17 Carsten Dominik <carsten.dominik@gmail.com>
|
||||
|
||||
* org.el (org-olpath-completing-read): Never use ido for this
|
||||
|
|
|
@ -11779,7 +11779,7 @@ Don't touch the rest."
|
|||
((<= org-deadline-warning-days 0)
|
||||
;; 0 or negative, enforce this value no matter what
|
||||
(- org-deadline-warning-days))
|
||||
((string-match "-\\([0-9]+\\)\\([dwmy]\\)\\(\\'\\|>\\)" ts)
|
||||
((string-match "-\\([0-9]+\\)\\([dwmy]\\)\\(\\'\\|>\\| \\)" ts)
|
||||
;; lead time is specified.
|
||||
(floor (* (string-to-number (match-string 1 ts))
|
||||
(cdr (assoc (match-string 2 ts)
|
||||
|
|
Loading…
Reference in New Issue