aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPo Lu2023-07-31 17:59:26 +0800
committerPo Lu2023-07-31 17:59:26 +0800
commit1e54e565e1f6899d9dbb240d72c30b8af5152232 (patch)
tree5fe555aa0bdf78a57cffe0bfc506b0ae97177389
parent9cf166db63b7383a94dc47a6a5251c0dbe1dae9b (diff)
downloademacs-1e54e565e1f6899d9dbb240d72c30b8af5152232.tar.gz
emacs-1e54e565e1f6899d9dbb240d72c30b8af5152232.zip
; Update Android port
* src/sfntfont.c (sfnt_parse_style): Fix misworded commentary.
-rw-r--r--src/sfntfont.c7
1 files changed, 4 insertions, 3 deletions
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)
460 desc->slant = 100; 460 desc->slant = 100;
461 desc->width = 100; 461 desc->width = 100;
462 462
463 /* Split the style into spaces. As long as no weight, slant, or 463 /* Split the style into tokens delimited by spaces. Attempt to find
464 width is encountered, look in the corresponding descriptions 464 a token specifying each of the weight, slant, or width attributes
465 array. GC must not happen inside this block. */ 465 using their respective descriptions arrays as a reference. GC
466 must not happen inside this block. */
466 style = SSDATA (Fdowncase (style_name)); 467 style = SSDATA (Fdowncase (style_name));
467 saveptr = NULL; 468 saveptr = NULL;
468 469