Cleaner message when repeating an entry.
This commit is contained in:
parent
45cee29929
commit
0e0f5bba8c
|
@ -1,3 +1,8 @@
|
||||||
|
2008-09-25 Bastien Guerry <bzg@altern.org>
|
||||||
|
|
||||||
|
* org.el (org-auto-repeat-maybe): Insert a space between
|
||||||
|
the timestamp's type and the timestamp itself.
|
||||||
|
|
||||||
2008-09-24 Carsten Dominik <dominik@science.uva.nl>
|
2008-09-24 Carsten Dominik <dominik@science.uva.nl>
|
||||||
|
|
||||||
* org-table.el (org-table-sum): Do not format the result with %g,
|
* org-table.el (org-table-sum): Do not format the result with %g,
|
||||||
|
|
|
@ -8113,7 +8113,7 @@ This function is run automatically after each state change to a DONE state."
|
||||||
(setq ts (match-string 1))
|
(setq ts (match-string 1))
|
||||||
(string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([dwmy]\\)" ts))))
|
(string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([dwmy]\\)" ts))))
|
||||||
(org-timestamp-change n (cdr (assoc what whata)))
|
(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)
|
(setq org-log-post-message msg)
|
||||||
(message "%s" msg))))
|
(message "%s" msg))))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue