emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master a5e7c6c: Arrange custom-face-attributes closer to h


From: Lars Ingebrigtsen
Subject: [Emacs-diffs] master a5e7c6c: Arrange custom-face-attributes closer to how heavy they are
Date: Wed, 14 Aug 2019 23:24:51 -0400 (EDT)

branch: master
commit a5e7c6c617bb4d33e5fbd19b81db90f039fd3060
Author: Lars Ingebrigtsen <address@hidden>
Commit: Lars Ingebrigtsen <address@hidden>

    Arrange custom-face-attributes closer to how heavy they are
    
    * lisp/cus-face.el (custom-face-attributes): Arrange the weights
    more in order of how heavy they are (bug#15526).
---
 lisp/cus-face.el | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/lisp/cus-face.el b/lisp/cus-face.el
index 0ee6a8d..d73bce4 100644
--- a/lisp/cus-face.el
+++ b/lisp/cus-face.el
@@ -84,22 +84,22 @@
      (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"



reply via email to

[Prev in Thread] Current Thread [Next in Thread]