diff options
| author | John Paul Wallington | 2004-04-20 00:26:36 +0000 |
|---|---|---|
| committer | John Paul Wallington | 2004-04-20 00:26:36 +0000 |
| commit | 4ce2719dbb375450ba88d8aab4b4bb904d5af530 (patch) | |
| tree | a43d2020afbecf90c1ce6f4a7d1886aacd956d72 /src/fontset.c | |
| parent | 474d05350a11c173e90458485e72f50d94acfb30 (diff) | |
| download | emacs-4ce2719dbb375450ba88d8aab4b4bb904d5af530.tar.gz emacs-4ce2719dbb375450ba88d8aab4b4bb904d5af530.zip | |
(regularize_fontname): Renamed from regulalize_fontname.
Diffstat (limited to 'src/fontset.c')
| -rw-r--r-- | src/fontset.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/fontset.c b/src/fontset.c index 6ed1efff092..1a7fdb29041 100644 --- a/src/fontset.c +++ b/src/fontset.c | |||
| @@ -194,7 +194,7 @@ static Lisp_Object make_fontset P_ ((Lisp_Object, Lisp_Object, Lisp_Object)); | |||
| 194 | static int fontset_id_valid_p P_ ((int)); | 194 | static int fontset_id_valid_p P_ ((int)); |
| 195 | static Lisp_Object fontset_pattern_regexp P_ ((Lisp_Object)); | 195 | static Lisp_Object fontset_pattern_regexp P_ ((Lisp_Object)); |
| 196 | static Lisp_Object font_family_registry P_ ((Lisp_Object, int)); | 196 | static Lisp_Object font_family_registry P_ ((Lisp_Object, int)); |
| 197 | static Lisp_Object regulalize_fontname P_ ((Lisp_Object)); | 197 | static Lisp_Object regularize_fontname P_ ((Lisp_Object)); |
| 198 | 198 | ||
| 199 | 199 | ||
| 200 | /********** MACROS AND FUNCTIONS TO HANDLE FONTSET **********/ | 200 | /********** MACROS AND FUNCTIONS TO HANDLE FONTSET **********/ |
| @@ -1042,7 +1042,7 @@ check_fontset_name (name) | |||
| 1042 | string, maybe change FONTNAME to (FAMILY . REGISTRY). */ | 1042 | string, maybe change FONTNAME to (FAMILY . REGISTRY). */ |
| 1043 | 1043 | ||
| 1044 | static Lisp_Object | 1044 | static Lisp_Object |
| 1045 | regulalize_fontname (Lisp_Object fontname) | 1045 | regularize_fontname (Lisp_Object fontname) |
| 1046 | { | 1046 | { |
| 1047 | Lisp_Object family, registry; | 1047 | Lisp_Object family, registry; |
| 1048 | 1048 | ||
| @@ -1133,7 +1133,7 @@ name of a font, REGISTRY is a registry name of a font. */) | |||
| 1133 | if (!NILP (frame)) | 1133 | if (!NILP (frame)) |
| 1134 | CHECK_LIVE_FRAME (frame); | 1134 | CHECK_LIVE_FRAME (frame); |
| 1135 | 1135 | ||
| 1136 | elt = Fcons (make_number (from), regulalize_fontname (fontname)); | 1136 | elt = Fcons (make_number (from), regularize_fontname (fontname)); |
| 1137 | for (; from <= to; from++) | 1137 | for (; from <= to; from++) |
| 1138 | FONTSET_SET (fontset, from, elt); | 1138 | FONTSET_SET (fontset, from, elt); |
| 1139 | Foptimize_char_table (fontset); | 1139 | Foptimize_char_table (fontset); |
| @@ -1540,7 +1540,7 @@ It is intended that this function is called only from | |||
| 1540 | 1540 | ||
| 1541 | elt = XCAR (tail); | 1541 | elt = XCAR (tail); |
| 1542 | target = Fcar (elt); | 1542 | target = Fcar (elt); |
| 1543 | elt = Fcons (Qnil, regulalize_fontname (Fcdr (elt))); | 1543 | elt = Fcons (Qnil, regularize_fontname (Fcdr (elt))); |
| 1544 | if (! CHAR_TABLE_P (target)) | 1544 | if (! CHAR_TABLE_P (target)) |
| 1545 | { | 1545 | { |
| 1546 | int charset, c; | 1546 | int charset, c; |