emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* [PATCH v2] Timestamps: Handle sub-10-min ranges when updating timestamps
@ 2013-08-08 23:30 Trevor Murphy
  2013-08-10  8:16 ` Nicolas Goaziou
  0 siblings, 1 reply; 2+ messages in thread
From: Trevor Murphy @ 2013-08-08 23:30 UTC (permalink / raw)
  To: emacs-orgmode; +Cc: n.goaziou

* lisp/org.el (org-get-compact-tod): Always pad minutes to two places.

TINYCHANGE
---
 lisp/org.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/org.el b/lisp/org.el
index b1a2fa8..e13c2b8 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -16077,7 +16077,7 @@ with the current time without prompting the user."
 	(setq dh (- h2 h1) dm (- m2 m1))
 	(if (< dm 0) (setq dm (+ dm 60) dh (1- dh)))
 	(concat t1 "+" (number-to-string dh)
-		(if (/= 0 dm) (concat ":" (number-to-string dm))))))))
+		(and (/= 0 dm) (format ":%02d" dm)))))))
 
 (defun org-time-stamp-inactive (&optional arg)
   "Insert an inactive time stamp.
--
1.8.3.4

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

* Re: [PATCH v2] Timestamps: Handle sub-10-min ranges when updating timestamps
  2013-08-08 23:30 [PATCH v2] Timestamps: Handle sub-10-min ranges when updating timestamps Trevor Murphy
@ 2013-08-10  8:16 ` Nicolas Goaziou
  0 siblings, 0 replies; 2+ messages in thread
From: Nicolas Goaziou @ 2013-08-10  8:16 UTC (permalink / raw)
  To: Trevor Murphy; +Cc: emacs-orgmode

Hello,

Trevor Murphy <trevor.m.murphy@gmail.com> writes:

> * lisp/org.el (org-get-compact-tod): Always pad minutes to two places.
>
> TINYCHANGE

Applied. Thank you.


Regards,

-- 
Nicolas Goaziou

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

end of thread, other threads:[~2013-08-10  8:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-08-08 23:30 [PATCH v2] Timestamps: Handle sub-10-min ranges when updating timestamps Trevor Murphy
2013-08-10  8:16 ` 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).