summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2015-06-02 15:39:50 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2015-06-02 15:39:50 +0200
commit7b333c72493a66eac35d9246fb689b6f18cbd2e7 (patch)
treece1cb0093664e5f8e43112c007b1e75b94b83287
parent1a7364177046b8a57ade0aeb9f52bacfc0b8b088 (diff)
downloadorg-mode-7b333c72493a66eac35d9246fb689b6f18cbd2e7.tar.gz
Fix typo
* lisp/org.el (org-check-before-date): (org-check-after-date): (org-check-dates-range): Fix typo. Reported-by: Michael Strey <mstrey@strey.biz> <http://permalink.gmane.org/gmane.emacs.orgmode/98094>
-rwxr-xr-xlisp/org.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/org.el b/lisp/org.el
index 2594217..510c643 100755
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -17415,7 +17415,7 @@ both scheduled and deadline timestamps."
(callback
`(lambda ()
(and ,(if (memq org-ts-type '(active inactive all))
- '(eq (org-element-type (org-element-context) 'timestamp))
+ '(eq (org-element-type (org-element-context)) 'timestamp)
'(org-at-planning-p))
(time-less-p
(org-time-string-to-time (match-string 1))
@@ -17431,7 +17431,7 @@ both scheduled and deadline timestamps."
(callback
`(lambda ()
(and ,(if (memq org-ts-type '(active inactive all))
- '(eq (org-element-type (org-element-context) 'timestamp))
+ '(eq (org-element-type (org-element-context)) 'timestamp)
'(org-at-planning-p))
(not (time-less-p
(org-time-string-to-time (match-string 1))
@@ -17450,7 +17450,7 @@ both scheduled and deadline timestamps."
(let ((match (match-string 1)))
(and
,(if (memq org-ts-type '(active inactive all))
- '(eq (org-element-type (org-element-context) 'timestamp))
+ '(eq (org-element-type (org-element-context)) 'timestamp)
'(org-at-planning-p))
(not (time-less-p
(org-time-string-to-time match)