[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/ement 0c93e149d0 3/4: Fix: (ement-room-username-display
From: |
ELPA Syncer |
Subject: |
[elpa] externals/ement 0c93e149d0 3/4: Fix: (ement-room-username-display-property) Custom type |
Date: |
Sun, 24 Sep 2023 00:58:00 -0400 (EDT) |
branch: externals/ement
commit 0c93e149d0a56ee3d2babd1c0560d0478bfc832d
Author: Adam Porter <adam@alphapapa.net>
Commit: Adam Porter <adam@alphapapa.net>
Fix: (ement-room-username-display-property) Custom type
---
ement-room.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/ement-room.el b/ement-room.el
index e01887f5f0..a17c4cd87f 100644
--- a/ement-room.el
+++ b/ement-room.el
@@ -555,10 +555,10 @@ messages won't display in the same font as others."
(defcustom ement-room-username-display-property '(raise -0.25)
"Display property applied to username strings.
See Info node `(elisp)Other Display Specs'."
- :type '(choice (list :tag "Raise" (const raise :tag "Raise") (number :tag
"Factor"))
+ :type '(choice (list :tag "Raise" (const :tag "Raise" raise) (number :tag
"Factor"))
(list :tag "Height" (const height)
- (choice (list :tag "Larger" (const + :tag "Larger")
(number :tag "Steps"))
- (list :tag "Smaller" (const - :tag "Smaller")
(number :tag "Steps"))
+ (choice (list :tag "Larger" (const :tag "Larger" +)
(number :tag "Steps"))
+ (list :tag "Smaller" (const :tag "Smaller" -)
(number :tag "Steps"))
(number :tag "Factor")
(function :tag "Function")
(sexp :tag "Form"))) ))