Taco Hoekwater wrote:
Paweł Jackowski wrote:
Hi,
at rev3168 (possibly quite some earlier) I get the following on attempt
to load opentype font:
luatex_find_file(): do not know how to handle file
c:/TeX/texmf-dist/fonts/opentype/public/lm/LMRoman10-Regular.otf of
type 23
This is new code, the message is just a reminder for myself. I'll
fix it tomorrow.
Agh ok, thank you. This is what worked for me for tonights workaround :)
Index: texfileio.c
===================================================================
--- texfileio.c (revision 3170)
+++ texfileio.c (working copy)
@@ -153,6 +153,12 @@
case find_type1_file_callback:
ftemp = kpse_find_file(s, kpse_type1_format, 0);
break;
+ case find_truetype_file_callback:
+ ftemp = kpse_find_file(s, kpse_truetype_format, 0);
+ break;
+ case find_opentype_file_callback:
+ ftemp = kpse_find_file(s, kpse_opentype_format, 0);
+ break;
case find_ocp_file_callback:
ftemp = kpse_find_file(s, kpse_ocp_format, 0);
break;
--
Pawe/l Jackowski
[email protected]
_______________________________________________
dev-luatex mailing list
[email protected]
http://www.ntg.nl/mailman/listinfo/dev-luatex