From 6a7e01161f4dbec31064fcc5fc36ca8066998a14 Mon Sep 17 00:00:00 2001 From: stardiviner Date: Tue, 31 Jan 2017 06:34:18 +0800 Subject: [PATCH] fix customize variables type --- inline-docs.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/inline-docs.el b/inline-docs.el index 775d61f..0cf944b 100644 --- a/inline-docs.el +++ b/inline-docs.el @@ -46,17 +46,17 @@ Set `inline-docs-position' to `up' to fix issue that `inline-docs' does not show (defcustom inline-docs-border-symbol ?― "Specify symbol for inline-docs border." - :type 'integer + :type 'character :group 'inline-docs) (defcustom inline-docs-prefix-symbol ?\s "Specify symbol for inline-docs prefix." - :type 'integer + :type 'character :group 'inline-docs) (defcustom inline-docs-indicator-symbol "➜" "Specify symbol for inline-docs indicator." - :type 'string + :type 'character :group 'inline-docs) (defface inline-docs-face -- 2.11.4.GIT