diff options
author | John Paul Wallington <jpw@pobox.com> | 2004-04-20 00:26:36 +0000 |
---|---|---|
committer | John Paul Wallington <jpw@pobox.com> | 2004-04-20 00:26:36 +0000 |
commit | 4ce2719dbb375450ba88d8aab4b4bb904d5af530 (patch) | |
tree | a43d2020afbecf90c1ce6f4a7d1886aacd956d72 /src/fontset.c | |
parent | 474d05350a11c173e90458485e72f50d94acfb30 (diff) | |
download | emacs-4ce2719dbb375450ba88d8aab4b4bb904d5af530.tar.gz |
(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)); static int fontset_id_valid_p P_ ((int)); static Lisp_Object fontset_pattern_regexp P_ ((Lisp_Object)); static Lisp_Object font_family_registry P_ ((Lisp_Object, int)); -static Lisp_Object regulalize_fontname P_ ((Lisp_Object)); +static Lisp_Object regularize_fontname P_ ((Lisp_Object)); /********** MACROS AND FUNCTIONS TO HANDLE FONTSET **********/ @@ -1042,7 +1042,7 @@ check_fontset_name (name) string, maybe change FONTNAME to (FAMILY . REGISTRY). */ static Lisp_Object -regulalize_fontname (Lisp_Object fontname) +regularize_fontname (Lisp_Object fontname) { Lisp_Object family, registry; @@ -1133,7 +1133,7 @@ name of a font, REGISTRY is a registry name of a font. */) if (!NILP (frame)) CHECK_LIVE_FRAME (frame); - elt = Fcons (make_number (from), regulalize_fontname (fontname)); + elt = Fcons (make_number (from), regularize_fontname (fontname)); for (; from <= to; from++) FONTSET_SET (fontset, from, elt); Foptimize_char_table (fontset); @@ -1540,7 +1540,7 @@ It is intended that this function is called only from elt = XCAR (tail); target = Fcar (elt); - elt = Fcons (Qnil, regulalize_fontname (Fcdr (elt))); + elt = Fcons (Qnil, regularize_fontname (Fcdr (elt))); if (! CHAR_TABLE_P (target)) { int charset, c; |