texlive[42460] Build/source/texk/kpathsea: kpathsea: Add ".OTF" as a

commits+kakuto at tug.org commits+kakuto at tug.org
Tue Nov 8 06:09:00 CET 2016


Revision: 42460
          http://tug.org/svn/texlive?view=revision&revision=42460
Author:   kakuto
Date:     2016-11-08 06:09:00 +0100 (Tue, 08 Nov 2016)
Log Message:
-----------
kpathsea: Add ".OTF" as a suffix of OpenType fonts

Modified Paths:
--------------
    trunk/Build/source/texk/kpathsea/ChangeLog
    trunk/Build/source/texk/kpathsea/tex-file.c

Modified: trunk/Build/source/texk/kpathsea/ChangeLog
===================================================================
--- trunk/Build/source/texk/kpathsea/ChangeLog	2016-11-08 02:16:20 UTC (rev 42459)
+++ trunk/Build/source/texk/kpathsea/ChangeLog	2016-11-08 05:09:00 UTC (rev 42460)
@@ -1,3 +1,7 @@
+2016-11-08  Akira Kakuto  <kakuto at fuk.kindai.ac.jp>
+
+	* tex-file.c: Add ".OTF" as a suffix of OpenType fonts.
+
 2016-11-02  Karl Berry  <karl at tug.org>
 
 	* mktexdir: try a silent mkdir before a non-silent mkdir,

Modified: trunk/Build/source/texk/kpathsea/tex-file.c
===================================================================
--- trunk/Build/source/texk/kpathsea/tex-file.c	2016-11-08 02:16:20 UTC (rev 42459)
+++ trunk/Build/source/texk/kpathsea/tex-file.c	2016-11-08 05:09:00 UTC (rev 42460)
@@ -771,7 +771,8 @@
       break;
     case kpse_opentype_format:
       INIT_FORMAT ("opentype fonts", DEFAULT_OPENTYPEFONTS, OPENTYPE_ENVS);
-      SUFFIXES (".otf");
+#define OPENTYPE_SUFFIXES ".otf", ".OTF"
+      SUFFIXES (OPENTYPE_SUFFIXES);
       FMT_INFO.suffix_search_only = true;
       FMT_INFO.binmode = true;
       break;



More information about the tex-live-commits mailing list