diff options
author | Chong Yidong <cyd@gnu.org> | 2012-04-27 11:10:38 +0800 |
---|---|---|
committer | Chong Yidong <cyd@gnu.org> | 2012-04-27 11:10:38 +0800 |
commit | a8e7d6d783219972c08fd49a3a2afaf26eb139c2 (patch) | |
tree | 5e86d23d9285389791dc8321d8a8a2ece2247bea /doc/lispref/syntax.texi | |
parent | b360839071ef6c7a9e917fe57a4aaeb39138e8c0 (diff) | |
parent | c5bb756916baa63cc663d68d4c24e5ad33a764e8 (diff) | |
download | emacs-a8e7d6d783219972c08fd49a3a2afaf26eb139c2.tar.gz |
Merge changes from emacs-24 branch
Diffstat (limited to 'doc/lispref/syntax.texi')
-rw-r--r-- | doc/lispref/syntax.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/lispref/syntax.texi b/doc/lispref/syntax.texi index 830ceeedefd..4a860657444 100644 --- a/doc/lispref/syntax.texi +++ b/doc/lispref/syntax.texi @@ -56,7 +56,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 @@ -617,7 +617,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), |