summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2010-09-02 17:48:24 +0200
committerBastien Guerry <bzg@altern.org>2010-09-02 17:48:24 +0200
commit7b188f7da5797da7ae225b89239f87adf0135959 (patch)
tree488b918cd5ccfc3b236aa16bf19cfb0e194400a2
parentf2acd5e8d1d95c23213f1a41cb7c38dea46826b3 (diff)
downloadorg-mode-7b188f7da5797da7ae225b89239f87adf0135959.tar.gz
Second fix for the time-grid problem.
-rw-r--r--lisp/org-agenda.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el
index 90c6935..e036b18 100644
--- a/lisp/org-agenda.el
+++ b/lisp/org-agenda.el
@@ -5118,7 +5118,7 @@ The modified list may contain inherited tags, and tags matched by
(throw 'exit list))
(while (setq time (pop gridtimes))
(unless (and remove (member time have))
- (setq time (format "%2d" time))
+ (setq time (format "%4d" time))
(push (org-format-agenda-item
nil string "" nil
(concat (substring time 0 -2) ":" (substring time -2)))