Merge branch 'maint'
This commit is contained in:
commit
af7ea548b0
26
lisp/org.el
26
lisp/org.el
|
@ -17481,12 +17481,13 @@ both scheduled and deadline timestamps."
|
||||||
(regexp (org-re-timestamp org-ts-type))
|
(regexp (org-re-timestamp org-ts-type))
|
||||||
(callback
|
(callback
|
||||||
`(lambda ()
|
`(lambda ()
|
||||||
(and ,(if (memq org-ts-type '(active inactive all))
|
(let ((match (match-string 1)))
|
||||||
'(eq (org-element-type (org-element-context)) 'timestamp)
|
(and ,(if (memq org-ts-type '(active inactive all))
|
||||||
'(org-at-planning-p))
|
'(eq (org-element-type (org-element-context)) 'timestamp)
|
||||||
(time-less-p
|
'(org-at-planning-p))
|
||||||
(org-time-string-to-time (match-string 1))
|
(time-less-p
|
||||||
(org-time-string-to-time date))))))
|
(org-time-string-to-time match)
|
||||||
|
(org-time-string-to-time date)))))))
|
||||||
(message "%d entries before %s"
|
(message "%d entries before %s"
|
||||||
(org-occur regexp nil callback) date)))
|
(org-occur regexp nil callback) date)))
|
||||||
|
|
||||||
|
@ -17497,12 +17498,13 @@ both scheduled and deadline timestamps."
|
||||||
(regexp (org-re-timestamp org-ts-type))
|
(regexp (org-re-timestamp org-ts-type))
|
||||||
(callback
|
(callback
|
||||||
`(lambda ()
|
`(lambda ()
|
||||||
(and ,(if (memq org-ts-type '(active inactive all))
|
(let ((match (match-string 1)))
|
||||||
'(eq (org-element-type (org-element-context)) 'timestamp)
|
(and ,(if (memq org-ts-type '(active inactive all))
|
||||||
'(org-at-planning-p))
|
'(eq (org-element-type (org-element-context)) 'timestamp)
|
||||||
(not (time-less-p
|
'(org-at-planning-p))
|
||||||
(org-time-string-to-time (match-string 1))
|
(not (time-less-p
|
||||||
(org-time-string-to-time date)))))))
|
(org-time-string-to-time match)
|
||||||
|
(org-time-string-to-time date))))))))
|
||||||
(message "%d entries after %s"
|
(message "%d entries after %s"
|
||||||
(org-occur regexp nil callback) date)))
|
(org-occur regexp nil callback) date)))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue