summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2011-07-09 15:26:29 +0200
committerBastien Guerry <bzg@altern.org>2011-07-09 15:26:29 +0200
commita4bbc54d159ec3bbb258fb7359892b48091ff7e5 (patch)
tree0407ef3c431f626953a2cba4097c26a5ccc5a86f
parent65b64bea53e73ea73a4b791a1057b074db144b23 (diff)
downloadorg-mode-a4bbc54d159ec3bbb258fb7359892b48091ff7e5.tar.gz
org.el: org-timestamp-up/down: mention time changes.
* org.el (org-timestamp-up, org-timestamp-down): mention time changes in the docstring.
-rw-r--r--lisp/org.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/org.el b/lisp/org.el
index 515a647..06aa9a4 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -15456,16 +15456,16 @@ hour and minute fields will be nil if not given."
(defun org-timestamp-up (&optional arg)
"Increase the date item at the cursor by one.
-If the cursor is on the year, change the year. If it is on the month or
-the day, change that.
+If the cursor is on the year, change the year. If it is on the month,
+the day or the time, change that.
With prefix ARG, change by that many units."
(interactive "p")
(org-timestamp-change (prefix-numeric-value arg) nil 'updown))
(defun org-timestamp-down (&optional arg)
"Decrease the date item at the cursor by one.
-If the cursor is on the year, change the year. If it is on the month or
-the day, change that.
+If the cursor is on the year, change the year. If it is on the month,
+the day or the time, change that.
With prefix ARG, change by that many units."
(interactive "p")
(org-timestamp-change (- (prefix-numeric-value arg)) nil 'updown))