From 8c3d4fbde7989484aa857451beac72b35a9c987c Mon Sep 17 00:00:00 2001 From: Andrew Eggenberger Date: Mon, 16 Apr 2018 19:07:41 -0500 Subject: [PATCH] Document `org-timestamp-up' and `org-timestamp-down' behavior * org.el (org-timestamp-up): Document undocumented behavior. (org-timestamp-up): The function changes the timestamp type when the point is on the enclosing bracket. The documentation now reflects that behavior. * org.el (org-timestamp-down): Document undocumented behavior. (org-timestamp-down): The function changes the timestamp type when the point is on the enclosing bracket. The documentation now reflects that behavior. TINYCHANGE --- lisp/org.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index e6080e072..91d00c687 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -17802,7 +17802,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)) @@ -17810,7 +17811,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))