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

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

[elpa] externals/ebdb 9e1e398 1/2: Remove some stray escaping of parenth


From: Eric Abrahamsen
Subject: [elpa] externals/ebdb 9e1e398 1/2: Remove some stray escaping of parentheses in docstrings
Date: Wed, 2 Jun 2021 13:57:25 -0400 (EDT)

branch: externals/ebdb
commit 9e1e39891aff6845cb08f042523a7bc341d382c5
Author: Eric Abrahamsen <eric@ericabrahamsen.net>
Commit: Eric Abrahamsen <eric@ericabrahamsen.net>

    Remove some stray escaping of parentheses in docstrings
    
    * ebdb-gnus.el:
    * ebdb-ispell.el:
    * ebdb-snarf.el: Escaping is only needed in column 1.
---
 ebdb-gnus.el   | 8 ++++----
 ebdb-ispell.el | 4 ++--
 ebdb-snarf.el  | 2 +-
 3 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/ebdb-gnus.el b/ebdb-gnus.el
index 7a6f0a6..8daa768 100644
--- a/ebdb-gnus.el
+++ b/ebdb-gnus.el
@@ -212,7 +212,7 @@ addresses better than the traditionally static global 
scorefile."
         (list :folder (plist-get slots :group))))
 
 (defun ebdb/gnus-split-folders-list ()
-  "Return a list of \( \"From\" mail-regexp imap-folder-name\) tuples
+  "Return a list of (\"From\" mail-regexp imap-folder-name) tuples
 based on the contents of the EBDB.
 
 Mail address elements are already `regexp-quote'-ed, so we just
@@ -223,10 +223,10 @@ use a backquote template, that is your setting will look 
like:
 \(setq nnimap-split-rule  'nnimap-split-fancy
        nnimap-split-inbox \"INBOX\"
        nnimap-split-fancy
-       `\(| ,@\(ebdb/gnus-split-folders-list\)
-            ... \)\)
+       `(| ,@(ebdb/gnus-split-folders-list)
+            ... ))
 
-Note that `\( is the backquote, NOT the quote '\(."
+Note that `( is the backquote, NOT the quote '(."
   (mapcar
    (lambda (elt)
      (list "From"
diff --git a/ebdb-ispell.el b/ebdb-ispell.el
index 3a044bb..1dff24e 100644
--- a/ebdb-ispell.el
+++ b/ebdb-ispell.el
@@ -85,8 +85,8 @@
 (defun ebdb-ispell-collect-words (strings)
   "Find all individual words in STRINGS and filter.
 Removes strings that are too short
-\(`ebdb-ispell-min-word-length'\) or explicitly ignored
-\(`ebdb-ispell-ignore-re'\)."
+\(`ebdb-ispell-min-word-length') or explicitly ignored
+\(`ebdb-ispell-ignore-re')."
   (seq-filter
    (lambda (word)
      (and (>= (length word) ebdb-ispell-min-word-length)
diff --git a/ebdb-snarf.el b/ebdb-snarf.el
index 26cec06..b25747d 100644
--- a/ebdb-snarf.el
+++ b/ebdb-snarf.el
@@ -58,7 +58,7 @@ list of regular expressions that can be used to produce 
instances
 of that class when passed to `ebdb-parse'.  Each regular
 expression should contain at least one parenthetical group: the
 `ebdb-parse' method of the class will receive the results of
-\(match-string 1\)."
+\(match-string 1)."
 
   :group 'ebdb-snarf
   :type 'list)



reply via email to

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