]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix GTK font name parsing to allow numbers in names (Bug#7853).
authorChong Yidong <cyd@stupidchicken.com>
Thu, 27 Jan 2011 00:45:30 +0000 (19:45 -0500)
committerChong Yidong <cyd@stupidchicken.com>
Thu, 27 Jan 2011 00:45:30 +0000 (19:45 -0500)
A better fix is already in the trunk.

* src/font.c (font_parse_fcname): Require GTK-style font sizes to
occur at the end of the font string (Bug#7853).

src/ChangeLog
src/font.c

index bbfd9592cf1dc46b232ad24397f054d0bc86b811..c74732b42108ed2707208ff456e8a2f88d0de786 100644 (file)
@@ -1,3 +1,8 @@
+2011-01-27  Chong Yidong  <cyd@stupidchicken.com>
+
+       * font.c (font_parse_fcname): Require GTK-style font sizes to
+       occur at the end of the font string (Bug#7853).
+
 2011-01-26  Chong Yidong  <cyd@stupidchicken.com>
 
        * font.c (font_parse_fcname): Fix typo in string length.
index 96c043626f222b672488c6999a4e64520f489359..ebf0b547b9f5f7955c30f58c86a4f46ec6edec76 100644 (file)
@@ -1549,7 +1549,8 @@ font_parse_fcname (name, font)
                    size_found = 0;
                    break;
                  }
-             if (size_found)
+             /* GTK font sizes must occur at the end.  */
+             if (size_found && *q == '\0')
                {
                  double point_size = strtod (p, &q);
                  ASET (font, FONT_SIZE_INDEX, make_float (point_size));