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

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

[elpa] externals/minimap 8c8ede8 06/10: Fix some quoting problems in doc


From: Stefan Monnier
Subject: [elpa] externals/minimap 8c8ede8 06/10: Fix some quoting problems in doc strings
Date: Tue, 1 Dec 2020 16:26:47 -0500 (EST)

branch: externals/minimap
commit 8c8ede81f09afa44692ed586fc2006de770101cf
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.
---
 minimap.el | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/minimap.el b/minimap.el
index 4d58023..231c049 100644
--- a/minimap.el
+++ b/minimap.el
@@ -229,10 +229,10 @@ read text using those faces.  By default, this should 
enlarge all
 function names in the minimap, given you have font locking
 enabled.  This variable can have the following values:
 
-'as-fallback (the default) -- The feature will only be activated
+`as-fallback' (the default) -- The feature will only be activated
   if information from CEDET's semantic analyzer isn't available
   (see: `minimap-display-semantic-overlays').
-'always -- Always active.
+`always' -- Always active.
 nil -- Inactive."
   :type '(choice (const :tag "Fallback if CEDET unavailable." 'as-fallback)
                 (const :tag "Always active." 'always)
@@ -254,14 +254,14 @@ Unlike text properties, overlays are not applied 
automatically to
 the minimap and must be explicitly synced.  This variable
 specifies which overlay properties should be synced by
 `minimap-sync-overlays'.  Most importantly, this variable should
-include 'invisible', so that hidden text does not appear in the
+include `invisible', so that hidden text does not appear in the
 minimap buffer."
   :type '(repeat symbol)
   :group 'minimap)
 
 (defcustom minimap-major-modes '(prog-mode)
   "Major modes for which a minimap should be created.
-This can also be a parent mode like 'prog-mode.
+This can also be a parent mode like `prog-mode'.
 If nil, a minimap must be explicitly created for each buffer."
   :type '(repeat symbol)
   :group 'minimap)



reply via email to

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