summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2012-12-11 16:53:44 +0100
committerBastien Guerry <bzg@altern.org>2012-12-11 16:53:44 +0100
commit5d673e890a2e8cd4ca320e04e1e823a6d03ef9f8 (patch)
treea72d1f3e39a34d0731468f9028e3ab121e75ba4a
parent1a41eeae1d309afb4d7b92705ccb0627a61a9fca (diff)
downloadorg-mode-5d673e890a2e8cd4ca320e04e1e823a6d03ef9f8.tar.gz
org-agenda.el (org-agenda-schedule, org-agenda-deadline): Fix redundant messages.
* org-agenda.el (org-agenda-schedule, org-agenda-deadline): Fix redundant messages.
-rw-r--r--lisp/org-agenda.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el
index f098c82..8081a94 100644
--- a/lisp/org-agenda.el
+++ b/lisp/org-agenda.el
@@ -8606,7 +8606,7 @@ ARG is passed through to `org-schedule'."
(goto-char pos)
(setq ts (org-schedule arg time)))
(org-agenda-show-new-time marker ts "S"))
- (message "Item scheduled for %s" ts)))
+ (message "%s" ts)))
(defun org-agenda-deadline (arg &optional time)
"Schedule the item at point.
@@ -8626,7 +8626,7 @@ ARG is passed through to `org-deadline'."
(goto-char pos)
(setq ts (org-deadline arg time)))
(org-agenda-show-new-time marker ts "D"))
- (message "Deadline for this item set to %s" ts)))
+ (message "%s" ts)))
(defun org-agenda-clock-in (&optional arg)
"Start the clock on the currently selected item."