summaryrefslogtreecommitdiff
path: root/lisp/faces.el
diff options
context:
space:
mode:
authorKenichi Handa <handa@m17n.org>2000-12-04 06:27:16 +0000
committerKenichi Handa <handa@m17n.org>2000-12-04 06:27:16 +0000
commit382716e028fec7978d0fd96cf5327846c9e1879b (patch)
tree373e965ec919333f8d2bcd37695a5b330c0c77eb /lisp/faces.el
parent8e050749589ca8b0e318752515384e76c714a4f8 (diff)
downloademacs-382716e028fec7978d0fd96cf5327846c9e1879b.tar.gz
(face-font-registry-alternatives): Add entries for CJK
fonts. Doc-string adjusted for the actual usage of this data.
Diffstat (limited to 'lisp/faces.el')
-rw-r--r--lisp/faces.el10
1 files changed, 7 insertions, 3 deletions
diff --git a/lisp/faces.el b/lisp/faces.el
index e8999594006..4c59a220ac6 100644
--- a/lisp/faces.el
+++ b/lisp/faces.el
@@ -77,11 +77,15 @@ ALTERNATIVE2 etc."
;; This is defined originally in xfaces.c.
(defcustom face-font-registry-alternatives
- '(("muletibetan-2" "muletibetan-0"))
+ '(("gb2312.1980" "gb2312.80&gb8565.88" "gbk*")
+ ("jisx0208.1990" "jisx0208.1983" "jisx0208.1978")
+ ("ksc5601.1989" "ksx1001.1992" "ksc5601.1987")
+ ("muletibetan-2" "muletibetan-0"))
"*Alist of alternative font registry names.
Each element has the the form (REGISTRY ALTERNATIVE1 ALTERNATIVE2 ...).
-If fonts of registry REGISTRY can't be loaded, try ALTERNATIVE1, then
-ALTERNATIVE2 etc."
+If fonts of registry REGISTRY can be loaded, font selection
+tries to find a best matching font among all fonts of registry
+REGISTRY, ALTERNATIVE1, ALTERNATIVE2, and etc."
:tag "Alternative font registries to try."
:type '(repeat (repeat string))
:version "21.1"