Re: [O] [PATCH] Fix regexps in org-clock.el

2011-12-31 Thread Joe Vornehm Jr.
Thanks -- understood. I checked org-clock.el for uses of org-clock-string in regexps but failed to check other files. Joe V. On Sat, Dec 31, 2011 at 3:06 AM, Carsten Dominik wrote: > Applied, thanks. > > But I have removed the regexp-quote again, because org-clock-string > is used in many more

Re: [O] [PATCH] Fix regexps in org-clock.el

2011-12-31 Thread Carsten Dominik
Applied, thanks. But I have removed the regexp-quote again, because org-clock-string is used in many more regexps, and a more complete patch would be needed to make this change meaningful. - Carsten On 31.12.2011, at 08:34, Joe Vornehm Jr. wrote: > I have been seeing persistent errors of "Canno

[O] [PATCH] Fix regexps in org-clock.el

2011-12-30 Thread Joe Vornehm Jr.
I have been seeing persistent errors of "Cannot restart clock because task does not contain unfinished clock" when auto-resuming a saved (persistent) clock. I believe I've tracked the error down to an extraneous space in a regexp ("^[ \t]* " when it should be "^[ \t]*"). This patch fixes the i