Applied, thanks On Apr 11, 2011, at 3:41 PM, Giovanni Ridolfi wrote:
> Bastien <b...@altern.org> writes: > >> It is indeed fixed in the latest git version. > > > Bastien, > > The :clock-keep option now works, thanks. > > There's a little bug in the Customize interface of clock-keep. > > The :clock-keep *t* option can't be selected with the Customize > interface 'C-c c C ', since its value is 'nil'. > > The following patch fixes it. > > cheers, > Giovanni > > > From: Giovanni Ridolfi <giovanni.rido...@yahoo.it> > Subject: [PATCH] Fix bug in customize interface of :clock-keep > Date: Mon, 11 Apr 2011 15:07:11 +0200 > > > * lisp/org-capture.el (org-capture-templates): set the value of :clock-keep > to t. > > TinyChange > --- > --- org-capture.el 2011-04-11 00:29:00.000000000 +0200 > +++ org-capture-2.el 2011-04-11 14:41:30.465497600 +0200 > @@ -323,5 +323,5 @@ > ((const :format "%v " :empty-lines) (const 1)) > ((const :format "%v " :clock-in) (const t)) > - ((const :format "%v " :clock-keep) (const nil)) > + ((const :format "%v " :clock-keep) (const t)) > ((const :format "%v " :clock-resume) (const t)) > ((const :format "%v " :unnarrowed) (const t)) > - Carsten