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

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

[elpa] externals/web-server 2f19d69 2/5: Fix some quoting problems in do


From: Stefan Monnier
Subject: [elpa] externals/web-server 2f19d69 2/5: Fix some quoting problems in doc strings
Date: Fri, 27 Nov 2020 17:19:16 -0500 (EST)

branch: externals/web-server
commit 2f19d69db909b81eebf3b70e207cc02cebbf9b22
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.
---
 web-server.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/web-server.el b/web-server.el
index b14a8d9..9b70a95 100644
--- a/web-server.el
+++ b/web-server.el
@@ -107,9 +107,9 @@ function MATCH and the `ws-response-header' convenience
 function.
 
   (ws-start
-   '(((lambda (_) t) .
+   \\='(((lambda (_) t) .
       (lambda (proc request)
-        (ws-response-header proc 200 '(\"Content-type\" . \"text/plain\"))
+        (ws-response-header proc 200 \\='(\"Content-type\" . \"text/plain\"))
         (process-send-string proc \"hello world\")
         t)))
    8080)
@@ -576,7 +576,7 @@ supplied any subsequent data written to PROC using 
`ws-send' will
 be encoded appropriately including sending the appropriate data
 upon the end of transmission for chunked transfer encoding.
 
-For example with the header `(\"Content-Encoding\" . \"gzip\")',
+For example with the header (\"Content-Encoding\" . \"gzip\"),
 any data subsequently written to PROC using `ws-send' will be
 compressed using the command specified in `ws-gzip-cmd'."
   ;; update process to reflect any Content or Transfer encodings



reply via email to

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