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)
(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"