[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/keycast 0c5687ae79 1/2: Fix custom type mismatches
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/keycast 0c5687ae79 1/2: Fix custom type mismatches |
Date: |
Fri, 5 Jan 2024 10:00:13 -0500 (EST) |
branch: elpa/keycast
commit 0c5687ae799c6f4c4d07049ccfddb3af885e04cd
Author: Bruno Boal <egomet@bboal.com>
Commit: Jonas Bernoulli <jonas@bernoul.li>
Fix custom type mismatches
---
keycast.el | 19 +++++++++----------
1 file changed, 9 insertions(+), 10 deletions(-)
diff --git a/keycast.el b/keycast.el
index 0733e28dd0..1c2edb1bf3 100644
--- a/keycast.el
+++ b/keycast.el
@@ -64,12 +64,11 @@ Enabling `keycast-mode-line-mode' inserts the element
`keycast-mode-line' into `mode-line-format' after the
element specified here."
:group 'keycast
- :type '(cons (choice :tag "Insert after"
- (const mode-line-buffer-identification)
- (const moody-mode-line-buffer-identification)
- variable
- sexp)
- (boolean :tag "Remove following elements")))
+ :type '(choice :tag "Insert after"
+ (const mode-line-buffer-identification)
+ (const moody-mode-line-buffer-identification)
+ variable
+ sexp))
(defcustom keycast-mode-line-remove-tail-elements t
"Whether enabling `keycast-mode-line-mode' removes elements to the right.
@@ -135,10 +134,10 @@ Enabling `keycast-header-line-mode' inserts the element
`keycast-header-line' into `header-line-format' after the
element specified here."
:group 'keycast
- :type '(cons (choice :tag "Insert after"
- variable
- sexp)
- (boolean :tag "Remove following elements")))
+ :type '(choice :tag "Insert after"
+ string
+ variable
+ sexp))
(defcustom keycast-header-line-remove-tail-elements t
"Whether enabling `keycast-header-line-mode' removes elements to the right.