We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There are several log messages that use a nil variable (fontname):
luaotfload/src/luaotfload-auxiliary.lua
Lines 727 to 731 in 7256136
Lines 736 to 738 in 7256136
Lines 578 to 581 in 7256136
Lines 569 to 573 in 7256136
The text was updated successfully, but these errors were encountered:
Also note that with harfbuzz these messages are not displayed. Compare
\input luaotfload.sty \font\foo={name:TeX Gyre Termes:mode=harf}\foo \directlua{ bool = luaotfload.aux.provides_language(font.current(),'latn','eng') } \end
with
\input luaotfload.sty \font\foo={name:TeX Gyre Terme}\foo \directlua{ bool = luaotfload.aux.provides_language(font.current(),'latn','eng') } \end
Sorry, something went wrong.
Replaced the nil with an actual fontname and increase their log level to 2 since they are at most tracing output.
nil
Thanks!
No branches or pull requests
There are several log messages that use a nil variable (fontname):
luaotfload/src/luaotfload-auxiliary.lua
Lines 727 to 731 in 7256136
luaotfload/src/luaotfload-auxiliary.lua
Lines 736 to 738 in 7256136
luaotfload/src/luaotfload-auxiliary.lua
Lines 578 to 581 in 7256136
luaotfload/src/luaotfload-auxiliary.lua
Lines 569 to 573 in 7256136
In adiition, can these (and the other aux related) messages be optional and only be displayed if asked (with some kind of a debugging option)?
The text was updated successfully, but these errors were encountered: