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

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

[elpa] externals/ediprolog aa4959c 4/7: Fix some quoting problems in doc


From: Stefan Monnier
Subject: [elpa] externals/ediprolog aa4959c 4/7: Fix some quoting problems in doc strings
Date: Sun, 29 Nov 2020 16:57:31 -0500 (EST)

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

diff --git a/ediprolog.el b/ediprolog.el
index 6818052..448a157 100644
--- a/ediprolog.el
+++ b/ediprolog.el
@@ -101,7 +101,7 @@
 
 (defcustom ediprolog-program-switches nil
   "List of switches passed to the Prolog process. Example:
-'(\"-G128M\" \"-O\")"
+(\"-G128M\" \"-O\")"
   :group 'ediprolog
   :type '(repeat string))
 
@@ -246,7 +246,7 @@ default Prolog prompt.")
       (erase-buffer)
       (insert str)
       (goto-char (point-min))
-      ;; remove normal consult status lines, which start with "%" 
+      ;; remove normal consult status lines, which start with "%"
       (while (re-search-forward "^[\t ]*%.*\n" nil t)
         (delete-region (match-beginning 0) (match-end 0))))
     (setq str (buffer-string)))



reply via email to

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