org-clock: Customizable variable syntax fix

* 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
This commit is contained in:
Tim Howe 2012-05-30 10:35:38 +00:00 committed by Bastien Guerry
parent 0bbc9fa075
commit f88679a399
1 changed files with 20 additions and 20 deletions

View File

@ -248,26 +248,26 @@ string as argument."
:group 'org-clock) :group 'org-clock)
(defcustom org-clocktable-defaults (defcustom org-clocktable-defaults
`(list (list
:maxlevel 2 :maxlevel 2
:lang ,org-export-default-language :lang org-export-default-language
:scope 'file :scope 'file
:block nil :block nil
:tstart nil :tstart nil
:tend nil :tend nil
:step nil :step nil
:stepskip0 nil :stepskip0 nil
:fileskip0 nil :fileskip0 nil
:tags nil :tags nil
:emphasize nil :emphasize nil
:link nil :link nil
:narrow '40! :narrow '40!
:indent t :indent t
:formula nil :formula nil
:timestamp nil :timestamp nil
:level nil :level nil
:tcolumns nil :tcolumns nil
:formatter nil) :formatter nil)
"Default properties for clock tables." "Default properties for clock tables."
:group 'org-clock :group 'org-clock
:version "24.1" :version "24.1"