org-clock: Add missing space in clock line
* lisp/org-clock.el (org-clock-get-clock-string): Add missing space in clock line when no effort is defined. Reported-by: Allen Li <vianchielfaura@gmail.com> <http://permalink.gmane.org/gmane.emacs.orgmode/110235>
This commit is contained in:
parent
27b10fb265
commit
31a112d4dd
|
@ -679,7 +679,7 @@ If not, show simply the clocked time like 01:50."
|
|||
"] (" (replace-regexp-in-string "%" "%%" org-clock-heading) ")")
|
||||
'face 'org-mode-line-clock)))
|
||||
(format clockstr work-done-str))
|
||||
(propertize (concat "[" (org-minutes-to-clocksum-string clocked-time)
|
||||
(propertize (concat " [" (org-minutes-to-clocksum-string clocked-time)
|
||||
"]" (format " (%s)" org-clock-heading))
|
||||
'face 'org-mode-line-clock))))
|
||||
|
||||
|
|
Loading…
Reference in New Issue