Move inclusion of unistd.h to top, else fails on
[emacs.git] / lispref / syntax.texi
blob77fe0c46cfe7bb5f8f9e93563bf4814cf06481d1
1 @c -*-texinfo-*-
2 @c This is part of the GNU Emacs Lisp Reference Manual.
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998 Free Software Foundation, Inc. 
4 @c See the file elisp.texi for copying conditions.
5 @setfilename ../info/syntax
6 @node Syntax Tables, Abbrevs, Searching and Matching, Top
7 @chapter Syntax Tables
8 @cindex parsing
9 @cindex syntax table
10 @cindex text parsing
12   A @dfn{syntax table} specifies the syntactic textual function of each
13 character.  This information is used by the parsing commands, the
14 complex movement commands, and others to determine where words, symbols,
15 and other syntactic constructs begin and end.  The current syntax table
16 controls the meaning of the word motion functions (@pxref{Word Motion})
17 and the list motion functions (@pxref{List Motion}), as well as the
18 functions in this chapter.
20 @menu
21 * Basics: Syntax Basics.     Basic concepts of syntax tables.
22 * Desc: Syntax Descriptors.  How characters are classified.
23 * Syntax Table Functions::   How to create, examine and alter syntax tables.
24 * Syntax Properties::        Overriding syntax with text properties.
25 * Motion and Syntax::        Moving over characters with certain syntaxes.
26 * Parsing Expressions::      Parsing balanced expressions
27                                 using the syntax table.
28 * Standard Syntax Tables::   Syntax tables used by various major modes.
29 * Syntax Table Internals::   How syntax table information is stored.
30 * Categories::               Another way of classifying character syntax.
31 @end menu
33 @node Syntax Basics
34 @section Syntax Table Concepts
36 @ifinfo
37   A @dfn{syntax table} provides Emacs with the information that
38 determines the syntactic use of each character in a buffer.  This
39 information is used by the parsing commands, the complex movement
40 commands, and others to determine where words, symbols, and other
41 syntactic constructs begin and end.  The current syntax table controls
42 the meaning of the word motion functions (@pxref{Word Motion}) and the
43 list motion functions (@pxref{List Motion}) as well as the functions in
44 this chapter.
45 @end ifinfo
47   A syntax table is a char-table (@pxref{Char-Tables}).  Each element is
48 a list that encodes the syntax of the character in question.
50   Syntax tables are used only for moving across text, not for the Emacs
51 Lisp reader.  Emacs Lisp uses built-in syntactic rules when reading Lisp
52 expressions, and these rules cannot be changed.
54   Each buffer has its own major mode, and each major mode has its own
55 idea of the syntactic class of various characters.  For example, in Lisp
56 mode, the character @samp{;} begins a comment, but in C mode, it
57 terminates a statement.  To support these variations, Emacs makes the
58 choice of syntax table local to each buffer.  Typically, each major
59 mode has its own syntax table and installs that table in each buffer
60 that uses that mode.  Changing this table alters the syntax in all
61 those buffers as well as in any buffers subsequently put in that mode.
62 Occasionally several similar modes share one syntax table.
63 @xref{Example Major Modes}, for an example of how to set up a syntax
64 table.
66 A syntax table can inherit the data for some characters from the
67 standard syntax table, while specifying other characters itself.  The
68 ``inherit'' syntax class means ``inherit this character's syntax from
69 the standard syntax table.''  Just changing the standard syntax for a
70 characters affects all syntax tables which inherit from it.
72 @defun syntax-table-p object
73 This function returns @code{t} if @var{object} is a syntax table.
74 @end defun
76 @node Syntax Descriptors
77 @section Syntax Descriptors
78 @cindex syntax classes
80   This section describes the syntax classes and flags that denote the
81 syntax of a character, and how they are represented as a @dfn{syntax
82 descriptor}, which is a Lisp string that you pass to
83 @code{modify-syntax-entry} to specify the desired syntax.
85   Emacs defines a number of @dfn{syntax classes}.  Each syntax table
86 puts each character into one class.  There is no necessary relationship
87 between the class of a character in one syntax table and its class in
88 any other table.
90   Each class is designated by a mnemonic character, which serves as the
91 name of the class when you need to specify a class.  Usually the
92 designator character is one that is frequently in that class; however,
93 its meaning as a designator is unvarying and independent of what syntax
94 that character currently has.
96 @cindex syntax descriptor
97   A syntax descriptor is a Lisp string that specifies a syntax class, a
98 matching character (used only for the parenthesis classes) and flags.
99 The first character is the designator for a syntax class.  The second
100 character is the character to match; if it is unused, put a space there.
101 Then come the characters for any desired flags.  If no matching
102 character or flags are needed, one character is sufficient.
104   For example, the syntax descriptor for the character @samp{*} in C
105 mode is @samp{@w{. 23}} (i.e., punctuation, matching character slot
106 unused, second character of a comment-starter, first character of an
107 comment-ender), and the entry for @samp{/} is @samp{@w{. 14}} (i.e.,
108 punctuation, matching character slot unused, first character of a
109 comment-starter, second character of a comment-ender).
111 @menu
112 * Syntax Class Table::      Table of syntax classes.
113 * Syntax Flags::            Additional flags each character can have.
114 @end menu
116 @node Syntax Class Table
117 @subsection Table of Syntax Classes
119   Here is a table of syntax classes, the characters that stand for them,
120 their meanings, and examples of their use.
122 @deffn {Syntax class} @w{whitespace character}
123 @dfn{Whitespace characters} (designated by @w{@samp{@ }} or @samp{-})
124 separate symbols and words from each other.  Typically, whitespace
125 characters have no other syntactic significance, and multiple whitespace
126 characters are syntactically equivalent to a single one.  Space, tab,
127 newline and formfeed are almost always classified as whitespace.
128 @end deffn
130 @deffn {Syntax class} @w{word constituent}
131 @dfn{Word constituents} (designated by @samp{w}) are parts of normal
132 English words and are typically used in variable and command names in
133 programs.  All upper- and lower-case letters, and the digits, are typically
134 word constituents.
135 @end deffn
137 @deffn {Syntax class} @w{symbol constituent}
138 @dfn{Symbol constituents} (designated by @samp{_}) are the extra
139 characters that are used in variable and command names along with word
140 constituents.  For example, the symbol constituents class is used in
141 Lisp mode to indicate that certain characters may be part of symbol
142 names even though they are not part of English words.  These characters
143 are @samp{$&*+-_<>}.  In standard C, the only non-word-constituent
144 character that is valid in symbols is underscore (@samp{_}).
145 @end deffn
147 @deffn {Syntax class} @w{punctuation character}
148 @dfn{Punctuation characters} (designated by @samp{.}) are those
149 characters that are used as punctuation in English, or are used in some
150 way in a programming language to separate symbols from one another.
151 Most programming language modes, including Emacs Lisp mode, have no
152 characters in this class since the few characters that are not symbol or
153 word constituents all have other uses.
154 @end deffn
156 @deffn {Syntax class} @w{open parenthesis character}
157 @deffnx {Syntax class} @w{close parenthesis character}
158 @cindex parenthesis syntax
159 Open and close @dfn{parenthesis characters} are characters used in
160 dissimilar pairs to surround sentences or expressions.  Such a grouping
161 is begun with an open parenthesis character and terminated with a close.
162 Each open parenthesis character matches a particular close parenthesis
163 character, and vice versa.  Normally, Emacs indicates momentarily the
164 matching open parenthesis when you insert a close parenthesis.
165 @xref{Blinking}.
167 The class of open parentheses is designated by @samp{(}, and that of
168 close parentheses by @samp{)}.
170 In English text, and in C code, the parenthesis pairs are @samp{()},
171 @samp{[]}, and @samp{@{@}}.  In Emacs Lisp, the delimiters for lists and
172 vectors (@samp{()} and @samp{[]}) are classified as parenthesis
173 characters.
174 @end deffn
176 @deffn {Syntax class} @w{string quote}
177 @dfn{String quote characters} (designated by @samp{"}) are used in
178 many languages, including Lisp and C, to delimit string constants.  The
179 same string quote character appears at the beginning and the end of a
180 string.  Such quoted strings do not nest.
182 The parsing facilities of Emacs consider a string as a single token.
183 The usual syntactic meanings of the characters in the string are
184 suppressed.
186 The Lisp modes have two string quote characters: double-quote (@samp{"})
187 and vertical bar (@samp{|}).  @samp{|} is not used in Emacs Lisp, but it
188 is used in Common Lisp.  C also has two string quote characters:
189 double-quote for strings, and single-quote (@samp{'}) for character
190 constants.
192 English text has no string quote characters because English is not a
193 programming language.  Although quotation marks are used in English,
194 we do not want them to turn off the usual syntactic properties of
195 other characters in the quotation.
196 @end deffn
198 @deffn {Syntax class} @w{escape}
199 An @dfn{escape character} (designated by @samp{\}) starts an escape
200 sequence such as is used in C string and character constants.  The
201 character @samp{\} belongs to this class in both C and Lisp.  (In C, it
202 is used thus only inside strings, but it turns out to cause no trouble
203 to treat it this way throughout C code.)
205 Characters in this class count as part of words if
206 @code{words-include-escapes} is non-@code{nil}.  @xref{Word Motion}.
207 @end deffn
209 @deffn {Syntax class} @w{character quote}
210 A @dfn{character quote character} (designated by @samp{/}) quotes the
211 following character so that it loses its normal syntactic meaning.  This
212 differs from an escape character in that only the character immediately
213 following is ever affected.
215 Characters in this class count as part of words if
216 @code{words-include-escapes} is non-@code{nil}.  @xref{Word Motion}.
218 This class is used for backslash in @TeX{} mode.
219 @end deffn
221 @deffn {Syntax class} @w{paired delimiter}
222 @dfn{Paired delimiter characters} (designated by @samp{$}) are like
223 string quote characters except that the syntactic properties of the
224 characters between the delimiters are not suppressed.  Only @TeX{} mode
225 uses a paired delimiter presently---the @samp{$} that both enters and
226 leaves math mode.
227 @end deffn
229 @deffn {Syntax class} @w{expression prefix}
230 An @dfn{expression prefix operator} (designated by @samp{'}) is used for
231 syntactic operators that are considered as part of an expression if they
232 appear next to one.  In Lisp modes, these characters include the
233 apostrophe, @samp{'} (used for quoting), the comma, @samp{,} (used in
234 macros), and @samp{#} (used in the read syntax for certain data types).
235 @end deffn
237 @deffn {Syntax class} @w{comment starter}
238 @deffnx {Syntax class} @w{comment ender}
239 @cindex comment syntax
240 The @dfn{comment starter} and @dfn{comment ender} characters are used in
241 various languages to delimit comments.  These classes are designated
242 by @samp{<} and @samp{>}, respectively.
244 English text has no comment characters.  In Lisp, the semicolon
245 (@samp{;}) starts a comment and a newline or formfeed ends one.
246 @end deffn
248 @deffn {Syntax class} @w{inherit}
249 This syntax class does not specify a particular syntax.  It says to look
250 in the standard syntax table to find the syntax of this character.  The
251 designator for this syntax code is @samp{@@}.
252 @end deffn
254 @deffn {Syntax class} @w{generic comment delimiter}
255 A @dfn{generic comment delimiter} character starts or ends a special
256 kind of comment.  @emph{Any} generic comment delimiter matches
257 @emph{any} generic comment delimiter, but they cannot match a comment
258 starter or comment ender; generic comment delimiters can only match each
259 other.
261 This syntax class is primarily meant for use with the
262 @code{syntax-table} text property (@pxref{Syntax Properties}).  You can
263 mark any range of characters as forming a comment, by giving the first
264 and last characters of the range @code{syntax-table} properties
265 identifying them as generic comment delimiters.
266 @end deffn
268 @deffn {Syntax class} @w{generic string delimiter}
269 A @dfn{generic string delimiter} character starts or ends a string.
270 This class differs from the string quote class in that @emph{any}
271 generic string delimiter can match any other generic string delimiter;
272 but they do not match ordinary string quote characters.
274 This syntax class is primarily meant for use with the
275 @code{syntax-table} text property (@pxref{Syntax Properties}).  You can
276 mark any range of characters as forming a string constant, by giving the
277 first and last characters of the range @code{syntax-table} properties
278 identifying them as generic string delimiters.
279 @end deffn
281 @node Syntax Flags
282 @subsection Syntax Flags
283 @cindex syntax flags
285   In addition to the classes, entries for characters in a syntax table
286 can specify flags.  There are six possible flags, represented by the
287 characters @samp{1}, @samp{2}, @samp{3}, @samp{4}, @samp{b} and
288 @samp{p}.
290   All the flags except @samp{p} are used to describe multi-character
291 comment delimiters.  The digit flags indicate that a character can
292 @emph{also} be part of a comment sequence, in addition to the syntactic
293 properties associated with its character class.  The flags are
294 independent of the class and each other for the sake of characters such
295 as @samp{*} in C mode, which is a punctuation character, @emph{and} the
296 second character of a start-of-comment sequence (@samp{/*}), @emph{and}
297 the first character of an end-of-comment sequence (@samp{*/}).
299   Here is a table of the possible flags for a character @var{c},
300 and what they mean:
302 @itemize @bullet
303 @item
304 @samp{1} means @var{c} is the start of a two-character comment-start
305 sequence.
307 @item
308 @samp{2} means @var{c} is the second character of such a sequence.
310 @item
311 @samp{3} means @var{c} is the start of a two-character comment-end
312 sequence.
314 @item
315 @samp{4} means @var{c} is the second character of such a sequence.
317 @item
318 @c Emacs 19 feature
319 @samp{b} means that @var{c} as a comment delimiter belongs to the
320 alternative ``b'' comment style.
322 Emacs supports two comment styles simultaneously in any one syntax
323 table.  This is for the sake of C++.  Each style of comment syntax has
324 its own comment-start sequence and its own comment-end sequence.  Each
325 comment must stick to one style or the other; thus, if it starts with
326 the comment-start sequence of style ``b'', it must also end with the
327 comment-end sequence of style ``b''.
329 The two comment-start sequences must begin with the same character; only
330 the second character may differ.  Mark the second character of the
331 ``b''-style comment-start sequence with the @samp{b} flag.
333 A comment-end sequence (one or two characters) applies to the ``b''
334 style if its first character has the @samp{b} flag set; otherwise, it
335 applies to the ``a'' style.
337 The appropriate comment syntax settings for C++ are as follows:
339 @table @asis
340 @item @samp{/}
341 @samp{124b}
342 @item @samp{*}
343 @samp{23}
344 @item newline
345 @samp{>b}
346 @end table
348 This defines four comment-delimiting sequences:
350 @table @asis
351 @item @samp{/*}
352 This is a comment-start sequence for ``a'' style because the
353 second character, @samp{*}, does not have the @samp{b} flag.
355 @item @samp{//}
356 This is a comment-start sequence for ``b'' style because the second
357 character, @samp{/}, does have the @samp{b} flag.
359 @item @samp{*/}
360 This is a comment-end sequence for ``a'' style because the first
361 character, @samp{*}, does not have the @samp{b} flag
363 @item newline
364 This is a comment-end sequence for ``b'' style, because the newline
365 character has the @samp{b} flag.
366 @end table
368 @item
369 @c Emacs 19 feature
370 @samp{p} identifies an additional ``prefix character'' for Lisp syntax.
371 These characters are treated as whitespace when they appear between
372 expressions.  When they appear within an expression, they are handled
373 according to their usual syntax codes.
375 The function @code{backward-prefix-chars} moves back over these
376 characters, as well as over characters whose primary syntax class is
377 prefix (@samp{'}).  @xref{Motion and Syntax}.
378 @end itemize
380 @node Syntax Table Functions
381 @section Syntax Table Functions
383   In this section we describe functions for creating, accessing and
384 altering syntax tables.
386 @defun make-syntax-table
387 This function creates a new syntax table.  Character codes 32 through
388 127 are set up by copying the syntax from the standard syntax table.
389 All other codes are set up to inherit from the standard syntax table.
391 Most major mode syntax tables are created in this way.
392 @end defun
394 @defun copy-syntax-table &optional table
395 This function constructs a copy of @var{table} and returns it.  If
396 @var{table} is not supplied (or is @code{nil}), it returns a copy of the
397 current syntax table.  Otherwise, an error is signaled if @var{table} is
398 not a syntax table.
399 @end defun
401 @deffn Command modify-syntax-entry char syntax-descriptor  &optional table
402 This function sets the syntax entry for @var{char} according to
403 @var{syntax-descriptor}.  The syntax is changed only for @var{table},
404 which defaults to the current buffer's syntax table, and not in any
405 other syntax table.  The argument @var{syntax-descriptor} specifies the
406 desired syntax; this is a string beginning with a class designator
407 character, and optionally containing a matching character and flags as
408 well.  @xref{Syntax Descriptors}.
410 This function always returns @code{nil}.  The old syntax information in
411 the table for this character is discarded.
413 An error is signaled if the first character of the syntax descriptor is not
414 one of the twelve syntax class designator characters.  An error is also
415 signaled if @var{char} is not a character.
417 @example
418 @group
419 @exdent @r{Examples:}
421 ;; @r{Put the space character in class whitespace.}
422 (modify-syntax-entry ?\  " ")
423      @result{} nil
424 @end group
426 @group
427 ;; @r{Make @samp{$} an open parenthesis character,}
428 ;;   @r{with @samp{^} as its matching close.}
429 (modify-syntax-entry ?$ "(^")
430      @result{} nil
431 @end group
433 @group
434 ;; @r{Make @samp{^} a close parenthesis character,}
435 ;;   @r{with @samp{$} as its matching open.}
436 (modify-syntax-entry ?^ ")$")
437      @result{} nil
438 @end group
440 @group
441 ;; @r{Make @samp{/} a punctuation character,}
442 ;;   @r{the first character of a start-comment sequence,}
443 ;;   @r{and the second character of an end-comment sequence.}
444 ;;   @r{This is used in C mode.}
445 (modify-syntax-entry ?/ ". 14")
446      @result{} nil
447 @end group
448 @end example
449 @end deffn
451 @defun char-syntax character
452 This function returns the syntax class of @var{character}, represented
453 by its mnemonic designator character.  This returns @emph{only} the
454 class, not any matching parenthesis or flags.
456 An error is signaled if @var{char} is not a character.
458 The following examples apply to C mode.  The first example shows that
459 the syntax class of space is whitespace (represented by a space).  The
460 second example shows that the syntax of @samp{/} is punctuation.  This
461 does not show the fact that it is also part of comment-start and -end
462 sequences.  The third example shows that open parenthesis is in the class
463 of open parentheses.  This does not show the fact that it has a matching
464 character, @samp{)}.
466 @example
467 @group
468 (char-to-string (char-syntax ?\ ))
469      @result{} " "
470 @end group
472 @group
473 (char-to-string (char-syntax ?/))
474      @result{} "."
475 @end group
477 @group
478 (char-to-string (char-syntax ?\())
479      @result{} "("
480 @end group
481 @end example
482 @end defun
484 @defun set-syntax-table table
485 This function makes @var{table} the syntax table for the current buffer.
486 It returns @var{table}.
487 @end defun
489 @defun syntax-table
490 This function returns the current syntax table, which is the table for
491 the current buffer.
492 @end defun
494 @node Syntax Properties
495 @section Syntax Properties
496 @kindex syntax-table @r{(text property)}
498 When the syntax table is not flexible enough to specify the syntax of a
499 language, you can use @code{syntax-table} text properties to override
500 the syntax table for specific character occurrences in the buffer.
501 @xref{Text Properties}.
503 The valid values of @code{syntax-table} text property are
505 @table @asis
506 @item @var{syntax-table}
507 If the property value is a syntax table, that table is used instead of
508 the current buffer's syntax table to determine the syntax for this
509 occurrence of the character.
511 @item @code{(@var{syntax-code} . @var{matching-char})}
512 A cons cell of this format specifies the syntax for this
513 occurrence of the character.
515 @item @code{nil}
516 If the property is @code{nil}, the character's syntax is determined from
517 the current syntax table in the usual way.
518 @end table
520 @tindex parse-sexp-lookup-properties
521 @defvar parse-sexp-lookup-properties
522 If this is non-@code{nil}, the syntax scanning functions pay attention
523 to syntax text properties.  Otherwise they use only the current syntax
524 table.
525 @end defvar
527 @node Motion and Syntax
528 @section Motion and Syntax
530   This section describes functions for moving across characters in
531 certain syntax classes.  None of these functions exists in Emacs
532 version 18 or earlier.
534 @defun skip-syntax-forward syntaxes &optional limit
535 This function moves point forward across characters having syntax classes
536 mentioned in @var{syntaxes}.  It stops when it encounters the end of
537 the buffer, or position @var{limit} (if specified), or a character it is
538 not supposed to skip.
539 @ignore @c may want to change this.
540 The return value is the distance traveled, which is a nonnegative
541 integer.
542 @end ignore
543 @end defun
545 @defun skip-syntax-backward syntaxes &optional limit
546 This function moves point backward across characters whose syntax
547 classes are mentioned in @var{syntaxes}.  It stops when it encounters
548 the beginning of the buffer, or position @var{limit} (if specified), or a
549 character it is not supposed to skip.
550 @ignore @c may want to change this.
551 The return value indicates the distance traveled.  It is an integer that
552 is zero or less.
553 @end ignore
554 @end defun
556 @defun backward-prefix-chars
557 This function moves point backward over any number of characters with
558 expression prefix syntax.  This includes both characters in the
559 expression prefix syntax class, and characters with the @samp{p} flag.
560 @end defun
562 @node Parsing Expressions
563 @section Parsing Balanced Expressions
565   Here are several functions for parsing and scanning balanced
566 expressions, also known as @dfn{sexps}, in which parentheses match in
567 pairs.  The syntax table controls the interpretation of characters, so
568 these functions can be used for Lisp expressions when in Lisp mode and
569 for C expressions when in C mode.  @xref{List Motion}, for convenient
570 higher-level functions for moving over balanced expressions.
572 @defun parse-partial-sexp start limit &optional target-depth stop-before state stop-comment
573 This function parses a sexp in the current buffer starting at
574 @var{start}, not scanning past @var{limit}.  It stops at position
575 @var{limit} or when certain criteria described below are met, and sets
576 point to the location where parsing stops.  It returns a value
577 describing the status of the parse at the point where it stops.
579 If @var{state} is @code{nil}, @var{start} is assumed to be at the top
580 level of parenthesis structure, such as the beginning of a function
581 definition.  Alternatively, you might wish to resume parsing in the
582 middle of the structure.  To do this, you must provide a @var{state}
583 argument that describes the initial status of parsing.
585 @cindex parenthesis depth
586 If the third argument @var{target-depth} is non-@code{nil}, parsing
587 stops if the depth in parentheses becomes equal to @var{target-depth}.
588 The depth starts at 0, or at whatever is given in @var{state}.
590 If the fourth argument @var{stop-before} is non-@code{nil}, parsing
591 stops when it comes to any character that starts a sexp.  If
592 @var{stop-comment} is non-@code{nil}, parsing stops when it comes to the
593 start of a comment.  If @var{stop-comment} is the symbol
594 @code{syntax-table}, parsing stops after the start of a comment or a
595 string, or the of a comment or a string, whichever comes first.
597 @cindex parse state
598 The fifth argument @var{state} is a nine-element list of the same form
599 as the value of this function, described below.  (It is ok to omit the
600 last element of the nine.)  The return value of one call may be used to
601 initialize the state of the parse on another call to
602 @code{parse-partial-sexp}.
604 The result is a list of nine elements describing the final state of
605 the parse:
607 @enumerate 0
608 @item 
609 The depth in parentheses, counting from 0.
611 @item 
612 @cindex innermost containing parentheses
613 The character position of the start of the innermost parenthetical
614 grouping containing the stopping point; @code{nil} if none.
616 @item 
617 @cindex previous complete subexpression
618 The character position of the start of the last complete subexpression
619 terminated; @code{nil} if none.
621 @item 
622 @cindex inside string
623 Non-@code{nil} if inside a string.  More precisely, this is the
624 character that will terminate the string, or @code{t} if a generic
625 string delimiter character should terminate it.
627 @item 
628 @cindex inside comment
629 @code{t} if inside a comment (of either style).
631 @item 
632 @cindex quote character
633 @code{t} if point is just after a quote character.
635 @item 
636 The minimum parenthesis depth encountered during this scan.
638 @item
639 What kind of comment is active: @code{nil} for a comment of style ``a'',
640 @code{t} for a comment of style ``b'', and @code{syntax-table} for
641 a comment that should be ended by a generic comment delimiter character.
643 @item
644 The string or comment start position.  While inside a comment, this is
645 the position where the comment began; while inside a string, this is the
646 position where the string began.  When outside of strings and comments,
647 this element is @code{nil}.
648 @end enumerate
650 Elements 0, 3, 4, 5 and 7 are significant in the argument @var{state}.
652 @cindex indenting with parentheses
653 This function is most often used to compute indentation for languages
654 that have nested parentheses.
655 @end defun
657 @defun scan-lists from count depth
658 This function scans forward @var{count} balanced parenthetical groupings
659 from position @var{from}.  It returns the position where the scan stops.
660 If @var{count} is negative, the scan moves backwards.
662 If @var{depth} is nonzero, parenthesis depth counting begins from that
663 value.  The only candidates for stopping are places where the depth in
664 parentheses becomes zero; @code{scan-lists} counts @var{count} such
665 places and then stops.  Thus, a positive value for @var{depth} means go
666 out @var{depth} levels of parenthesis.
668 Scanning ignores comments if @code{parse-sexp-ignore-comments} is
669 non-@code{nil}.
671 If the scan reaches the beginning or end of the buffer (or its
672 accessible portion), and the depth is not zero, an error is signaled.
673 If the depth is zero but the count is not used up, @code{nil} is
674 returned.
675 @end defun
677 @defun scan-sexps from count
678 This function scans forward @var{count} sexps from position @var{from}.
679 It returns the position where the scan stops.  If @var{count} is
680 negative, the scan moves backwards.
682 Scanning ignores comments if @code{parse-sexp-ignore-comments} is
683 non-@code{nil}.
685 If the scan reaches the beginning or end of (the accessible part of) the
686 buffer while in the middle of a parenthetical grouping, an error is
687 signaled.  If it reaches the beginning or end between groupings but
688 before count is used up, @code{nil} is returned.
689 @end defun
691 @defvar parse-sexp-ignore-comments
692 @cindex skipping comments
693 If the value is non-@code{nil}, then comments are treated as
694 whitespace by the functions in this section and by @code{forward-sexp}.
696 In older Emacs versions, this feature worked only when the comment
697 terminator is something like @samp{*/}, and appears only to end a
698 comment.  In languages where newlines terminate comments, it was
699 necessary make this variable @code{nil}, since not every newline is the
700 end of a comment.  This limitation no longer exists.
701 @end defvar
703 You can use @code{forward-comment} to move forward or backward over
704 one comment or several comments.
706 @defun forward-comment count
707 This function moves point forward across @var{count} comments (backward,
708 if @var{count} is negative).  If it finds anything other than a comment
709 or whitespace, it stops, leaving point at the place where it stopped.
710 It also stops after satisfying @var{count}.
711 @end defun
713 To move forward over all comments and whitespace following point, use
714 @code{(forward-comment (buffer-size))}.  @code{(buffer-size)} is a good
715 argument to use, because the number of comments in the buffer cannot
716 exceed that many.
718 @node Standard Syntax Tables
719 @section Some Standard Syntax Tables
721   Most of the major modes in Emacs have their own syntax tables.  Here
722 are several of them:
724 @defun standard-syntax-table
725 This function returns the standard syntax table, which is the syntax
726 table used in Fundamental mode.
727 @end defun
729 @defvar text-mode-syntax-table
730 The value of this variable is the syntax table used in Text mode.
731 @end defvar
733 @defvar c-mode-syntax-table
734 The value of this variable is the syntax table for C-mode buffers.
735 @end defvar
737 @defvar emacs-lisp-mode-syntax-table
738 The value of this variable is the syntax table used in Emacs Lisp mode
739 by editing commands.  (It has no effect on the Lisp @code{read}
740 function.)
741 @end defvar
743 @node Syntax Table Internals
744 @section Syntax Table Internals
745 @cindex syntax table internals
747   Lisp programs don't usually work with the elements directly; the
748 Lisp-level syntax table functions usually work with syntax descriptors
749 (@pxref{Syntax Descriptors}).  Nonetheless, here we document the
750 internal format.
752   Each element of a syntax table is a cons cell of the form
753 @code{(@var{syntax-code} . @var{matching-char})}.  The @sc{car},
754 @var{syntax-code}, is an integer that encodes the syntax class, and any
755 flags.  The @sc{cdr}, @var{matching-char}, is non-@code{nil} if
756 a character to match was specified.
758   This table gives the value of @var{syntax-code} which corresponds
759 to each syntactic type.
761 @table @asis
762 @item @i{Integer}
763 @i{Class}
764 @item 0
765 whitespace
766 @item 1
767 punctuation
768 @item 2
769 word
770 @item 3
771 symbol
772 @item 4
773 open parenthesis
774 @item 5
775 close parenthesis
776 @item 6
777 expression prefix
778 @item 7
779 string quote
780 @item 8
781 paired delimiter
782 @item 9
783 escape
784 @item 10
785 character quote
786 @item 11
787 comment-start
788 @item 12
789 comment-end
790 @item 13
791 inherit
792 @item 14
793 comment-fence
794 @item 15
795 string-fence
796 @end table
798   For example, the usual syntax value for @samp{(} is @code{(4 . 41)}.
799 (41 is the character code for @samp{)}.)
801   The flags are encoded in higher order bits, starting 16 bits from the
802 least significant bit.  This table gives the power of two which
803 corresponds to each syntax flag.
805 @table @samp
806 @item @i{Flag}
807 @i{Bit value}
808 @item 1
809 @code{(lsh 1 16)}
810 @item 2
811 @code{(lsh 1 17)}
812 @item 3
813 @code{(lsh 1 18)}
814 @item 4
815 @code{(lsh 1 19)}
816 @item p
817 @code{(lsh 1 20)}
818 @item b
819 @code{(lsh 1 21)}
820 @end table
822 @node Categories
823 @section Categories
824 @cindex categories of characters
826   @dfn{Categories} provide an alternate way of classifying characters
827 syntactically.  You can define a large number of categories, and then
828 independently assign each character to one or more of them.  Unlike
829 syntax classes, categories are not mutually exclusive; it is normal for
830 one character to belong to several categories.
832   Each buffer has a @dfn{category table} which records which categories
833 are defined and also which characters belong to each category.  Each
834 category table defines its own categories.  Each category has a name,
835 which is an @sc{ASCII} printing character in the range @w{@samp{ }} to
836 @samp{~}.  You specify the name of a category when you define it with
837 @code{define-category}.
839   The category table is actually a char-table (@pxref{Char-Tables}).
840 The element of the category table at index @var{c} is a @dfn{category
841 set}---a bool-vector---that indicates which categories character @var{c}
842 belongs to.  In this category set, if the element at index @var{cat} is
843 @code{t}, that means category @var{cat} is a member of the set, and that
844 character @var{c} belongs to category @var{cat}.
846 @defun define-category char docstring &optional table
847 This function defines a new category, with name @var{char} and
848 documentation @var{docstring}.
850 The new category is defined for category table @var{table}, which
851 defaults to the current buffer's category table.
852 @end defun
854 @defun category-docstring category &optional table
855 This function returns the documentation string of category @var{category}
856 in category table @var{table}.
858 @example
859 (category-docstring ?a)
860      @result{} "ASCII"
861 (category-docstring ?l)
862      @result{} "Latin"
863 @end example
864 @end defun
866 @defun get-unused-category table
867 This function returns a category name (a character) which is not
868 currently defined in @var{table}.  If none is still available, it
869 returns @code{nil},
870 @end defun
872 @defun category-table
873 This function returns the current buffer's category table.
874 @end defun
876 @defun category-table-p object
877 This function returns @code{t} if @var{object} is a category table,
878 otherwise @code{nil}.
879 @end defun
881 @defun standard-category-table
882 This function returns the standard category table.
883 @end defun
885 @defun copy-category-table &optional table
886 This function constructs a copy of @var{table} and returns it.  If
887 @var{table} is not supplied (or is @code{nil}), it returns a copy of the
888 current category table.  Otherwise, an error is signaled if @var{table}
889 is not a category table.
890 @end defun
892 @defun set-category-table table
893 This function makes @var{table} the category table for the current
894 buffer.  It returns @var{table}.
895 @end defun
897 @defun make-category-set categories
898 This function returns a new category set---a bool-vector---whose initial
899 contents are the categories listed in the string @var{categories}.  The
900 elements of @var{categories} should be category names; the new category
901 set has @code{t} for each of those categories, and @code{nil} for all
902 other categories.
904 @example
905 (make-category-set "al")
906      @result{} #&128"\0\0\0\0\0\0\0\0\0\0\0\0\2\20\0\0"
907 @end example
908 @end defun
910 @defun char-category-set char
911 This function returns the category set for character @var{char}.  This
912 is the bool-vector which records which categories the character
913 @var{char} belongs to.  The function @code{char-category-set} does not
914 allocate storage, because it returns the same bool-vector that exists in
915 the category table.
917 @example
918 (char-category-set ?a)
919      @result{} #&128"\0\0\0\0\0\0\0\0\0\0\0\0\2\20\0\0"
920 @end example
921 @end defun
923 @defun category-set-mnemonics category-set
924 This function converts the category set @var{category-set} into a string
925 containing the names of all the categories that are members of the set.
927 @example
928 (category-set-mnemonics (char-category-set ?a))
929      @result{} "al"
930 @end example
931 @end defun
933 @defun modify-category-entry character category &optional table reset
934 This function modifies the category set of @var{character} in category
935 table @var{table} (which defaults to the current buffer's category
936 table).
938 Normally, it modifies the category set by adding @var{category} to it.
939 But if @var{reset} is non-@code{nil}, then it deletes @var{category}
940 instead.
941 @end defun