]> git.eshelyaron.com Git - emacs.git/commitdiff
*** empty log message ***
authorKenichi Handa <handa@m17n.org>
Mon, 13 May 2002 13:06:25 +0000 (13:06 +0000)
committerKenichi Handa <handa@m17n.org>
Mon, 13 May 2002 13:06:25 +0000 (13:06 +0000)
lisp/ChangeLog
lisp/international/fontset.el
src/ChangeLog

index 3bace48f89e19322f230ef9122698cc20c1555b9..84fef9ae20cc9bde006e4e1bf37ecd7494895a14 100644 (file)
@@ -1,3 +1,8 @@
+2002-05-13  Kenichi Handa  <handa@etl.go.jp>
+
+       * international/fontset.el (fontset-plain-name): Handle the case
+       that size, weight, slant are not specified in the fontset name.
+
 2002-05-10  Yong Lu <lyongu@asia-infonet.com>
 
        * language/greek.el (greek-iso-8bit): Fix typo.
index e60f5c8fd7953b3c06c9c2e5416b009e961b9c4e..89a5fb2096ee03a8eb327ca848ac9314b7aa3a85 100644 (file)
@@ -415,7 +415,7 @@ with \"fontset\" in `<CHARSET_REGISTRY> field."
          (if (not (string-match "^fontset-\\(.*\\)$" nickname))
              fontset
            (setq nickname (match-string 1 nickname))
-           (if (and (integerp size) (> (string-to-int size) 0))
+           (if (and size (> (string-to-int size) 0))
                (setq name (format "%s: %s-dot" nickname size))
              (setq name nickname))
            (and weight
index bf34746cf90aadc73077651cfaa01ea146486fac..3cb61a542c3f9f80533f711b2539ccc4f5405075 100644 (file)
@@ -1,3 +1,8 @@
+2002-05-13  Kenichi Handa  <handa@etl.go.jp>
+
+       * fontset.c (free_realized_fontsets): Call Fclear_face_cache instead
+       of calling free_reazlied_face.
+
 2002-05-10  Yong Lu <lyongu@asia-infonet.com>
 
        * charset.c (load_charset_map): Fix previous change.