--pdf-engine-opt
: fix bug where option order was reversed.
Closes #4137.
This commit is contained in:
parent
1a5e494cb5
commit
51c0ae5a66
1 changed files with 1 additions and 1 deletions
|
@ -1405,7 +1405,7 @@ options =
|
||||||
(ReqArg
|
(ReqArg
|
||||||
(\arg opt -> do
|
(\arg opt -> do
|
||||||
let oldArgs = optPdfEngineArgs opt
|
let oldArgs = optPdfEngineArgs opt
|
||||||
return opt { optPdfEngineArgs = arg : oldArgs })
|
return opt { optPdfEngineArgs = oldArgs ++ [arg]})
|
||||||
"STRING")
|
"STRING")
|
||||||
"" -- "Flags to pass to the PDF-engine, all instances of this option are accumulated and used"
|
"" -- "Flags to pass to the PDF-engine, all instances of this option are accumulated and used"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue