[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/popper 3804068a5b 1/2: popper-echo: Fix customization t
From: |
ELPA Syncer |
Subject: |
[elpa] externals/popper 3804068a5b 1/2: popper-echo: Fix customization types |
Date: |
Fri, 8 Sep 2023 21:58:29 -0400 (EDT) |
branch: externals/popper
commit 3804068a5bece44184e044ca0cf1bcaec90f5690
Author: Karthik Chikmagalur <karthikchikmagalur@gmail.com>
Commit: Karthik Chikmagalur <karthikchikmagalur@gmail.com>
popper-echo: Fix customization types
---
popper-echo.el | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/popper-echo.el b/popper-echo.el
index 03698401a8..66efb902f8 100644
--- a/popper-echo.el
+++ b/popper-echo.el
@@ -56,12 +56,13 @@
This is called on buffer-names displayed by `popper-echo'.
-This function should accept a
- string (the buffer name) and return a transformed string."
- :type 'function
+This function should accept a string (the buffer name) and return
+a transformed string."
+ :type '(choice (const :tag "Don't transform buffer-names" nil)
+ function)
:group 'popper)
-(defcustom popper-echo-lines 2
+ (defcustom popper-echo-lines 2
"Number of minibuffer lines used to show popup buffer names by `popper-echo'.
This has no effect when popper-echo-mode is turned off."
@@ -102,9 +103,10 @@ Examples:
This variable has no effect when popper-echo-mode is turned
off."
- :type '(group character string)
+ :type '(repeat (choice character string))
:group 'popper)
+
(defface popper-echo-area-buried
'((t :inherit shadow))
"Echo area face for buried popups."