aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2019-08-14 20:22:36 -0700
committerLars Ingebrigtsen2019-08-14 20:22:36 -0700
commita5e7c6c617bb4d33e5fbd19b81db90f039fd3060 (patch)
treecc7d0b173d5e9666f62e577d2e0800b8682e48b7
parent65606077447f052f1276f206199cda195c39c26a (diff)
downloademacs-a5e7c6c617bb4d33e5fbd19b81db90f039fd3060.tar.gz
emacs-a5e7c6c617bb4d33e5fbd19b81db90f039fd3060.zip
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).
-rw-r--r--lisp/cus-face.el20
1 files changed, 10 insertions, 10 deletions
diff --git a/lisp/cus-face.el b/lisp/cus-face.el
index 0ee6a8dcc8f..d73bce42c3e 100644
--- a/lisp/cus-face.el
+++ b/lisp/cus-face.el
@@ -84,22 +84,22 @@
84 (choice :tag "Weight" 84 (choice :tag "Weight"
85 :help-echo "Font weight." 85 :help-echo "Font weight."
86 :value normal ; default 86 :value normal ; default
87 (const :tag "black" ultra-bold) 87 (const :tag "ultralight" ultra-light)
88 (const :tag "bold" bold)
89 (const :tag "book" semi-light)
90 (const :tag "demibold" semi-bold)
91 (const :tag "extralight" extra-light) 88 (const :tag "extralight" extra-light)
92 (const :tag "extrabold" extra-bold)
93 (const :tag "heavy" extra-bold)
94 (const :tag "light" light) 89 (const :tag "light" light)
95 (const :tag "medium" normal) 90 (const :tag "thin" thin)
91 (const :tag "semilight" semi-light)
92 (const :tag "book" semi-light)
96 (const :tag "normal" normal) 93 (const :tag "normal" normal)
97 (const :tag "regular" normal) 94 (const :tag "regular" normal)
95 (const :tag "medium" normal)
98 (const :tag "semibold" semi-bold) 96 (const :tag "semibold" semi-bold)
99 (const :tag "semilight" semi-light) 97 (const :tag "demibold" semi-bold)
100 (const :tag "ultralight" ultra-light) 98 (const :tag "bold" bold)
99 (const :tag "extrabold" extra-bold)
100 (const :tag "heavy" extra-bold)
101 (const :tag "ultrabold" ultra-bold) 101 (const :tag "ultrabold" ultra-bold)
102 (const :tag "thin" thin))) 102 (const :tag "black" ultra-bold)))
103 103
104 (:slant 104 (:slant
105 (choice :tag "Slant" 105 (choice :tag "Slant"