From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Guerry Subject: [Accepted] org-clock: Customizable variable syntax fix Date: Tue, 10 Jul 2012 11:15:29 +0200 (CEST) Message-ID: <20120710091529.B9DD28206@myhost.localdomain> References: <1338356138-18503-1-git-send-email-vsync@quadium.net> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([208.118.235.92]:57813) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SoWX6-0004r6-Gx for emacs-orgmode@gnu.org; Tue, 10 Jul 2012 05:15:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SoWWy-0002rO-VO for emacs-orgmode@gnu.org; Tue, 10 Jul 2012 05:15:00 -0400 Received: from mail-wg0-f49.google.com ([74.125.82.49]:33505) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SoWWy-0002r9-Lb for emacs-orgmode@gnu.org; Tue, 10 Jul 2012 05:14:52 -0400 Received: by wgbds1 with SMTP id ds1so8896730wgb.30 for ; Tue, 10 Jul 2012 02:14:50 -0700 (PDT) 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: emacs-orgmode@gnu.org Patch 1343 (http://patchwork.newartisans.com/patch/1343/) is now "Accepted". Maintainer comment: none This relates to the following submission: http://mid.gmane.org/%3C1338356138-18503-1-git-send-email-vsync%40quadium.net%3E Here is the original message containing the patch: > Content-Type: text/plain; charset="utf-8" > MIME-Version: 1.0 > Content-Transfer-Encoding: 7bit > Subject: [O] org-clock: Customizable variable syntax fix > Date: Wed, 30 May 2012 10:35:38 -0000 > From: Tim Howe > X-Patchwork-Id: 1343 > Message-Id: <1338356138-18503-1-git-send-email-vsync@quadium.net> > To: emacs-orgmode@gnu.org > > * org-clock.el (org-clocktable-defaults): Revert extra layer of quoting. > > It appears the goal in 9b23f082 was to allow defaulting a plist member > to a variable; however the plist was being constructed with LIST and > therefore the `, combination was unnecessary. > > TINYCHANGE > > --- > lisp/org-clock.el | 40 ++++++++++++++++++++-------------------- > 1 files changed, 20 insertions(+), 20 deletions(-) > > diff --git a/lisp/org-clock.el b/lisp/org-clock.el > index 70c015b..fe3e154 100644 > --- a/lisp/org-clock.el > +++ b/lisp/org-clock.el > @@ -248,26 +248,26 @@ string as argument." > :group 'org-clock) > > (defcustom org-clocktable-defaults > - `(list > - :maxlevel 2 > - :lang ,org-export-default-language > - :scope 'file > - :block nil > - :tstart nil > - :tend nil > - :step nil > - :stepskip0 nil > - :fileskip0 nil > - :tags nil > - :emphasize nil > - :link nil > - :narrow '40! > - :indent t > - :formula nil > - :timestamp nil > - :level nil > - :tcolumns nil > - :formatter nil) > + (list > + :maxlevel 2 > + :lang org-export-default-language > + :scope 'file > + :block nil > + :tstart nil > + :tend nil > + :step nil > + :stepskip0 nil > + :fileskip0 nil > + :tags nil > + :emphasize nil > + :link nil > + :narrow '40! > + :indent t > + :formula nil > + :timestamp nil > + :level nil > + :tcolumns nil > + :formatter nil) > "Default properties for clock tables." > :group 'org-clock > :version "24.1" >