summaryrefslogtreecommitdiff
path: root/doc/lispref/syntax.texi
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2012-04-25 20:31:47 -0400
committerGlenn Morris <rgm@gnu.org>2012-04-25 20:31:47 -0400
commit16152b76a4f0fd82674479b64d923bd86aab5f24 (patch)
tree7f092a987de857a29a37dae62e2428ff56708186 /doc/lispref/syntax.texi
parent84412f2cbb7f282c15857493602b80f60e562051 (diff)
downloademacs-16152b76a4f0fd82674479b64d923bd86aab5f24.tar.gz
Use Texinfo recommended convention for quotes+punctuation.
Diffstat (limited to 'doc/lispref/syntax.texi')
-rw-r--r--doc/lispref/syntax.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/lispref/syntax.texi b/doc/lispref/syntax.texi
index e2fb3238642..af6243fd457 100644
--- a/doc/lispref/syntax.texi
+++ b/doc/lispref/syntax.texi
@@ -57,7 +57,7 @@ Modes}, for an example of how to set up a syntax table.
A syntax table can inherit the data for some characters from the
standard syntax table, while specifying other characters itself. The
``inherit'' syntax class means ``inherit this character's syntax from
-the standard syntax table.'' Just changing the standard syntax for a
+the standard syntax table''. Just changing the standard syntax for a
character affects all syntax tables that inherit from it.
@defun syntax-table-p object
@@ -618,7 +618,7 @@ higher-level functions for moving over balanced expressions.
A character's syntax controls how it changes the state of the
parser, rather than describing the state itself. For example, a
string delimiter character toggles the parser state between
-``in-string'' and ``in-code,'' but the syntax of characters does not
+``in-string'' and ``in-code'', but the syntax of characters does not
directly say whether they are inside a string. For example (note that
15 is the syntax code for generic string delimiters),