emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* [PATCH] Fix clock-in with effort and percent complete cookie
@ 2010-02-20 16:47 Bernt Hansen
  2010-02-20 17:06 ` Carsten Dominik
  0 siblings, 1 reply; 2+ messages in thread
From: Bernt Hansen @ 2010-02-20 16:47 UTC (permalink / raw)
  To: emacs-orgmode; +Cc: Bernt Hansen

Fixes Lisp error: (error "Not enough arguments for format string") when the
task to be clocked in has both a % in the heading due to the [%] cookie and an effort.
---

I had a task "Update environment [90%]" that triggered this error when it
contained an effort estimate.  This commit is available at
git://git.norang.ca/org-mode for-carsten

 lisp/org-clock.el |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/lisp/org-clock.el b/lisp/org-clock.el
index 6e895bf..e3866be 100644
--- a/lisp/org-clock.el
+++ b/lisp/org-clock.el
@@ -405,8 +405,8 @@ pointing to it."
   "Number of seconds between mode line clock string updates.")
 
 (defun org-clock-get-clock-string ()
-  "Form a clock-string, that will be show in the mode line.
-If an effort estimate was defined for current item, use
+  "Form a clock-string, that will be shown in the mode line.
+If an effort estimate was defined for the current item, use
 01:30/01:50 format (clocked/estimated).
 If not, show simply the clocked time like 01:50."
   (let* ((clocked-time (org-clock-get-clocked-time))
@@ -425,7 +425,7 @@ If not, show simply the clocked time like 01:50."
 	       (effort-str (format org-time-clocksum-format effort-h effort-m))
 	       (clockstr (org-propertize
 			  (concat  "[%s/" effort-str
-				   "] (" org-clock-heading ")")
+				   "] (" (replace-regexp-in-string "%" "%%" org-clock-heading) ")")
 			  'face 'org-mode-line-clock)))
 	  (format clockstr work-done-str))
       (org-propertize (format
-- 
1.7.0.14.g7e948

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] Fix clock-in with effort and percent complete cookie
  2010-02-20 16:47 [PATCH] Fix clock-in with effort and percent complete cookie Bernt Hansen
@ 2010-02-20 17:06 ` Carsten Dominik
  0 siblings, 0 replies; 2+ messages in thread
From: Carsten Dominik @ 2010-02-20 17:06 UTC (permalink / raw)
  To: Bernt Hansen; +Cc: emacs-orgmode

Applied, thanks.

- Carsten
On Feb 20, 2010, at 5:47 PM, Bernt Hansen wrote:

> Fixes Lisp error: (error "Not enough arguments for format string")  
> when the
> task to be clocked in has both a % in the heading due to the [%]  
> cookie and an effort.
> ---
>
> I had a task "Update environment [90%]" that triggered this error  
> when it
> contained an effort estimate.  This commit is available at
> git://git.norang.ca/org-mode for-carsten
>
> lisp/org-clock.el |    6 +++---
> 1 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/lisp/org-clock.el b/lisp/org-clock.el
> index 6e895bf..e3866be 100644
> --- a/lisp/org-clock.el
> +++ b/lisp/org-clock.el
> @@ -405,8 +405,8 @@ pointing to it."
>   "Number of seconds between mode line clock string updates.")
>
> (defun org-clock-get-clock-string ()
> -  "Form a clock-string, that will be show in the mode line.
> -If an effort estimate was defined for current item, use
> +  "Form a clock-string, that will be shown in the mode line.
> +If an effort estimate was defined for the current item, use
> 01:30/01:50 format (clocked/estimated).
> If not, show simply the clocked time like 01:50."
>   (let* ((clocked-time (org-clock-get-clocked-time))
> @@ -425,7 +425,7 @@ If not, show simply the clocked time like 01:50."
> 	       (effort-str (format org-time-clocksum-format effort-h effort- 
> m))
> 	       (clockstr (org-propertize
> 			  (concat  "[%s/" effort-str
> -				   "] (" org-clock-heading ")")
> +				   "] (" (replace-regexp-in-string "%" "%%" org-clock-heading)  
> ")")
> 			  'face 'org-mode-line-clock)))
> 	  (format clockstr work-done-str))
>       (org-propertize (format
> -- 
> 1.7.0.14.g7e948
>
>
>
> _______________________________________________
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode

- Carsten

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-02-20 17:06 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-02-20 16:47 [PATCH] Fix clock-in with effort and percent complete cookie Bernt Hansen
2010-02-20 17:06 ` Carsten Dominik

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).