]> git.eshelyaron.com Git - emacs.git/commitdiff
Save more information into Android font names
authorPo Lu <luangruo@yahoo.com>
Tue, 21 Nov 2023 06:18:04 +0000 (14:18 +0800)
committerPo Lu <luangruo@yahoo.com>
Tue, 21 Nov 2023 06:18:04 +0000 (14:18 +0800)
* src/sfntfont.c (sfntfont_open): Besides just the font file
name, also store the interpreter state, UPEM, charset and
instance number in FONT_FULLNAME_INDEX.

src/sfntfont.c

index 39b250ac11ef2518366e1743922993cb213cfac7..68e850779fc40a4f53aa21227d5f96be77e427d4 100644 (file)
@@ -3392,12 +3392,22 @@ sfntfont_open (struct frame *f, Lisp_Object font_entity,
             (Vvertical_centering_font_regexp,
              font->props[FONT_NAME_INDEX]) >= 0));
 
-  /* And set a reasonable full name, namely the name of the font
-     file.  */
-  font->props[FONT_FULLNAME_INDEX]
-    = font->props[FONT_FILE_INDEX]
+  /* Set the name of the font file.  */
+  font->props[FONT_FILE_INDEX]
     = DECODE_FILE (build_unibyte_string (desc->path));
 
+  /* Encapsulate some information on the font useful while debugging
+     (along with being informative in general) in the font name.  */
+
+  AUTO_STRING (format, "%s %s interpreted: %s upem: %s charset: %s"
+              " instance: %s");
+  font->props[FONT_FULLNAME_INDEX]
+    = CALLN (Fformat, format, desc->family, desc->style,
+            font_info->interpreter ? Qt : Qnil,
+            make_fixnum (font_info->head->units_per_em),
+            CHARSET_NAME (charset),
+            make_fixnum (instance));
+
   /* All done.  */
   unblock_input ();
   return font_object;