summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2018-04-20 11:05:56 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2018-04-20 11:05:56 +0200
commit95af956cfd6f6dd3028d561671f2fa4782465aa2 (patch)
treed107a3530388b0263268bcc62408ee71c0e0e95e
parent4d152b994e889d09143b68fe3da9731d69087f2c (diff)
parent8c3d4fbde7989484aa857451beac72b35a9c987c (diff)
downloadorg-mode-95af956cfd6f6dd3028d561671f2fa4782465aa2.tar.gz
Merge branch 'maint'
-rw-r--r--lisp/org.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/org.el b/lisp/org.el
index cabd5cb..50797ee 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -17142,7 +17142,8 @@ NODEFAULT, 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,
-the day or the time, change that.
+the day or the time, change that. If the cursor is on the enclosing
+bracket, change the timestamp type.
With prefix ARG, change by that many units."
(interactive "p")
(org-timestamp-change (prefix-numeric-value arg) nil 'updown))
@@ -17150,7 +17151,8 @@ With prefix ARG, change by that many units."
(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,
-the day or the time, change that.
+the day or the time, change that. If the cursor is on the enclosing
+bracket, change the timestamp type.
With prefix ARG, change by that many units."
(interactive "p")
(org-timestamp-change (- (prefix-numeric-value arg)) nil 'updown))