+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.
(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
+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.