0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-08-25 23:02:53 +00:00

Bugfix: Don't add CLOSED timestamp when repeating

This commit is contained in:
Carsten Dominik 2009-03-04 00:18:43 +01:00
parent 42cbb29b3e
commit 3b396b0e77
2 changed files with 6 additions and 1 deletions

View file

@ -1,5 +1,8 @@
2009-03-03 Carsten Dominik <carsten.dominik@gmail.com>
* org.el (org-add-planning-info): Fix bug with looking for keyword
only at column 0.
* org-agenda.el (org-agenda-custom-commands-local-options): Add
option for tags filter preset.
(org-prepare-agenda): Store filter preset as a property on the

View file

@ -9297,7 +9297,9 @@ be removed."
(goto-char (match-end 0))
(if (eobp) (insert "\n") (forward-char 1))
(when (and (not what)
(not (looking-at org-keyword-time-not-clock-regexp)))
(not (looking-at
(concat "[ \t]*"
org-keyword-time-not-clock-regexp))))
;; Nothing to add, nothing to remove...... :-)
(throw 'exit nil))
(if (and (not (looking-at outline-regexp))