File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ cli.parseArguments = function ()
9090 table.insert (SILE .input .evaluateAfters , statement )
9191 end
9292 if opts .fontmanager then
93- SILE .forceFontManager = opts .fontmanager
93+ SILE .input . fontmanager = opts .fontmanager
9494 end
9595 if opts .makedeps then
9696 SILE .makeDeps = require (" core.makedeps" )
Original file line number Diff line number Diff line change 66
77fontManager .face = function (self , ...)
88 local manager
9- if SILE .forceFontManager then
10- manager = self [SILE .forceFontManager ]
9+ if SILE .input . fontmanager then
10+ manager = self [SILE .input . fontmanager ]
1111 else
1212 manager = self .macfonts and self .macfonts or self .fontconfig
1313 end
Original file line number Diff line number Diff line change 11SILE = require (" core.sile" )
22SILE .input .backend = " debug"
3- SILE .forceFontManager = " fontconfig"
3+ SILE .input . fontmanager = " fontconfig"
44SILE .init ()
55
66-- These tests depend on loading specific fonts from our test fixtures. Running
Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ pub fn run(
136136 sile_input. set ( "backend" , backend) ?;
137137 }
138138 if let Some ( fontmanager) = fontmanager {
139- sile . set ( "fontmanager" , fontmanager) ?;
139+ sile_input . set ( "fontmanager" , fontmanager) ?;
140140 }
141141 if let Some ( class) = class {
142142 sile_input. set ( "class" , class) ?;
You can’t perform that action at this time.
0 commit comments