Made rcParams const

pull/7/head
Matti Pastell 2014-11-27 11:51:21 +02:00
parent 0c34c3d085
commit 550008d910
3 changed files with 27 additions and 25 deletions

Binary file not shown.

View File

@ -17,7 +17,7 @@ type Report
end
global const report = Report("", false, "", "", {}, "", "")
const report = Report("", false, "", "", {}, "", "")
function listformats()
pweave.listformats()

View File

@ -1,8 +1,10 @@
rcParams = {"figdir"=> "figures",
const rcParams = {"figdir"=> "figures",
"usematplotlib"=> true,
"storeresults"=> false,
"cachedir"=> "cache",
"chunk"=> {"defaultoptions"=> {
"chunk"=>
{"defaultoptions"=>
{
"echo"=> true,
"results"=> "verbatim",
"fig"=> true,