From: Po Lu Date: Mon, 31 Jul 2023 09:59:26 +0000 (+0800) Subject: ; Update Android port X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1e54e565e1f6899d9dbb240d72c30b8af5152232;p=emacs.git ; Update Android port * src/sfntfont.c (sfnt_parse_style): Fix misworded commentary. --- diff --git a/src/sfntfont.c b/src/sfntfont.c index 826c830ece5..72434d5b5d8 100644 --- a/src/sfntfont.c +++ b/src/sfntfont.c @@ -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;