changeset 90484:6f039e9c742f

(font-weight-table): Treat regular and normal as the same as medium. (font-slant-table): Add (roman . 100).
author Kenichi Handa <handa@m17n.org>
date Mon, 19 Jun 2006 13:02:21 +0000
parents 72186e5bf7ed
children 36209537eac9
files lisp/faces.el
diffstat 1 files changed, 2 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/faces.el	Mon Jun 19 13:00:37 2006 +0000
+++ b/lisp/faces.el	Mon Jun 19 13:02:21 2006 +0000
@@ -109,8 +109,7 @@
     (light . 50)
     (semilight . 65) (semi-light . 65)
     (book . 75)
-    (normal . 80) (regular . 80)
-    (medium . 100)
+    (medium . 100) (regular . 100) (normal . 100)
     (semibold . 180) (semi-bold . 180) (demibold . 180) (demi . 180)
     (bold . 200)
     (extrabold . 205) (extra-bold . 205)
@@ -129,7 +128,7 @@
 (defcustom font-slant-table
   '((ro . 0)
     (ri . 10)
-    (r . 100) (normal . 100)
+    (r . 100) (roman . 100) (normal . 100)
     (i . 200) (italic . 200) (ot . 200)
     (o . 210) (oblique . 210))
   "*Alist of font slant symbols vs the corresponding numeric values."