From: Bastien Guerry Date: Tue, 12 Feb 2013 14:33:45 +0000 (+0100) Subject: Fix last commit X-Git-Tag: release_8.0-pre~379 X-Git-Url: https://repo.or.cz/w/org-mode.git/commitdiff_plain/060caa8023d1e73d66af34303354d87e7516383e Fix last commit Thanks to Michael Brand for reporting this. --- diff --git a/lisp/org.el b/lisp/org.el index c53ce2bed..589248913 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -12450,7 +12450,7 @@ This function is run automatically after each state change to a DONE state." (org-at-timestamp-p t) (setq ts (match-string 1)) (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts)))) - (org-timestamp-change n (cdr (assoc what whata)) nil t) + (save-excursion (org-timestamp-change n (cdr (assoc what whata)) nil t)) (setq msg (concat msg type " " org-last-changed-timestamp " ")))) (setq org-log-post-message msg) (message "%s" msg))))