aboutsummaryrefslogtreecommitdiffstats
path: root/lispref/syntax.texi
diff options
context:
space:
mode:
Diffstat (limited to 'lispref/syntax.texi')
-rw-r--r--lispref/syntax.texi13
1 files changed, 7 insertions, 6 deletions
diff --git a/lispref/syntax.texi b/lispref/syntax.texi
index 47f09944880..340f74632bd 100644
--- a/lispref/syntax.texi
+++ b/lispref/syntax.texi
@@ -6,7 +6,7 @@
6@setfilename ../info/syntax 6@setfilename ../info/syntax
7@node Syntax Tables, Abbrevs, Searching and Matching, Top 7@node Syntax Tables, Abbrevs, Searching and Matching, Top
8@chapter Syntax Tables 8@chapter Syntax Tables
9@cindex parsing 9@cindex parsing buffer text
10@cindex syntax table 10@cindex syntax table
11@cindex text parsing 11@cindex text parsing
12 12
@@ -80,7 +80,7 @@ This function returns @code{t} if @var{object} is a syntax table.
80 80
81@node Syntax Descriptors 81@node Syntax Descriptors
82@section Syntax Descriptors 82@section Syntax Descriptors
83@cindex syntax classes 83@cindex syntax class
84 84
85 This section describes the syntax classes and flags that denote the 85 This section describes the syntax classes and flags that denote the
86syntax of a character, and how they are represented as a @dfn{syntax 86syntax of a character, and how they are represented as a @dfn{syntax
@@ -203,7 +203,7 @@ we do not want them to turn off the usual syntactic properties of
203other characters in the quotation. 203other characters in the quotation.
204@end deffn 204@end deffn
205 205
206@deffn {Syntax class} @w{escape} 206@deffn {Syntax class} @w{escape-syntax character}
207An @dfn{escape character} (designated by @samp{\}) starts an escape 207An @dfn{escape character} (designated by @samp{\}) starts an escape
208sequence such as is used in C string and character constants. The 208sequence such as is used in C string and character constants. The
209character @samp{\} belongs to this class in both C and Lisp. (In C, it 209character @samp{\} belongs to this class in both C and Lisp. (In C, it
@@ -253,7 +253,7 @@ English text has no comment characters. In Lisp, the semicolon
253(@samp{;}) starts a comment and a newline or formfeed ends one. 253(@samp{;}) starts a comment and a newline or formfeed ends one.
254@end deffn 254@end deffn
255 255
256@deffn {Syntax class} @w{inherit} 256@deffn {Syntax class} @w{inherit standard syntax}
257This syntax class does not specify a particular syntax. It says to look 257This syntax class does not specify a particular syntax. It says to look
258in the standard syntax table to find the syntax of this character. The 258in the standard syntax table to find the syntax of this character. The
259designator for this syntax class is @samp{@@}. 259designator for this syntax class is @samp{@@}.
@@ -1011,8 +1011,9 @@ corresponds to each syntax flag.
1011@end multitable 1011@end multitable
1012 1012
1013@defun string-to-syntax @var{desc} 1013@defun string-to-syntax @var{desc}
1014This function returns the internal form @code{(@var{syntax-code} . 1014This function returns the internal form corresponding to the syntax
1015@var{matching-char})} corresponding to the syntax descriptor @var{desc}. 1015descriptor @var{desc}, a cons cell @code{(@var{syntax-code}
1016. @var{matching-char})}.
1016@end defun 1017@end defun
1017 1018
1018@defun syntax-after pos 1019@defun syntax-after pos