aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/international/fontset.el2
-rw-r--r--src/ChangeLog5
3 files changed, 11 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 3bace48f89e..84fef9ae20c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12002-05-13 Kenichi Handa <handa@etl.go.jp>
2
3 * international/fontset.el (fontset-plain-name): Handle the case
4 that size, weight, slant are not specified in the fontset name.
5
12002-05-10 Yong Lu <lyongu@asia-infonet.com> 62002-05-10 Yong Lu <lyongu@asia-infonet.com>
2 7
3 * language/greek.el (greek-iso-8bit): Fix typo. 8 * language/greek.el (greek-iso-8bit): Fix typo.
diff --git a/lisp/international/fontset.el b/lisp/international/fontset.el
index e60f5c8fd79..89a5fb2096e 100644
--- a/lisp/international/fontset.el
+++ b/lisp/international/fontset.el
@@ -415,7 +415,7 @@ with \"fontset\" in `<CHARSET_REGISTRY> field."
415 (if (not (string-match "^fontset-\\(.*\\)$" nickname)) 415 (if (not (string-match "^fontset-\\(.*\\)$" nickname))
416 fontset 416 fontset
417 (setq nickname (match-string 1 nickname)) 417 (setq nickname (match-string 1 nickname))
418 (if (and (integerp size) (> (string-to-int size) 0)) 418 (if (and size (> (string-to-int size) 0))
419 (setq name (format "%s: %s-dot" nickname size)) 419 (setq name (format "%s: %s-dot" nickname size))
420 (setq name nickname)) 420 (setq name nickname))
421 (and weight 421 (and weight
diff --git a/src/ChangeLog b/src/ChangeLog
index bf34746cf90..3cb61a542c3 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12002-05-13 Kenichi Handa <handa@etl.go.jp>
2
3 * fontset.c (free_realized_fontsets): Call Fclear_face_cache instead
4 of calling free_reazlied_face.
5
12002-05-10 Yong Lu <lyongu@asia-infonet.com> 62002-05-10 Yong Lu <lyongu@asia-infonet.com>
2 7
3 * charset.c (load_charset_map): Fix previous change. 8 * charset.c (load_charset_map): Fix previous change.