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

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

[elpa] externals/shen-mode cbea83a 12/15: Fix some quoting problems in d


From: Stefan Monnier
Subject: [elpa] externals/shen-mode cbea83a 12/15: Fix some quoting problems in doc strings
Date: Sun, 29 Nov 2020 00:14:29 -0500 (EST)

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

diff --git a/inf-shen.el b/inf-shen.el
index bf554da..53df955 100644
--- a/inf-shen.el
+++ b/inf-shen.el
@@ -294,7 +294,7 @@ Prefix argument means switch to the Shen buffer afterwards."
   (interactive "r\nP")
   (let ((before-input (marker-position (process-mark (inferior-shen-proc))))
         result)
-    
+
     (run-hook-with-args 'shen-pre-eval-hook start end)
     (comint-send-region (inferior-shen-proc) start end)
     (comint-send-string (inferior-shen-proc) "\n")
@@ -432,7 +432,7 @@ With argument, positions cursor at end of buffer."
 
 (defvar shen-prev-l/c-dir/file nil
   "Record last directory and file used in loading or compiling.
-This holds a cons cell of the form `(DIRECTORY . FILE)'
+This holds a cons cell of the form (DIRECTORY . FILE)
 describing the last `shen-load-file' or `shen-compile-file' command.")
 
 (defvar shen-source-modes '(shen-mode)



reply via email to

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