branch: externals/easy-escape
commit 14046d39c037f6f9e806f8b42ec072bb883a7be4
Author: Clément Pit-Claudel <clement.pitclau...@live.com>
Commit: Clément Pit-Claudel <clement.pitclau...@live.com>

    Fix docstring and defcustom warnings
---
 easy-escape.el | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/easy-escape.el b/easy-escape.el
index 659fe66..114edde 100644
--- a/easy-escape.el
+++ b/easy-escape.el
@@ -53,17 +53,17 @@
 (require 'font-lock)
 
 (defgroup easy-escape nil
-  "Improve readability of escape characters"
+  "Improve readability of escape characters."
   :group 'programming)
 
 (defface easy-escape-face
   '((t :weight bold))
-  "Face used to highlight \\\\ in strings"
+  "Face used to highlight \\\\ in strings."
   :group 'easy-escape)
 
 (defface easy-escape-delimiter-face
   '((t :weight bold :slant normal :inherit font-lock-warning-face))
-  "Face used to highlight groups and alternations in strings"
+  "Face used to highlight groups and alternations in strings."
   :group 'easy-escape)
 
 (defcustom easy-escape-character ?\\
@@ -81,7 +81,8 @@ Good candidates include the following:
   ⧹ BIG REVERSE SOLIDUS (typed as '?⧹')
 Most of these characters require non-standard fonts to display properly,
 however."
-  :group 'easy-escape)
+  :group 'easy-escape
+  :type 'character)
 
 (defcustom easy-escape-hide-escapes-before-delimiters t
   "Whether to hide \\\\ when it precedes one of `(', `|', and `)'."

Reply via email to