and registry part of the fontname by "-*-" instead of "-".
2000-05-26 Kenichi Handa <handa@etl.go.jp>
+ * international/mule-diag.el (print-fontset): Combine family part
+ and registry part of the fontname by "-*-" instead of "-".
+
* international/mule-cmds.el (encode-coding-char): Make strings
multibyte before calling encode-coding-string.
(insert font-spec)
(if (car font-spec)
(if (string-match "-" (car font-spec))
- (insert "-" (car font-spec) "-")
- (insert "-*-" (car font-spec) "-"))
+ (insert "-" (car font-spec) "-*-")
+ (insert "-*-" (car font-spec) "-*-"))
(insert "-*-"))
(if (cdr font-spec)
(if (string-match "-" (cdr font-spec))
2000-05-26 Kenichi Handa <handa@etl.go.jp>
+ * fontset.c (syms_of_fontset): Adjust the font name for ascii of
+ the default fontset to what Emacs uses by default.
+
* charset.c (init_charset_once): Set the table bytes_by_char_head
correctly.