diff --git a/frontend/document/credocument.lua b/frontend/document/credocument.lua index 2828ad1d4..1697fc0e8 100644 --- a/frontend/document/credocument.lua +++ b/frontend/document/credocument.lua @@ -31,9 +31,11 @@ function CreDocument:engineInit() -- we need to initialize the CRE font list local fonts = Font:getFontList() for _k, _v in ipairs(fonts) do - local ok, err = pcall(cre.registerFont, Font.fontdir..'/'.._v) - if not ok then - DEBUG(err) + if _v ~= "Dingbats.cff" and _v ~= "StandardSymL.cff" then + local ok, err = pcall(cre.registerFont, Font.fontdir..'/'.._v) + if not ok then + Debug(err) + end end end