* lisp/org.el (org-read-date-analyze): Fix typo.

Reported-by: Charles Millar <millarc@verizon.net>
<http://permalink.gmane.org/gmane.emacs.orgmode/94820>
This commit is contained in:
Nicolas Goaziou 2015-02-10 17:41:54 +01:00
parent ae83b37e3e
commit a4083de5c2

View file

@ -16961,7 +16961,7 @@ user."
((nth 4 tl)
(setq futurep t)
(cond ((> month (nth 4 nowdecode)) (nth 5 nowdecode))
((< month (nth 5 nowdecode)) (1+ (nth 5 nowdecode)))
((< month (nth 4 nowdecode)) (1+ (nth 5 nowdecode)))
((< day (nth 3 nowdecode)) (1+ (nth 5 nowdecode)))
(t (nth 5 nowdecode))))
(t (nth 5 org-defdecode)))