From fea435fbf855e9ac2cd3ced80175d64f1bace22c Mon Sep 17 00:00:00 2001 From: Werner Lemberg Date: Sun, 9 Sep 2018 09:46:29 +0200 Subject: [PATCH] [sfnt] Comment improvement. --- src/sfnt/sfdriver.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/sfnt/sfdriver.c b/src/sfnt/sfdriver.c index 460fc9efa..9f7a327bf 100644 --- a/src/sfnt/sfdriver.c +++ b/src/sfnt/sfdriver.c @@ -464,7 +464,12 @@ typedef int (*char_type_func)( int c ); - /* handling of PID/EID 3/0 and 3/1 is the same */ + /* + * Handling of PID/EID 3/0 and 3/1 is the same. The language ID + * restriction to use value 0x409 (US English) comes from OpenType's + * recommendation section + * (https://docs.microsoft.com/en-us/typography/opentype/spec/recom#name). + */ #define IS_WIN( n ) ( (n)->platformID == 3 && \ ( (n)->encodingID == 1 || (n)->encodingID == 0 ) && \ (n)->languageID == 0x409 )