]> git.eshelyaron.com Git - emacs.git/commitdiff
; Update Android port
authorPo Lu <luangruo@yahoo.com>
Mon, 31 Jul 2023 09:59:26 +0000 (17:59 +0800)
committerPo Lu <luangruo@yahoo.com>
Mon, 31 Jul 2023 09:59:26 +0000 (17:59 +0800)
* src/sfntfont.c (sfnt_parse_style): Fix misworded commentary.

src/sfntfont.c

index 826c830ece5c49f8e4c96f68122318d0669aee56..72434d5b5d88ba45e9d5fbee76b3a1198e986d12 100644 (file)
@@ -460,9 +460,10 @@ sfnt_parse_style (Lisp_Object style_name, struct sfnt_font_desc *desc)
   desc->slant = 100;
   desc->width = 100;
 
-  /* Split the style into spaces.  As long as no weight, slant, or
-     width is encountered, look in the corresponding descriptions
-     array.  GC must not happen inside this block.  */
+  /* Split the style into tokens delimited by spaces.  Attempt to find
+     a token specifying each of the weight, slant, or width attributes
+     using their respective descriptions arrays as a reference.  GC
+     must not happen inside this block.  */
   style = SSDATA (Fdowncase (style_name));
   saveptr = NULL;