emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* [PATCH] Fixed bug in custom timestamps for date ranges.
@ 2017-07-06  9:09 Jan Seeger
  2017-07-06 12:58 ` Kaushal Modi
  0 siblings, 1 reply; 4+ messages in thread
From: Jan Seeger @ 2017-07-06  9:09 UTC (permalink / raw)
  To: emacs-orgmode; +Cc: Jan Seeger

Changed org-activate-dates to activate custom timestamps for both
dates in date ranges. Formerly, only the second date would be
activated. The reason was a misplaced "if". Replaced it with "when".
---
 lisp/org.el | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/lisp/org.el b/lisp/org.el
index ab0bde1ef..f000c8f24 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -6105,9 +6105,11 @@ by a #."
 			       'keymap org-mouse-map))
     (org-rear-nonsticky-at (match-end 0))
     (when org-display-custom-times
-      (if (match-end 3)
-	  (org-display-custom-time (match-beginning 3) (match-end 3))
-	(org-display-custom-time (match-beginning 1) (match-end 1))))
+      ;; If it's a date range, activate custom time for second date
+      (when (match-end 3)
+	(org-display-custom-time (match-beginning 3) (match-end 3)))
+      ;; Always  activate custom time for first matched date
+      (org-display-custom-time (match-beginning 1) (match-end 1)))
     t))
 
 (defvar-local org-target-link-regexp nil
-- 
2.13.0

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2017-07-06 17:22 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-07-06  9:09 [PATCH] Fixed bug in custom timestamps for date ranges Jan Seeger
2017-07-06 12:58 ` Kaushal Modi
2017-07-06 15:19   ` [PATCH] org.el: Fix " Jan Seeger
2017-07-06 17:22     ` Nicolas Goaziou

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).