changeset 88484:3667d64a1787

*** empty log message ***
author Kenichi Handa <handa@m17n.org>
date Mon, 13 May 2002 13:06:25 +0000
parents b6df31da4a9e
children e92f62c0073e
files lisp/ChangeLog lisp/international/fontset.el src/ChangeLog
diffstat 3 files changed, 11 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Mon May 13 13:01:22 2002 +0000
+++ b/lisp/ChangeLog	Mon May 13 13:06:25 2002 +0000
@@ -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.
--- a/lisp/international/fontset.el	Mon May 13 13:01:22 2002 +0000
+++ b/lisp/international/fontset.el	Mon May 13 13:06:25 2002 +0000
@@ -415,7 +415,7 @@
 	  (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
--- a/src/ChangeLog	Mon May 13 13:01:22 2002 +0000
+++ b/src/ChangeLog	Mon May 13 13:06:25 2002 +0000
@@ -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.