diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2022-08-03 13:13:57 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-08-03 13:14:32 +0200 |
commit | 0a6e2b3bfce8b5ae9e713e0668cb3cf5609073e2 (patch) | |
tree | b85e04fe62a2c784a19facde3fa68c1d7c7794bb /lisp/emacs-lisp | |
parent | 90addeb2442687c34cd236edead285348d49f4ba (diff) | |
download | emacs-0a6e2b3bfce8b5ae9e713e0668cb3cf5609073e2.tar.gz |
Fix quoting of #' in some doc strings
* 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.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/edebug.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/edebug.el b/lisp/emacs-lisp/edebug.el index 1a1d58d6e36..dff16df0029 100644 --- a/lisp/emacs-lisp/edebug.el +++ b/lisp/emacs-lisp/edebug.el @@ -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) |