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

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

[elpa] externals/el-search 852643e 100/332: Fix some quoting problems in


From: Stefan Monnier
Subject: [elpa] externals/el-search 852643e 100/332: Fix some quoting problems in doc strings
Date: Tue, 1 Dec 2020 15:48:21 -0500 (EST)

branch: externals/el-search
commit 852643e9d87bb7492372717bc2120812b0778a8c
Author: Paul Eggert <eggert@cs.ucla.edu>
Commit: Paul Eggert <eggert@cs.ucla.edu>

    Fix some quoting problems in doc strings
    
    Most of these are minor issues involving, e.g., quoting `like this'
    instead of 'like this'.  A few involve escaping ` and ' with a
    preceding \= when the characters should not be turned into curved single
    quotes.
---
 el-search.el | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/el-search.el b/el-search.el
index 0c5543b..d79af7f 100644
--- a/el-search.el
+++ b/el-search.el
@@ -245,12 +245,9 @@
   :group 'lisp)
 
 (defcustom el-search-this-expression-identifier 'exp
-  "Identifier referring to the current expression in pattern input.
+  "Identifier ID referring to the current expression in pattern input.
 When entering a PATTERN in an interactive \"el-search\" command,
-the pattern actually used will be
-
-    `(and ,el-search-this-expression-identifier ,pattern)
-
+the pattern actually used will be (and ID PATTERN).
 The default value is `exp'."
   :type 'symbol)
 



reply via email to

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