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