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

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

[elpa] externals/avy 16ba742 1/5: Fix some quoting problems in doc strin


From: Stefan Monnier
Subject: [elpa] externals/avy 16ba742 1/5: Fix some quoting problems in doc strings
Date: Mon, 30 Nov 2020 18:13:16 -0500 (EST)

branch: externals/avy
commit 16ba74229903aff719c8e442293035abdaaf6a50
Author: Paul Eggert <eggert@cs.ucla.edu>
Commit: Stefan Monnier <monnier@iro.umontreal.ca>

    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.
---
 avy.el | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/avy.el b/avy.el
index 25d89e9..8b258da 100644
--- a/avy.el
+++ b/avy.el
@@ -225,10 +225,10 @@ pressed during the dispatch, ACTION is set to replace the 
default
   :type 'boolean)
 
 (defcustom avy-word-punc-regexp "[!-/:-@[-`{-~]"
-  "Regexp of punctuation chars that count as word starts for `avy-goto-word-1.
+  "Regexp of punctuation chars that count as word starts for `avy-goto-word-1'.
 When nil, punctuation chars will not be matched.
 
-\"[!-/:-@[-`{-~]\" will match all printable punctuation chars."
+\"[!-/:-@[-\\=`{-~]\" will match all printable punctuation chars."
   :type 'regexp)
 
 (defcustom avy-goto-word-0-regexp "\\b\\sw"
@@ -902,14 +902,14 @@ multiple OVERLAY-FN invocations."
         (null (assoc invisible buffer-invisibility-spec)))))
 
 (defun avy--next-visible-point ()
-  "Return the next closest point without 'invisible property."
+  "Return the next closest point without `invisible' property."
   (let ((s (point)))
     (while (and (not (= (point-max) (setq s (next-char-property-change s))))
                 (not (avy--visible-p s))))
     s))
 
 (defun avy--next-invisible-point ()
-  "Return the next closest point with 'invisible property."
+  "Return the next closest point with `invisible' property."
   (let ((s (point)))
     (while (and (not (= (point-max) (setq s (next-char-property-change s))))
                 (avy--visible-p s)))



reply via email to

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