From 0e0f5bba8cc862a43850316372205ef15455d155 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Thu, 25 Sep 2008 11:27:36 +0200 Subject: [PATCH] Cleaner message when repeating an entry. --- lisp/ChangeLog | 5 +++++ lisp/org.el | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8f2b71fd5..50032fe0f 100755 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2008-09-25 Bastien Guerry + + * org.el (org-auto-repeat-maybe): Insert a space between + the timestamp's type and the timestamp itself. + 2008-09-24 Carsten Dominik * org-table.el (org-table-sum): Do not format the result with %g, diff --git a/lisp/org.el b/lisp/org.el index 398809ddf..3580a07fa 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -8113,7 +8113,7 @@ This function is run automatically after each state change to a DONE state." (setq ts (match-string 1)) (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([dwmy]\\)" ts)))) (org-timestamp-change n (cdr (assoc what whata))) - (setq msg (concat msg type org-last-changed-timestamp " ")))) + (setq msg (concat msg type " " org-last-changed-timestamp " ")))) (setq org-log-post-message msg) (message "%s" msg))))