From mboxrd@z Thu Jan 1 00:00:00 1970 From: Giovanni Ridolfi Subject: [PATCH] Re: Re: SOLVED Bug: :clock-keep...not kept [7.5__078c01] Date: Mon, 11 Apr 2011 15:41:37 +0200 Message-ID: <83sjtoykfi.fsf_-_@yahoo.it> References: <83pqoyfgbh.fsf@yahoo.it> <87wrj5335f.fsf@norang.ca> <83ipup6kvz.fsf_-_@yahoo.it> <871v1d2asi.fsf@norang.ca> <87mxk09160.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from [140.186.70.92] (port=33705 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Q9HMR-00038A-O6 for emacs-orgmode@gnu.org; Mon, 11 Apr 2011 09:41:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Q9HM3-0004Ox-OT for emacs-orgmode@gnu.org; Mon, 11 Apr 2011 09:40:38 -0400 Received: from nm17.bullet.mail.ukl.yahoo.com ([217.146.183.191]:24304) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1Q9HM3-0004Of-Co for emacs-orgmode@gnu.org; Mon, 11 Apr 2011 09:40:35 -0400 In-Reply-To: <87mxk09160.fsf@gnu.org> (Bastien's message of "Fri, 08 Apr 2011 18:07:51 +0200") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Bastien Cc: Org Mode Bastien 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 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))