]> git.eshelyaron.com Git - emacs.git/commitdiff
(regularize_fontname): Renamed from regulalize_fontname.
authorJohn Paul Wallington <jpw@pobox.com>
Tue, 20 Apr 2004 00:26:36 +0000 (00:26 +0000)
committerJohn Paul Wallington <jpw@pobox.com>
Tue, 20 Apr 2004 00:26:36 +0000 (00:26 +0000)
src/ChangeLog
src/fontset.c

index f8d2ee0200cab6b510462fbf6f92748b5a494c8f..487fa45e14e9343cc1615a8a3546696f875b76f4 100644 (file)
@@ -1,3 +1,9 @@
+2004-04-20  John Paul Wallington  <jpw@gnu.org>
+
+       * fns.c (Fassoc, Feql): Fix indentation.
+
+       * fontset.c (regularize_fontname): Renamed from regulalize_fontname.
+
 2004-04-19  John Paul Wallington  <jpw@gnu.org>
 
        * fns.c (Feql): New function.
index 6ed1efff092503951d1f8f84f2ffcdc66d9515a2..1a7fdb29041e59232b8f46f3c889d0d329ff8946 100644 (file)
@@ -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));
 
 \f
 /********** 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;