From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tim Howe Subject: [PATCH] org-clock: Customizable variable syntax fix Date: Wed, 30 May 2012 01:35:38 -0400 Message-ID: <1338356138-18503-1-git-send-email-vsync@quadium.net> Return-path: Received: from eggs.gnu.org ([208.118.235.92]:37301) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SZbiO-0002Qn-7c for emacs-orgmode@gnu.org; Wed, 30 May 2012 01:45:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SZbiM-00048f-Fc for emacs-orgmode@gnu.org; Wed, 30 May 2012 01:44:59 -0400 Received: from blister.quadium.net ([69.55.236.109]:62233) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SZbiM-00048Y-9h for emacs-orgmode@gnu.org; Wed, 30 May 2012 01:44:58 -0400 Received: from rash.fl.quadium.net (blister [69.55.236.109]) by blister.quadium.net (Postfix) with ESMTP id C04C0420D3 for ; Tue, 29 May 2012 22:35:38 -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 * 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" -- 1.7.8.4