summaryrefslogtreecommitdiff
path: root/lisp/faces.el
diff options
context:
space:
mode:
authorKenichi Handa <handa@m17n.org>2008-05-12 23:51:28 +0000
committerKenichi Handa <handa@m17n.org>2008-05-12 23:51:28 +0000
commit9bb7c0068c5e1c4cc4d8f25ad6ead6f1747d2c33 (patch)
treee72b068809e08507354f6e461bde5b9935348f2a /lisp/faces.el
parent6010cb23234606e56f28387280b79dedb6a41110 (diff)
downloademacs-old-branches/font-backend.tar.gz
*** empty log message ***old-branches/font-backend
Diffstat (limited to 'lisp/faces.el')
-rw-r--r--lisp/faces.el11
1 files changed, 8 insertions, 3 deletions
diff --git a/lisp/faces.el b/lisp/faces.el
index 556497a6a12..78d35895f9c 100644
--- a/lisp/faces.el
+++ b/lisp/faces.el
@@ -114,7 +114,10 @@ REGISTRY, ALTERNATIVE1, ALTERNATIVE2, and etc."
(bold 200)
(extra-bold 205 extrabold)
(ultra-bold 210 ultrabold black))
- "Alist of font weight symbols vs the corresponding numeric values.")
+ "Alist of font weight symbols vs the corresponding numeric values.
+Each element has the form:
+ \(SYMBOLIC-VALUE NUMERIC-VALUE ALISE-SYMBOL ...)
+")
(defconst font-slant-table
'((reverse-oblique 0 ro)
@@ -122,7 +125,8 @@ REGISTRY, ALTERNATIVE1, ALTERNATIVE2, and etc."
(normal 100 r)
(italic 200 i ot)
(oblique 210 o))
- "Alist of font slant symbols vs the corresponding numeric values.")
+ "Alist of font slant symbols vs the corresponding numeric values.
+See `font-weight-table' for the detailed format.")
(defconst font-width-table
'((ultra-condensed 50 ultracondensed)
@@ -134,7 +138,8 @@ REGISTRY, ALTERNATIVE1, ALTERNATIVE2, and etc."
(expanded 125)
(extra-expanded 150 extraexpanded)
(ultra-expanded 200 ultraexpanded wide))
- "Alist of font width symbols vs the corresponding numeric values.")
+ "Alist of font width symbols vs the corresponding numeric values.
+See `font-weight-table' for the detailed format.")
(internal-set-font-style-table
font-weight-table font-slant-table font-width-table)