]> git.eshelyaron.com Git - emacs.git/commitdiff
(font-weight-table): Treat regular and normal as the
authorKenichi Handa <handa@m17n.org>
Mon, 19 Jun 2006 13:02:21 +0000 (13:02 +0000)
committerKenichi Handa <handa@m17n.org>
Mon, 19 Jun 2006 13:02:21 +0000 (13:02 +0000)
same as medium.
(font-slant-table): Add (roman . 100).

lisp/faces.el

index 828cbf860d929c6e4d4aa079a98557b4b8a67d6f..6ae0bca663f7eea8e206902391cfb2720a4e9cf4 100644 (file)
@@ -109,8 +109,7 @@ REGISTRY, ALTERNATIVE1, ALTERNATIVE2, and etc."
     (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 @@ REGISTRY, ALTERNATIVE1, ALTERNATIVE2, and etc."
 (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."