Re: [O] [PATCH] Place `org-clock-heading' outside clock time.

2016-05-23 Thread Nicolas Goaziou
Hello,

Trevor Murphy  writes:

> * org-clock.el (org-clock-get-clock-string): When `org-clock-effort'
>   is nil, arrange the format string components separately, similar to
>   how they are arranged when o-c-e is not-nil.

Applied. Thank you.

Regards,

-- 
Nicolas Goaziou



[O] [PATCH] Place `org-clock-heading' outside clock time.

2016-05-22 Thread Trevor Murphy
* org-clock.el (org-clock-get-clock-string): When `org-clock-effort'
  is nil, arrange the format string components separately, similar to
  how they are arranged when o-c-e is not-nil.
---
 lisp/org-clock.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/org-clock.el b/lisp/org-clock.el
index c72bed4..a7c2a0a 100644
--- a/lisp/org-clock.el
+++ b/lisp/org-clock.el
@@ -682,7 +682,7 @@ If not, show simply the clocked time like 01:50."
  'face 'org-mode-line-clock)))
  (format clockstr work-done-str))
   (org-propertize (concat "[" (org-minutes-to-clocksum-string clocked-time)
- (format " (%s)" org-clock-heading) "]")
+ "]" (format " (%s)" org-clock-heading))
  'face 'org-mode-line-clock
 
 (defun org-clock-get-last-clock-out-time ()
-- 
2.8.2