emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/easy-escape 14046d3 26/27: Fix docstring and defcustom


From: ELPA Syncer
Subject: [elpa] externals/easy-escape 14046d3 26/27: Fix docstring and defcustom warnings
Date: Tue, 14 Sep 2021 17:57:34 -0400 (EDT)

branch: externals/easy-escape
commit 14046d39c037f6f9e806f8b42ec072bb883a7be4
Author: Clément Pit-Claudel <clement.pitclaudel@live.com>
Commit: Clément Pit-Claudel <clement.pitclaudel@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

[Prev in Thread] Current Thread [Next in Thread]