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/eshell | |
parent | 90addeb2442687c34cd236edead285348d49f4ba (diff) | |
download | emacs-0a6e2b3bfce8b5ae9e713e0668cb3cf5609073e2.tar.gz emacs-0a6e2b3bfce8b5ae9e713e0668cb3cf5609073e2.tar.bz2 emacs-0a6e2b3bfce8b5ae9e713e0668cb3cf5609073e2.zip |
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/eshell')
-rw-r--r-- | lisp/eshell/esh-arg.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/eshell/esh-arg.el b/lisp/eshell/esh-arg.el index 459487f4358..8e44a88459f 100644 --- a/lisp/eshell/esh-arg.el +++ b/lisp/eshell/esh-arg.el @@ -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 |