]> git.eshelyaron.com Git - emacs.git/commitdiff
Arrange custom-face-attributes closer to how heavy they are
authorLars Ingebrigtsen <larsi@gnus.org>
Thu, 15 Aug 2019 03:22:36 +0000 (20:22 -0700)
committerLars Ingebrigtsen <larsi@gnus.org>
Thu, 15 Aug 2019 03:22:36 +0000 (20:22 -0700)
* lisp/cus-face.el (custom-face-attributes): Arrange the weights
more in order of how heavy they are (bug#15526).

lisp/cus-face.el

index 0ee6a8dcc8fc856dc40a3aef1b2de556e77096f1..d73bce42c3ef0d40c5e2bae2b4ef6b8860532981 100644 (file)
      (choice :tag "Weight"
             :help-echo "Font weight."
             :value normal              ; default
-            (const :tag "black" ultra-bold)
-            (const :tag "bold" bold)
-            (const :tag "book" semi-light)
-            (const :tag "demibold" semi-bold)
+            (const :tag "ultralight" ultra-light)
             (const :tag "extralight" extra-light)
-            (const :tag "extrabold" extra-bold)
-            (const :tag "heavy" extra-bold)
             (const :tag "light" light)
-            (const :tag "medium" normal)
+            (const :tag "thin" thin)
+            (const :tag "semilight" semi-light)
+            (const :tag "book" semi-light)
             (const :tag "normal" normal)
             (const :tag "regular" normal)
+            (const :tag "medium" normal)
             (const :tag "semibold" semi-bold)
-            (const :tag "semilight" semi-light)
-            (const :tag "ultralight" ultra-light)
+            (const :tag "demibold" semi-bold)
+            (const :tag "bold" bold)
+            (const :tag "extrabold" extra-bold)
+            (const :tag "heavy" extra-bold)
             (const :tag "ultrabold" ultra-bold)
-            (const :tag "thin" thin)))
+            (const :tag "black" ultra-bold)))
 
     (:slant
      (choice :tag "Slant"