Revert actionable repeaters in inactive timestamps
* lisp/org.el (org-repeat-re): Repeaters are for active timestamps only. * testing/lisp/test-org.el (test-org/auto-repeat-maybe): Update test. Reported-by: cesar mena <cesar.mena@gmail.com> <http://lists.gnu.org/r/emacs-orgmode/2019-01/msg00095.html>
This commit is contained in:
parent
5fe9e6cbea
commit
5e47e49832
|
@ -675,7 +675,7 @@ on a string that terminates immediately after the date.")
|
|||
The time stamps may be either active or inactive.")
|
||||
|
||||
(defconst org-repeat-re
|
||||
"[[<][0-9]\\{4\\}-[0-9][0-9]-[0-9][0-9] [^]>\n]*?\
|
||||
"<[0-9]\\{4\\}-[0-9][0-9]-[0-9][0-9] [^>\n]*?\
|
||||
\\([.+]?\\+[0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)"
|
||||
"Regular expression for specifying repeated events.
|
||||
After a match, group 1 contains the repeat expression.")
|
||||
|
|
|
@ -6638,8 +6638,8 @@ Paragraph<point>"
|
|||
(org-test-with-temp-text "* TODO H\n<2012-03-29 Thu +2h>"
|
||||
(org-todo "DONE")
|
||||
(buffer-string))))
|
||||
;; Also repeat inactive time stamps with a repeater.
|
||||
(should
|
||||
;; Do not repeat inactive time stamps with a repeater.
|
||||
(should-not
|
||||
(string-match-p
|
||||
"\\[2014-03-29 .* \\+2y\\]"
|
||||
(let ((org-todo-keywords '((sequence "TODO" "DONE"))))
|
||||
|
|
Loading…
Reference in New Issue