Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
1602cb1a
Commit
1602cb1a
authored
Jan 13, 2006
by
Carsten Dominik
Browse files
(org-get-time-of-day): Fixed bug with times before 1am.
parent
82cb4e9a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
lisp/textmodes/org.el
lisp/textmodes/org.el
+1
-1
No files found.
lisp/textmodes/org.el
View file @
1602cb1a
...
...
@@ -5786,7 +5786,7 @@ HH:MM."
(string-to-number (match-string 3 s))
0)))
(t1 (concat " "
(if (< t0 100) "0" "")
(if (< t0 100) "0" "")
(if (< t0 10) "0" "")
(int-to-string t0))))
(if string (concat (substring t1 -4 -2) ":" (substring t1 -2)) t0)))))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment