From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: [PATCH] Re: Re: SOLVED Bug: :clock-keep...not kept [7.5__078c01] Date: Fri, 13 May 2011 14:50:24 +0200 Message-ID: <836F4815-7590-4AE2-A9FE-CA03206FCAF7@gmail.com> References: <83pqoyfgbh.fsf@yahoo.it> <87wrj5335f.fsf@norang.ca> <83ipup6kvz.fsf_-_@yahoo.it> <871v1d2asi.fsf@norang.ca> <87mxk09160.fsf@gnu.org> <83sjtoykfi.fsf_-_@yahoo.it> Mime-Version: 1.0 (Apple Message framework v1084) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([140.186.70.92]:50069) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QKrp8-0000IY-48 for emacs-orgmode@gnu.org; Fri, 13 May 2011 08:50:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QKrp6-0006Ut-TS for emacs-orgmode@gnu.org; Fri, 13 May 2011 08:50:30 -0400 Received: from mail-ew0-f41.google.com ([209.85.215.41]:51060) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QKrp6-0006Ul-Gv for emacs-orgmode@gnu.org; Fri, 13 May 2011 08:50:28 -0400 Received: by ewy9 with SMTP id 9so832686ewy.0 for ; Fri, 13 May 2011 05:50:27 -0700 (PDT) In-Reply-To: <83sjtoykfi.fsf_-_@yahoo.it> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Giovanni Ridolfi Cc: Bastien , Org Mode Applied, thanks On Apr 11, 2011, at 3:41 PM, Giovanni Ridolfi wrote: > Bastien writes: >=20 >> It is indeed fixed in the latest git version. >=20 >=20 > Bastien, >=20 > The :clock-keep option now works, thanks. >=20 > There's a little bug in the Customize interface of clock-keep.=20 >=20 > The :clock-keep *t* option can't be selected with the Customize=20 > interface 'C-c c C ', since its value is 'nil'. >=20 > The following patch fixes it. >=20 > cheers, > Giovanni >=20 >=20 > From: Giovanni Ridolfi > Subject: [PATCH] Fix bug in customize interface of :clock-keep=20 > Date: Mon, 11 Apr 2011 15:07:11 +0200 >=20 >=20 > * lisp/org-capture.el (org-capture-templates): set the value of = :clock-keep to t. >=20 > 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)) >=20 - Carsten