aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2016-01-30 20:17:56 -0800
committerPaul Eggert2016-01-30 20:18:21 -0800
commit802e6df70b588ae37ebebfffbdbd9d80ec3a9e60 (patch)
tree0660c148aa8eb067e948937b79028c6aa6504837
parent113c9a95aef00f514749b1453ff6117103cc59d8 (diff)
downloademacs-802e6df70b588ae37ebebfffbdbd9d80ec3a9e60.tar.gz
emacs-802e6df70b588ae37ebebfffbdbd9d80ec3a9e60.zip
Spelling fixes
-rw-r--r--admin/notes/bug-triage2
-rw-r--r--src/fontset.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/admin/notes/bug-triage b/admin/notes/bug-triage
index 7392fb96985..648ada4acbf 100644
--- a/admin/notes/bug-triage
+++ b/admin/notes/bug-triage
@@ -20,7 +20,7 @@ the ones that are not reproducible on the current release.
20 reproducible. A bug can and should stay open as long as it is 20 reproducible. A bug can and should stay open as long as it is
21 still a bug and no one has fixed it. The following is a 21 still a bug and no one has fixed it. The following is a
22 suggested checklist to follow for handling these bugs, along with 22 suggested checklist to follow for handling these bugs, along with
23 example replies. The various closings, taggings, etc, are done 23 example replies. Closing, tagging, etc., are done
24 with debbugs control messages, which in debbugs-gnu is initiated 24 with debbugs control messages, which in debbugs-gnu is initiated
25 with a "C". 25 with a "C".
26 [ ] Read the mail thread for the bug. Find out if anyone has 26 [ ] Read the mail thread for the bug. Find out if anyone has
diff --git a/src/fontset.c b/src/fontset.c
index 2bc9bb1fcd9..0485f6bfd44 100644
--- a/src/fontset.c
+++ b/src/fontset.c
@@ -498,7 +498,7 @@ fontset_get_font_group (Lisp_Object fontset, int c)
498 font_group = make_number (0); 498 font_group = make_number (0);
499 if (c >= 0) 499 if (c >= 0)
500 /* Record that FONTSET does not specify fonts for C. As 500 /* Record that FONTSET does not specify fonts for C. As
501 there's a possiblity that a font is found in a fallback 501 there's a possibility that a font is found in a fallback
502 font group, we set 0 at the moment. */ 502 font group, we set 0 at the moment. */
503 char_table_set_range (fontset, from, to, font_group); 503 char_table_set_range (fontset, from, to, font_group);
504 return font_group; 504 return font_group;
@@ -541,7 +541,7 @@ fontset_get_font_group (Lisp_Object fontset, int c)
541 If FALLBACK, search only fallback fonts. */ 541 If FALLBACK, search only fallback fonts. */
542 542
543static Lisp_Object 543static Lisp_Object
544fontset_find_font (Lisp_Object fontset, int c, struct face *face, 544fontset_find_font (Lisp_Object fontset, int c, struct face *face,
545 int charset_id, bool fallback) 545 int charset_id, bool fallback)
546{ 546{
547 Lisp_Object vec, font_group; 547 Lisp_Object vec, font_group;
@@ -585,7 +585,7 @@ fontset_find_font (Lisp_Object fontset, int c, struct face *face,
585 } 585 }
586 586
587 /* Find the first available font in the vector of RFONT-DEF. If 587 /* Find the first available font in the vector of RFONT-DEF. If
588 CHARSET_MATCHED > 0, try the correspoing RFONT-DEF first, then 588 CHARSET_MATCHED > 0, try the corresponding RFONT-DEF first, then
589 try the rest. */ 589 try the rest. */
590 for (i = 0; i < ASIZE (vec); i++) 590 for (i = 0; i < ASIZE (vec); i++)
591 { 591 {