1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-22 07:09:54 +00:00

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).
This commit is contained in:
Lars Ingebrigtsen 2019-08-14 20:22:36 -07:00
parent 6560607744
commit a5e7c6c617

View File

@ -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"