]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix quoting of #' in some doc strings
authorLars Ingebrigtsen <larsi@gnus.org>
Wed, 3 Aug 2022 11:13:57 +0000 (13:13 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Wed, 3 Aug 2022 11:14:32 +0000 (13:14 +0200)
* lisp/org/ox.el (org-export-to-file):
* lisp/eshell/esh-arg.el (eshell-concat):
* lisp/emacs-lisp/edebug.el (edebug-read-special):
* lisp/dired-aux.el (dired-split): Fix quoting of #' in doc strings.

lisp/dired-aux.el
lisp/emacs-lisp/edebug.el
lisp/eshell/esh-arg.el
lisp/org/ox.el

index b9f33036e31e1db67c1a19bbeb93ad729a599499..bb24954386b0f1510efc03d7ae72551ea963f512 100644 (file)
@@ -3058,7 +3058,7 @@ Optional third arg LIMIT (>= 1) is a limit to the length of the
 resulting list.
 Thus, if SEP is a regexp that only matches itself,
 
-   (mapconcat #'identity (dired-split SEP STRING) SEP)
+   (mapconcat #\\='identity (dired-split SEP STRING) SEP)
 
 is always equal to STRING."
   (declare (obsolete split-string "29.1"))
index 1a1d58d6e36a3bbb8bc6000202060523868c8025..dff16df00297a894606ea478f7f48aaf4b80cb13 100644 (file)
@@ -864,7 +864,7 @@ marker.  The needed data will then come from property
 
 (defun edebug-read-special (stream)
   "Read from STREAM a Lisp object beginning with #.
-Turn #'thing into (function thing) and handle the read syntax for
+Turn #\\='thing into (function thing) and handle the read syntax for
 circular objects.  Let `read' read everything else."
   (catch 'return
     (forward-char 1)
index 459487f43581193b02d28b0c09fb6d58373e5f31..8e44a88459fe349ccf711a476f579861b6fb1ade 100644 (file)
@@ -186,7 +186,7 @@ If QUOTED is nil, the resulting value(s) may be converted to
 numbers (see `eshell-concat-1').
 
 If each argument in REST is a non-list value, the result will be
-a single value, as if (mapconcat #'eshell-stringify REST) had been
+a single value, as if (mapconcat #\\='eshell-stringify REST) had been
 called, possibly converted to a number.
 
 If there is at least one (non-nil) list argument, the result will
index 1bdf4dead894cd774a0056fbef89594ffcf239e0..9a2a69b2c165eaa2f069ce650473c180a6fe5fe2 100644 (file)
@@ -6479,7 +6479,7 @@ to send the output file through additional processing, e.g,
     (let ((outfile (org-export-output-file-name \".tex\" subtreep)))
       (org-export-to-file \\='latex outfile
         async subtreep visible-only body-only ext-plist
-        #'org-latex-compile)))
+        #\\='org-latex-compile)))
 
 When expressed as an anonymous function, using `lambda',
 POST-PROCESS needs to be quoted.