summaryrefslogtreecommitdiff
path: root/lisp/files.el
diff options
context:
space:
mode:
authorStephen Berman <stephen.berman@gmx.net>2016-06-06 09:29:17 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2016-06-06 09:30:22 -0700
commit9d5ccebeba0506f7280662630f0ee85a52c8a327 (patch)
tree2416109c65e45b2f62e6eec7cf124fb0f41fcc12 /lisp/files.el
parent0b33a23ffecdb4ca87806c9fc7568d17c5ca7e98 (diff)
downloademacs-9d5ccebeba0506f7280662630f0ee85a52c8a327.tar.gz
Fix doc string quoting
* lisp/files.el (shell-quote-wildcard-pattern): * lisp/progmodes/vhdl-mode.el (vhdl-mode): * lisp/subr.el (replace-regexp-in-string): * lisp/view.el (view-mode): * src/nsfns.m (syms_of_nsfns): * src/syntax.c (Fbackward_prefix_chars): Fix quoting problems in doc strings (Bug#23696).
Diffstat (limited to 'lisp/files.el')
-rw-r--r--lisp/files.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/files.el b/lisp/files.el
index c5cfa8e57f8..1f97fa5f52f 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -6147,7 +6147,7 @@ and `list-directory-verbose-switches'."
PATTERN is assumed to represent a file-name wildcard suitable for the
underlying filesystem. For Unix and GNU/Linux, each character from the
-set [ \\t\\n;<>&|()`'\"#$] is quoted with a backslash; for DOS/Windows, all
+set [ \\t\\n;<>&|()\\=`\\='\"#$] is quoted with a backslash; for DOS/Windows, all
the parts of the pattern which don't include wildcard characters are
quoted with double quotes.