Skip to content

Commit

Permalink
global typesetopts no longer ignored with luatex
Browse files Browse the repository at this point in the history
typo fixed

Update CHANGELOG.md
  • Loading branch information
jlaurens authored and josephwright committed Jun 21, 2024
1 parent c6f0168 commit 3e4cd13
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ this project uses date-based 'snapshot' version identifiers.

### Fixed
- Skip unknown engines correctly in `l3build save`
- global `typesetopts` no longer ignored for `luatex` and `lualatex` (issue \#351)
- Handling of environment settings in some cases (issue \#353)

## [2024-02-08]
Expand Down
2 changes: 1 addition & 1 deletion l3build.lua
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ if forcecheckepoch then
end
if forcedocepoch then
if match(typesetexe,"luatex") or match(typesetexe,"lualatex") then
typesetopts = typsetopts .. " -utc"
typesetopts = typesetopts .. " -utc"
end
end

Expand Down

0 comments on commit 3e4cd13

Please sign in to comment.