emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[elpa] externals/fontaine bb978caf1f 1/3: Add informative :tag to weight


From: ELPA Syncer
Subject: [elpa] externals/fontaine bb978caf1f 1/3: Add informative :tag to weight selection widget
Date: Thu, 19 Jan 2023 13:57:40 -0500 (EST)

branch: externals/fontaine
commit bb978caf1fd91aaa278fe10c70d7fb97a64dacee
Author: Protesilaos Stavrou <info@protesilaos.com>
Commit: Protesilaos Stavrou <info@protesilaos.com>

    Add informative :tag to weight selection widget
---
 fontaine.el | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/fontaine.el b/fontaine.el
index 100b8544b2..0f7e155975 100644
--- a/fontaine.el
+++ b/fontaine.el
@@ -122,19 +122,19 @@
   :group 'font)
 
 (defconst fontaine--weights-widget
-  '(choice
-    (const :tag "Normal" normal)
-    (const :tag "Regular (same as normal)" regular)
-    (const :tag "Thin" thin)
-    (const :tag "Ultra-light" ultralight)
-    (const :tag "Extra-light" extralight)
-    (const :tag "Light" light)
-    (const :tag "Semi-light" semilight)
-    (const :tag "Medium" medium)
-    (const :tag "Semi-bold" semibold)
-    (const :tag "Bold" bold)
-    (const :tag "Extra-bold" extrabold)
-    (const :tag "Ultra-bold" ultrabold))
+  '(choice :tag "Font weight (must be supported by the typeface)"
+           (const :tag "Normal" normal)
+           (const :tag "Regular (same as normal)" regular)
+           (const :tag "Thin" thin)
+           (const :tag "Ultra-light" ultralight)
+           (const :tag "Extra-light" extralight)
+           (const :tag "Light" light)
+           (const :tag "Semi-light" semilight)
+           (const :tag "Medium" medium)
+           (const :tag "Semi-bold" semibold)
+           (const :tag "Bold" bold)
+           (const :tag "Extra-bold" extrabold)
+           (const :tag "Ultra-bold" ultrabold))
   "Widget with font weights for `fontaine-presets'.")
 
 (defcustom fontaine-presets



reply via email to

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