aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2015-08-28 20:32:03 -0700
committerPaul Eggert2015-08-28 20:32:39 -0700
commitff441d3508add9eed3c5217ae7b0a8800b9fc917 (patch)
tree7cb511c46c115ef734e563d29ebf058e54838a70 /src
parentc6af816affb36d512f806725518e6e5f2353b197 (diff)
downloademacs-ff441d3508add9eed3c5217ae7b0a8800b9fc917.tar.gz
emacs-ff441d3508add9eed3c5217ae7b0a8800b9fc917.zip
Fix minor text quoting problems in lisp top level
* lisp/apropos.el (apropos-describe-plist): * lisp/cus-theme.el (customize-themes): * lisp/dired.el (dired-log): * lisp/help-fns.el (describe-variable): * lisp/hexl.el (hexl-insert-multibyte-char): * lisp/info.el (Info-finder-find-node): * lisp/json.el (json-read-string): * lisp/novice.el (disabled-command-function) (disabled-command-function): * lisp/startup.el (normal-mouse-startup-screen): * lisp/woman.el (WoMan-log, WoMan-warn): Respect text quoting style in doc string or diagnostic. * lisp/replace.el (replace-character-fold): * src/syntax.c (Fmodify_syntax_entry): Escape an apostrophe in a docstring. * lisp/tempo.el (tempo-define-template): Remove confusing apostrophe from docstring. * lisp/whitespace.el (whitespace-mark-x): Use directed quotes in docstring.
Diffstat (limited to 'src')
-rw-r--r--src/syntax.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syntax.c b/src/syntax.c
index 30560affdf0..dc82210e79d 100644
--- a/src/syntax.c
+++ b/src/syntax.c
@@ -1129,7 +1129,7 @@ The first character of NEWENTRY should be one of the following:
1129 _ symbol constituent. . punctuation. 1129 _ symbol constituent. . punctuation.
1130 ( open-parenthesis. ) close-parenthesis. 1130 ( open-parenthesis. ) close-parenthesis.
1131 " string quote. \\ escape. 1131 " string quote. \\ escape.
1132 $ paired delimiter. ' expression quote or prefix operator. 1132 $ paired delimiter. \\=' expression quote or prefix operator.
1133 < comment starter. > comment ender. 1133 < comment starter. > comment ender.
1134 / character-quote. @ inherit from parent table. 1134 / character-quote. @ inherit from parent table.
1135 | generic string fence. ! generic comment fence. 1135 | generic string fence. ! generic comment fence.