aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2006-06-19 13:02:21 +0000
committerKenichi Handa2006-06-19 13:02:21 +0000
commite81f7a5a5606789e32dc8b43e52c05c069b009f4 (patch)
treefc7e82d4c7e132ba5d009a95f90f169483a817ab
parentf522f828c3f7a094655e506f753e22e20b9d5acf (diff)
downloademacs-e81f7a5a5606789e32dc8b43e52c05c069b009f4.tar.gz
emacs-e81f7a5a5606789e32dc8b43e52c05c069b009f4.zip
(font-weight-table): Treat regular and normal as the
same as medium. (font-slant-table): Add (roman . 100).
-rw-r--r--lisp/faces.el5
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/faces.el b/lisp/faces.el
index 828cbf860d9..6ae0bca663f 100644
--- a/lisp/faces.el
+++ b/lisp/faces.el
@@ -109,8 +109,7 @@ REGISTRY, ALTERNATIVE1, ALTERNATIVE2, and etc."
109 (light . 50) 109 (light . 50)
110 (semilight . 65) (semi-light . 65) 110 (semilight . 65) (semi-light . 65)
111 (book . 75) 111 (book . 75)
112 (normal . 80) (regular . 80) 112 (medium . 100) (regular . 100) (normal . 100)
113 (medium . 100)
114 (semibold . 180) (semi-bold . 180) (demibold . 180) (demi . 180) 113 (semibold . 180) (semi-bold . 180) (demibold . 180) (demi . 180)
115 (bold . 200) 114 (bold . 200)
116 (extrabold . 205) (extra-bold . 205) 115 (extrabold . 205) (extra-bold . 205)
@@ -129,7 +128,7 @@ REGISTRY, ALTERNATIVE1, ALTERNATIVE2, and etc."
129(defcustom font-slant-table 128(defcustom font-slant-table
130 '((ro . 0) 129 '((ro . 0)
131 (ri . 10) 130 (ri . 10)
132 (r . 100) (normal . 100) 131 (r . 100) (roman . 100) (normal . 100)
133 (i . 200) (italic . 200) (ot . 200) 132 (i . 200) (italic . 200) (ot . 200)
134 (o . 210) (oblique . 210)) 133 (o . 210) (oblique . 210))
135 "*Alist of font slant symbols vs the corresponding numeric values." 134 "*Alist of font slant symbols vs the corresponding numeric values."