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:
Nicolas Goaziou 2016-11-12 01:09:00 +01:00
parent 27b10fb265
commit 31a112d4dd

View file

@ -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))))