Add 2011 to FSF/AIST copyright years.
[bpt/emacs.git] / doc / lispref / syntax.texi
CommitLineData
b8d4c8d0
GM
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, 1999, 2001,
5df4f04c 4@c 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
d24880de 5@c Free Software Foundation, Inc.
b8d4c8d0 6@c See the file elisp.texi for copying conditions.
6336d8c3 7@setfilename ../../info/syntax
b8d4c8d0
GM
8@node Syntax Tables, Abbrevs, Searching and Matching, Top
9@chapter Syntax Tables
10@cindex parsing buffer text
11@cindex syntax table
12@cindex text parsing
13
14 A @dfn{syntax table} specifies the syntactic textual function of each
15character. This information is used by the @dfn{parsing functions}, the
16complex movement commands, and others to determine where words, symbols,
17and other syntactic constructs begin and end. The current syntax table
18controls the meaning of the word motion functions (@pxref{Word Motion})
19and the list motion functions (@pxref{List Motion}), as well as the
20functions in this chapter.
21
22@menu
23* Basics: Syntax Basics. Basic concepts of syntax tables.
24* Desc: Syntax Descriptors. How characters are classified.
25* Syntax Table Functions:: How to create, examine and alter syntax tables.
26* Syntax Properties:: Overriding syntax with text properties.
d24880de 27* Motion and Syntax:: Moving over characters with certain syntaxes.
b8d4c8d0
GM
28* Parsing Expressions:: Parsing balanced expressions
29 using the syntax table.
30* Standard Syntax Tables:: Syntax tables used by various major modes.
31* Syntax Table Internals:: How syntax table information is stored.
32* Categories:: Another way of classifying character syntax.
33@end menu
34
35@node Syntax Basics
36@section Syntax Table Concepts
37
38@ifnottex
39 A @dfn{syntax table} provides Emacs with the information that
40determines the syntactic use of each character in a buffer. This
41information is used by the parsing commands, the complex movement
42commands, and others to determine where words, symbols, and other
43syntactic constructs begin and end. The current syntax table controls
44the meaning of the word motion functions (@pxref{Word Motion}) and the
45list motion functions (@pxref{List Motion}) as well as the functions in
46this chapter.
47@end ifnottex
48
49 A syntax table is a char-table (@pxref{Char-Tables}). The element at
50index @var{c} describes the character with code @var{c}. The element's
51value should be a list that encodes the syntax of the character in
52question.
53
54 Syntax tables are used only for moving across text, not for the Emacs
55Lisp reader. Emacs Lisp uses built-in syntactic rules when reading Lisp
56expressions, and these rules cannot be changed. (Some Lisp systems
57provide ways to redefine the read syntax, but we decided to leave this
58feature out of Emacs Lisp for simplicity.)
59
60 Each buffer has its own major mode, and each major mode has its own
61idea of the syntactic class of various characters. For example, in Lisp
62mode, the character @samp{;} begins a comment, but in C mode, it
63terminates a statement. To support these variations, Emacs makes the
64choice of syntax table local to each buffer. Typically, each major
65mode has its own syntax table and installs that table in each buffer
66that uses that mode. Changing this table alters the syntax in all
67those buffers as well as in any buffers subsequently put in that mode.
68Occasionally several similar modes share one syntax table.
69@xref{Example Major Modes}, for an example of how to set up a syntax
70table.
71
72A syntax table can inherit the data for some characters from the
73standard syntax table, while specifying other characters itself. The
74``inherit'' syntax class means ``inherit this character's syntax from
75the standard syntax table.'' Just changing the standard syntax for a
76character affects all syntax tables that inherit from it.
77
78@defun syntax-table-p object
79This function returns @code{t} if @var{object} is a syntax table.
80@end defun
81
82@node Syntax Descriptors
83@section Syntax Descriptors
84@cindex syntax class
85
86 This section describes the syntax classes and flags that denote the
87syntax of a character, and how they are represented as a @dfn{syntax
88descriptor}, which is a Lisp string that you pass to
89@code{modify-syntax-entry} to specify the syntax you want.
90
91 The syntax table specifies a syntax class for each character. There
92is no necessary relationship between the class of a character in one
93syntax table and its class in any other table.
94
95 Each class is designated by a mnemonic character, which serves as the
96name of the class when you need to specify a class. Usually the
97designator character is one that is often assigned that class; however,
98its meaning as a designator is unvarying and independent of what syntax
99that character currently has. Thus, @samp{\} as a designator character
100always gives ``escape character'' syntax, regardless of what syntax
101@samp{\} currently has.
102
103@cindex syntax descriptor
104 A syntax descriptor is a Lisp string that specifies a syntax class, a
105matching character (used only for the parenthesis classes) and flags.
106The first character is the designator for a syntax class. The second
107character is the character to match; if it is unused, put a space there.
108Then come the characters for any desired flags. If no matching
109character or flags are needed, one character is sufficient.
110
111 For example, the syntax descriptor for the character @samp{*} in C
112mode is @samp{@w{. 23}} (i.e., punctuation, matching character slot
113unused, second character of a comment-starter, first character of a
114comment-ender), and the entry for @samp{/} is @samp{@w{. 14}} (i.e.,
115punctuation, matching character slot unused, first character of a
116comment-starter, second character of a comment-ender).
117
118@menu
119* Syntax Class Table:: Table of syntax classes.
120* Syntax Flags:: Additional flags each character can have.
121@end menu
122
123@node Syntax Class Table
124@subsection Table of Syntax Classes
125
126 Here is a table of syntax classes, the characters that stand for them,
127their meanings, and examples of their use.
128
129@deffn {Syntax class} @w{whitespace character}
130@dfn{Whitespace characters} (designated by @w{@samp{@ }} or @samp{-})
131separate symbols and words from each other. Typically, whitespace
132characters have no other syntactic significance, and multiple whitespace
133characters are syntactically equivalent to a single one. Space, tab,
134newline and formfeed are classified as whitespace in almost all major
135modes.
136@end deffn
137
138@deffn {Syntax class} @w{word constituent}
139@dfn{Word constituents} (designated by @samp{w}) are parts of words in
140human languages, and are typically used in variable and command names
141in programs. All upper- and lower-case letters, and the digits, are
142typically word constituents.
143@end deffn
144
145@deffn {Syntax class} @w{symbol constituent}
146@dfn{Symbol constituents} (designated by @samp{_}) are the extra
147characters that are used in variable and command names along with word
148constituents. For example, the symbol constituents class is used in
149Lisp mode to indicate that certain characters may be part of symbol
150names even though they are not part of English words. These characters
151are @samp{$&*+-_<>}. In standard C, the only non-word-constituent
152character that is valid in symbols is underscore (@samp{_}).
153@end deffn
154
155@deffn {Syntax class} @w{punctuation character}
156@dfn{Punctuation characters} (designated by @samp{.}) are those
157characters that are used as punctuation in English, or are used in some
158way in a programming language to separate symbols from one another.
159Some programming language modes, such as Emacs Lisp mode, have no
160characters in this class since the few characters that are not symbol or
161word constituents all have other uses. Other programming language modes,
162such as C mode, use punctuation syntax for operators.
163@end deffn
164
165@deffn {Syntax class} @w{open parenthesis character}
166@deffnx {Syntax class} @w{close parenthesis character}
167@cindex parenthesis syntax
168Open and close @dfn{parenthesis characters} are characters used in
169dissimilar pairs to surround sentences or expressions. Such a grouping
170is begun with an open parenthesis character and terminated with a close.
171Each open parenthesis character matches a particular close parenthesis
172character, and vice versa. Normally, Emacs indicates momentarily the
173matching open parenthesis when you insert a close parenthesis.
174@xref{Blinking}.
175
176The class of open parentheses is designated by @samp{(}, and that of
177close parentheses by @samp{)}.
178
179In English text, and in C code, the parenthesis pairs are @samp{()},
180@samp{[]}, and @samp{@{@}}. In Emacs Lisp, the delimiters for lists and
181vectors (@samp{()} and @samp{[]}) are classified as parenthesis
182characters.
183@end deffn
184
185@deffn {Syntax class} @w{string quote}
186@dfn{String quote characters} (designated by @samp{"}) are used in
187many languages, including Lisp and C, to delimit string constants. The
188same string quote character appears at the beginning and the end of a
189string. Such quoted strings do not nest.
190
191The parsing facilities of Emacs consider a string as a single token.
192The usual syntactic meanings of the characters in the string are
193suppressed.
194
195The Lisp modes have two string quote characters: double-quote (@samp{"})
196and vertical bar (@samp{|}). @samp{|} is not used in Emacs Lisp, but it
197is used in Common Lisp. C also has two string quote characters:
198double-quote for strings, and single-quote (@samp{'}) for character
199constants.
200
201English text has no string quote characters because English is not a
202programming language. Although quotation marks are used in English,
203we do not want them to turn off the usual syntactic properties of
204other characters in the quotation.
205@end deffn
206
207@deffn {Syntax class} @w{escape-syntax character}
208An @dfn{escape character} (designated by @samp{\}) starts an escape
209sequence such as is used in C string and character constants. The
210character @samp{\} belongs to this class in both C and Lisp. (In C, it
211is used thus only inside strings, but it turns out to cause no trouble
212to treat it this way throughout C code.)
213
214Characters in this class count as part of words if
215@code{words-include-escapes} is non-@code{nil}. @xref{Word Motion}.
216@end deffn
217
218@deffn {Syntax class} @w{character quote}
219A @dfn{character quote character} (designated by @samp{/}) quotes the
220following character so that it loses its normal syntactic meaning. This
221differs from an escape character in that only the character immediately
222following is ever affected.
223
224Characters in this class count as part of words if
225@code{words-include-escapes} is non-@code{nil}. @xref{Word Motion}.
226
227This class is used for backslash in @TeX{} mode.
228@end deffn
229
230@deffn {Syntax class} @w{paired delimiter}
231@dfn{Paired delimiter characters} (designated by @samp{$}) are like
232string quote characters except that the syntactic properties of the
233characters between the delimiters are not suppressed. Only @TeX{} mode
234uses a paired delimiter presently---the @samp{$} that both enters and
235leaves math mode.
236@end deffn
237
238@deffn {Syntax class} @w{expression prefix}
239An @dfn{expression prefix operator} (designated by @samp{'}) is used for
240syntactic operators that are considered as part of an expression if they
241appear next to one. In Lisp modes, these characters include the
242apostrophe, @samp{'} (used for quoting), the comma, @samp{,} (used in
243macros), and @samp{#} (used in the read syntax for certain data types).
244@end deffn
245
246@deffn {Syntax class} @w{comment starter}
247@deffnx {Syntax class} @w{comment ender}
248@cindex comment syntax
249The @dfn{comment starter} and @dfn{comment ender} characters are used in
250various languages to delimit comments. These classes are designated
251by @samp{<} and @samp{>}, respectively.
252
253English text has no comment characters. In Lisp, the semicolon
254(@samp{;}) starts a comment and a newline or formfeed ends one.
255@end deffn
256
257@deffn {Syntax class} @w{inherit standard syntax}
258This syntax class does not specify a particular syntax. It says to look
259in the standard syntax table to find the syntax of this character. The
260designator for this syntax class is @samp{@@}.
261@end deffn
262
263@deffn {Syntax class} @w{generic comment delimiter}
264A @dfn{generic comment delimiter} (designated by @samp{!}) starts
265or ends a special kind of comment. @emph{Any} generic comment delimiter
266matches @emph{any} generic comment delimiter, but they cannot match
267a comment starter or comment ender; generic comment delimiters can only
268match each other.
269
270This syntax class is primarily meant for use with the
271@code{syntax-table} text property (@pxref{Syntax Properties}). You can
272mark any range of characters as forming a comment, by giving the first
273and last characters of the range @code{syntax-table} properties
274identifying them as generic comment delimiters.
275@end deffn
276
277@deffn {Syntax class} @w{generic string delimiter}
278A @dfn{generic string delimiter} (designated by @samp{|}) starts or ends
279a string. This class differs from the string quote class in that @emph{any}
280generic string delimiter can match any other generic string delimiter; but
281they do not match ordinary string quote characters.
282
283This syntax class is primarily meant for use with the
284@code{syntax-table} text property (@pxref{Syntax Properties}). You can
285mark any range of characters as forming a string constant, by giving the
286first and last characters of the range @code{syntax-table} properties
287identifying them as generic string delimiters.
288@end deffn
289
290@node Syntax Flags
291@subsection Syntax Flags
292@cindex syntax flags
293
294 In addition to the classes, entries for characters in a syntax table
295can specify flags. There are seven possible flags, represented by the
296characters @samp{1}, @samp{2}, @samp{3}, @samp{4}, @samp{b}, @samp{n},
297and @samp{p}.
298
299 All the flags except @samp{n} and @samp{p} are used to describe
300multi-character comment delimiters. The digit flags indicate that a
301character can @emph{also} be part of a comment sequence, in addition to
302the syntactic properties associated with its character class. The flags
303are independent of the class and each other for the sake of characters
304such as @samp{*} in C mode, which is a punctuation character, @emph{and}
305the second character of a start-of-comment sequence (@samp{/*}),
306@emph{and} the first character of an end-of-comment sequence
307(@samp{*/}).
308
309 Here is a table of the possible flags for a character @var{c},
310and what they mean:
311
312@itemize @bullet
313@item
314@samp{1} means @var{c} is the start of a two-character comment-start
315sequence.
316
317@item
318@samp{2} means @var{c} is the second character of such a sequence.
319
320@item
321@samp{3} means @var{c} is the start of a two-character comment-end
322sequence.
323
324@item
325@samp{4} means @var{c} is the second character of such a sequence.
326
327@item
328@c Emacs 19 feature
329@samp{b} means that @var{c} as a comment delimiter belongs to the
330alternative ``b'' comment style.
331
332Emacs supports two comment styles simultaneously in any one syntax
333table. This is for the sake of C++. Each style of comment syntax has
334its own comment-start sequence and its own comment-end sequence. Each
335comment must stick to one style or the other; thus, if it starts with
336the comment-start sequence of style ``b,'' it must also end with the
337comment-end sequence of style ``b.''
338
339The two comment-start sequences must begin with the same character; only
340the second character may differ. Mark the second character of the
341``b''-style comment-start sequence with the @samp{b} flag.
342
343A comment-end sequence (one or two characters) applies to the ``b''
344style if its first character has the @samp{b} flag set; otherwise, it
345applies to the ``a'' style.
346
347The appropriate comment syntax settings for C++ are as follows:
348
349@table @asis
350@item @samp{/}
351@samp{124b}
352@item @samp{*}
353@samp{23}
354@item newline
355@samp{>b}
356@end table
357
358This defines four comment-delimiting sequences:
359
360@table @asis
361@item @samp{/*}
362This is a comment-start sequence for ``a'' style because the
363second character, @samp{*}, does not have the @samp{b} flag.
364
365@item @samp{//}
366This is a comment-start sequence for ``b'' style because the second
367character, @samp{/}, does have the @samp{b} flag.
368
369@item @samp{*/}
370This is a comment-end sequence for ``a'' style because the first
371character, @samp{*}, does not have the @samp{b} flag.
372
373@item newline
374This is a comment-end sequence for ``b'' style, because the newline
375character has the @samp{b} flag.
376@end table
377
378@item
379@samp{n} on a comment delimiter character specifies
380that this kind of comment can be nested. For a two-character
381comment delimiter, @samp{n} on either character makes it
382nestable.
383
384@item
385@c Emacs 19 feature
386@samp{p} identifies an additional ``prefix character'' for Lisp syntax.
387These characters are treated as whitespace when they appear between
388expressions. When they appear within an expression, they are handled
389according to their usual syntax classes.
390
391The function @code{backward-prefix-chars} moves back over these
392characters, as well as over characters whose primary syntax class is
393prefix (@samp{'}). @xref{Motion and Syntax}.
394@end itemize
395
396@node Syntax Table Functions
397@section Syntax Table Functions
398
399 In this section we describe functions for creating, accessing and
400altering syntax tables.
401
402@defun make-syntax-table &optional table
403This function creates a new syntax table, with all values initialized
404to @code{nil}. If @var{table} is non-@code{nil}, it becomes the
405parent of the new syntax table, otherwise the standard syntax table is
406the parent. Like all char-tables, a syntax table inherits from its
407parent. Thus the original syntax of all characters in the returned
408syntax table is determined by the parent. @xref{Char-Tables}.
409
410Most major mode syntax tables are created in this way.
411@end defun
412
413@defun copy-syntax-table &optional table
414This function constructs a copy of @var{table} and returns it. If
415@var{table} is not supplied (or is @code{nil}), it returns a copy of the
416standard syntax table. Otherwise, an error is signaled if @var{table} is
417not a syntax table.
418@end defun
419
420@deffn Command modify-syntax-entry char syntax-descriptor &optional table
421This function sets the syntax entry for @var{char} according to
f147ff75
CY
422@var{syntax-descriptor}. @var{char} can be a character, or a cons
423cell of the form @code{(@var{min} . @var{max})}; in the latter case,
424the function sets the syntax entries for all characters in the range
425between @var{min} and @var{max}, inclusive.
426
427The syntax is changed only for @var{table}, which defaults to the
428current buffer's syntax table, and not in any other syntax table. The
429argument @var{syntax-descriptor} specifies the desired syntax; this is
430a string beginning with a class designator character, and optionally
431containing a matching character and flags as well. @xref{Syntax
432Descriptors}.
b8d4c8d0
GM
433
434This function always returns @code{nil}. The old syntax information in
435the table for this character is discarded.
436
437An error is signaled if the first character of the syntax descriptor is not
438one of the seventeen syntax class designator characters. An error is also
439signaled if @var{char} is not a character.
440
441@example
442@group
443@exdent @r{Examples:}
444
445;; @r{Put the space character in class whitespace.}
446(modify-syntax-entry ?\s " ")
447 @result{} nil
448@end group
449
450@group
451;; @r{Make @samp{$} an open parenthesis character,}
452;; @r{with @samp{^} as its matching close.}
453(modify-syntax-entry ?$ "(^")
454 @result{} nil
455@end group
456
457@group
458;; @r{Make @samp{^} a close parenthesis character,}
459;; @r{with @samp{$} as its matching open.}
460(modify-syntax-entry ?^ ")$")
461 @result{} nil
462@end group
463
464@group
465;; @r{Make @samp{/} a punctuation character,}
466;; @r{the first character of a start-comment sequence,}
467;; @r{and the second character of an end-comment sequence.}
468;; @r{This is used in C mode.}
469(modify-syntax-entry ?/ ". 14")
470 @result{} nil
471@end group
472@end example
473@end deffn
474
475@defun char-syntax character
476This function returns the syntax class of @var{character}, represented
477by its mnemonic designator character. This returns @emph{only} the
478class, not any matching parenthesis or flags.
479
480An error is signaled if @var{char} is not a character.
481
482The following examples apply to C mode. The first example shows that
483the syntax class of space is whitespace (represented by a space). The
484second example shows that the syntax of @samp{/} is punctuation. This
485does not show the fact that it is also part of comment-start and -end
486sequences. The third example shows that open parenthesis is in the class
487of open parentheses. This does not show the fact that it has a matching
488character, @samp{)}.
489
490@example
491@group
492(string (char-syntax ?\s))
493 @result{} " "
494@end group
495
496@group
497(string (char-syntax ?/))
498 @result{} "."
499@end group
500
501@group
502(string (char-syntax ?\())
503 @result{} "("
504@end group
505@end example
506
507We use @code{string} to make it easier to see the character returned by
508@code{char-syntax}.
509@end defun
510
511@defun set-syntax-table table
512This function makes @var{table} the syntax table for the current buffer.
513It returns @var{table}.
514@end defun
515
516@defun syntax-table
517This function returns the current syntax table, which is the table for
518the current buffer.
519@end defun
520
521@defmac with-syntax-table @var{table} @var{body}@dots{}
522This macro executes @var{body} using @var{table} as the current syntax
523table. It returns the value of the last form in @var{body}, after
524restoring the old current syntax table.
525
526Since each buffer has its own current syntax table, we should make that
527more precise: @code{with-syntax-table} temporarily alters the current
528syntax table of whichever buffer is current at the time the macro
529execution starts. Other buffers are not affected.
530@end defmac
531
532@node Syntax Properties
533@section Syntax Properties
534@kindex syntax-table @r{(text property)}
535
536When the syntax table is not flexible enough to specify the syntax of
537a language, you can use @code{syntax-table} text properties to
538override the syntax table for specific character occurrences in the
539buffer. @xref{Text Properties}. You can use Font Lock mode to set
540@code{syntax-table} text properties. @xref{Setting Syntax
541Properties}.
542
543The valid values of @code{syntax-table} text property are:
544
545@table @asis
546@item @var{syntax-table}
547If the property value is a syntax table, that table is used instead of
548the current buffer's syntax table to determine the syntax for this
549occurrence of the character.
550
551@item @code{(@var{syntax-code} . @var{matching-char})}
552A cons cell of this format specifies the syntax for this
553occurrence of the character. (@pxref{Syntax Table Internals})
554
555@item @code{nil}
556If the property is @code{nil}, the character's syntax is determined from
557the current syntax table in the usual way.
558@end table
559
560@defvar parse-sexp-lookup-properties
561If this is non-@code{nil}, the syntax scanning functions pay attention
562to syntax text properties. Otherwise they use only the current syntax
563table.
564@end defvar
565
566@node Motion and Syntax
567@section Motion and Syntax
568
569 This section describes functions for moving across characters that
570have certain syntax classes.
571
572@defun skip-syntax-forward syntaxes &optional limit
573This function moves point forward across characters having syntax
574classes mentioned in @var{syntaxes} (a string of syntax class
575characters). It stops when it encounters the end of the buffer, or
576position @var{limit} (if specified), or a character it is not supposed
577to skip.
578
579If @var{syntaxes} starts with @samp{^}, then the function skips
580characters whose syntax is @emph{not} in @var{syntaxes}.
581
582The return value is the distance traveled, which is a nonnegative
583integer.
584@end defun
585
586@defun skip-syntax-backward syntaxes &optional limit
587This function moves point backward across characters whose syntax
588classes are mentioned in @var{syntaxes}. It stops when it encounters
589the beginning of the buffer, or position @var{limit} (if specified), or
590a character it is not supposed to skip.
591
592If @var{syntaxes} starts with @samp{^}, then the function skips
593characters whose syntax is @emph{not} in @var{syntaxes}.
594
595The return value indicates the distance traveled. It is an integer that
596is zero or less.
597@end defun
598
599@defun backward-prefix-chars
600This function moves point backward over any number of characters with
601expression prefix syntax. This includes both characters in the
602expression prefix syntax class, and characters with the @samp{p} flag.
603@end defun
604
605@node Parsing Expressions
606@section Parsing Expressions
607
608 This section describes functions for parsing and scanning balanced
609expressions, also known as @dfn{sexps}. Basically, a sexp is either a
610balanced parenthetical grouping, a string, or a symbol name (a
611sequence of characters whose syntax is either word constituent or
612symbol constituent). However, characters whose syntax is expression
613prefix are treated as part of the sexp if they appear next to it.
614
615 The syntax table controls the interpretation of characters, so these
616functions can be used for Lisp expressions when in Lisp mode and for C
617expressions when in C mode. @xref{List Motion}, for convenient
618higher-level functions for moving over balanced expressions.
619
620 A character's syntax controls how it changes the state of the
621parser, rather than describing the state itself. For example, a
622string delimiter character toggles the parser state between
623``in-string'' and ``in-code,'' but the syntax of characters does not
624directly say whether they are inside a string. For example (note that
62515 is the syntax code for generic string delimiters),
626
627@example
628(put-text-property 1 9 'syntax-table '(15 . nil))
629@end example
630
631@noindent
632does not tell Emacs that the first eight chars of the current buffer
633are a string, but rather that they are all string delimiters. As a
634result, Emacs treats them as four consecutive empty string constants.
635
636@menu
637* Motion via Parsing:: Motion functions that work by parsing.
638* Position Parse:: Determining the syntactic state of a position.
639* Parser State:: How Emacs represents a syntactic state.
640* Low-Level Parsing:: Parsing across a specified region.
641* Control Parsing:: Parameters that affect parsing.
642@end menu
643
644@node Motion via Parsing
645@subsection Motion Commands Based on Parsing
646
647 This section describes simple point-motion functions that operate
648based on parsing expressions.
649
650@defun scan-lists from count depth
651This function scans forward @var{count} balanced parenthetical groupings
652from position @var{from}. It returns the position where the scan stops.
653If @var{count} is negative, the scan moves backwards.
654
655If @var{depth} is nonzero, parenthesis depth counting begins from that
656value. The only candidates for stopping are places where the depth in
657parentheses becomes zero; @code{scan-lists} counts @var{count} such
658places and then stops. Thus, a positive value for @var{depth} means go
659out @var{depth} levels of parenthesis.
660
661Scanning ignores comments if @code{parse-sexp-ignore-comments} is
662non-@code{nil}.
663
664If the scan reaches the beginning or end of the buffer (or its
665accessible portion), and the depth is not zero, an error is signaled.
666If the depth is zero but the count is not used up, @code{nil} is
667returned.
668@end defun
669
670@defun scan-sexps from count
671This function scans forward @var{count} sexps from position @var{from}.
672It returns the position where the scan stops. If @var{count} is
673negative, the scan moves backwards.
674
675Scanning ignores comments if @code{parse-sexp-ignore-comments} is
676non-@code{nil}.
677
678If the scan reaches the beginning or end of (the accessible part of) the
679buffer while in the middle of a parenthetical grouping, an error is
680signaled. If it reaches the beginning or end between groupings but
681before count is used up, @code{nil} is returned.
682@end defun
683
684@defun forward-comment count
685This function moves point forward across @var{count} complete comments
686 (that is, including the starting delimiter and the terminating
687delimiter if any), plus any whitespace encountered on the way. It
688moves backward if @var{count} is negative. If it encounters anything
689other than a comment or whitespace, it stops, leaving point at the
690place where it stopped. This includes (for instance) finding the end
691of a comment when moving forward and expecting the beginning of one.
692The function also stops immediately after moving over the specified
693number of complete comments. If @var{count} comments are found as
694expected, with nothing except whitespace between them, it returns
695@code{t}; otherwise it returns @code{nil}.
696
697This function cannot tell whether the ``comments'' it traverses are
698embedded within a string. If they look like comments, it treats them
699as comments.
700@end defun
701
702To move forward over all comments and whitespace following point, use
703@code{(forward-comment (buffer-size))}. @code{(buffer-size)} is a good
704argument to use, because the number of comments in the buffer cannot
705exceed that many.
706
707@node Position Parse
708@subsection Finding the Parse State for a Position
709
710 For syntactic analysis, such as in indentation, often the useful
711thing is to compute the syntactic state corresponding to a given buffer
712position. This function does that conveniently.
713
714@defun syntax-ppss &optional pos
715This function returns the parser state (see next section) that the
716parser would reach at position @var{pos} starting from the beginning
717of the buffer. This is equivalent to @code{(parse-partial-sexp
718(point-min) @var{pos})}, except that @code{syntax-ppss} uses a cache
719to speed up the computation. Due to this optimization, the 2nd value
720(previous complete subexpression) and 6th value (minimum parenthesis
721depth) of the returned parser state are not meaningful.
722@end defun
723
724 @code{syntax-ppss} automatically hooks itself to
725@code{before-change-functions} to keep its cache consistent. But
726updating can fail if @code{syntax-ppss} is called while
727@code{before-change-functions} is temporarily let-bound, or if the
728buffer is modified without obeying the hook, such as when using
729@code{inhibit-modification-hooks}. For this reason, it is sometimes
730necessary to flush the cache manually.
731
106e6894
CY
732@defun syntax-ppss-flush-cache beg &rest ignored-args
733This function flushes the cache used by @code{syntax-ppss}, starting
734at position @var{beg}. The remaining arguments, @var{ignored-args},
735are ignored; this function accepts them so that it can be directly
736used on hooks such as @code{before-change-functions} (@pxref{Change
737Hooks}).
b8d4c8d0
GM
738@end defun
739
740 Major modes can make @code{syntax-ppss} run faster by specifying
741where it needs to start parsing.
742
743@defvar syntax-begin-function
744If this is non-@code{nil}, it should be a function that moves to an
745earlier buffer position where the parser state is equivalent to
746@code{nil}---in other words, a position outside of any comment,
747string, or parenthesis. @code{syntax-ppss} uses it to further
748optimize its computations, when the cache gives no help.
749@end defvar
750
751@node Parser State
752@subsection Parser State
753@cindex parser state
754
755 A @dfn{parser state} is a list of ten elements describing the final
756state of parsing text syntactically as part of an expression. The
757parsing functions in the following sections return a parser state as
758the value, and in some cases accept one as an argument also, so that
759you can resume parsing after it stops. Here are the meanings of the
760elements of the parser state:
761
762@enumerate 0
763@item
764The depth in parentheses, counting from 0. @strong{Warning:} this can
765be negative if there are more close parens than open parens between
766the start of the defun and point.
767
768@item
769@cindex innermost containing parentheses
770The character position of the start of the innermost parenthetical
771grouping containing the stopping point; @code{nil} if none.
772
773@item
774@cindex previous complete subexpression
775The character position of the start of the last complete subexpression
776terminated; @code{nil} if none.
777
778@item
779@cindex inside string
780Non-@code{nil} if inside a string. More precisely, this is the
781character that will terminate the string, or @code{t} if a generic
782string delimiter character should terminate it.
783
784@item
785@cindex inside comment
786@code{t} if inside a comment (of either style),
787or the comment nesting level if inside a kind of comment
788that can be nested.
789
790@item
791@cindex quote character
792@code{t} if point is just after a quote character.
793
794@item
795The minimum parenthesis depth encountered during this scan.
796
797@item
798What kind of comment is active: @code{nil} for a comment of style
799``a'' or when not inside a comment, @code{t} for a comment of style
800``b,'' and @code{syntax-table} for a comment that should be ended by a
801generic comment delimiter character.
802
803@item
804The string or comment start position. While inside a comment, this is
805the position where the comment began; while inside a string, this is the
806position where the string began. When outside of strings and comments,
807this element is @code{nil}.
808
809@item
810Internal data for continuing the parsing. The meaning of this
811data is subject to change; it is used if you pass this list
812as the @var{state} argument to another call.
813@end enumerate
814
815 Elements 1, 2, and 6 are ignored in a state which you pass as an
816argument to continue parsing, and elements 8 and 9 are used only in
817trivial cases. Those elements serve primarily to convey information
818to the Lisp program which does the parsing.
819
820 One additional piece of useful information is available from a
821parser state using this function:
822
823@defun syntax-ppss-toplevel-pos state
824This function extracts, from parser state @var{state}, the last
825position scanned in the parse which was at top level in grammatical
826structure. ``At top level'' means outside of any parentheses,
827comments, or strings.
828
829The value is @code{nil} if @var{state} represents a parse which has
830arrived at a top level position.
831@end defun
832
833 We have provided this access function rather than document how the
834data is represented in the state, because we plan to change the
835representation in the future.
836
837@node Low-Level Parsing
838@subsection Low-Level Parsing
839
840 The most basic way to use the expression parser is to tell it
841to start at a given position with a certain state, and parse up to
842a specified end position.
843
844@defun parse-partial-sexp start limit &optional target-depth stop-before state stop-comment
845This function parses a sexp in the current buffer starting at
846@var{start}, not scanning past @var{limit}. It stops at position
847@var{limit} or when certain criteria described below are met, and sets
848point to the location where parsing stops. It returns a parser state
849describing the status of the parse at the point where it stops.
850
851@cindex parenthesis depth
852If the third argument @var{target-depth} is non-@code{nil}, parsing
853stops if the depth in parentheses becomes equal to @var{target-depth}.
854The depth starts at 0, or at whatever is given in @var{state}.
855
856If the fourth argument @var{stop-before} is non-@code{nil}, parsing
857stops when it comes to any character that starts a sexp. If
858@var{stop-comment} is non-@code{nil}, parsing stops when it comes to the
859start of a comment. If @var{stop-comment} is the symbol
860@code{syntax-table}, parsing stops after the start of a comment or a
861string, or the end of a comment or a string, whichever comes first.
862
863If @var{state} is @code{nil}, @var{start} is assumed to be at the top
864level of parenthesis structure, such as the beginning of a function
865definition. Alternatively, you might wish to resume parsing in the
866middle of the structure. To do this, you must provide a @var{state}
867argument that describes the initial status of parsing. The value
868returned by a previous call to @code{parse-partial-sexp} will do
869nicely.
870@end defun
871
872@node Control Parsing
873@subsection Parameters to Control Parsing
874
875@defvar multibyte-syntax-as-symbol
876If this variable is non-@code{nil}, @code{scan-sexps} treats all
877non-@acronym{ASCII} characters as symbol constituents regardless
878of what the syntax table says about them. (However, text properties
879can still override the syntax.)
880@end defvar
881
882@defopt parse-sexp-ignore-comments
883@cindex skipping comments
884If the value is non-@code{nil}, then comments are treated as
885whitespace by the functions in this section and by @code{forward-sexp},
886@code{scan-lists} and @code{scan-sexps}.
887@end defopt
888
889@vindex parse-sexp-lookup-properties
890The behavior of @code{parse-partial-sexp} is also affected by
891@code{parse-sexp-lookup-properties} (@pxref{Syntax Properties}).
892
893You can use @code{forward-comment} to move forward or backward over
894one comment or several comments.
895
896@node Standard Syntax Tables
897@section Some Standard Syntax Tables
898
899 Most of the major modes in Emacs have their own syntax tables. Here
900are several of them:
901
902@defun standard-syntax-table
903This function returns the standard syntax table, which is the syntax
904table used in Fundamental mode.
905@end defun
906
907@defvar text-mode-syntax-table
908The value of this variable is the syntax table used in Text mode.
909@end defvar
910
911@defvar c-mode-syntax-table
912The value of this variable is the syntax table for C-mode buffers.
913@end defvar
914
915@defvar emacs-lisp-mode-syntax-table
916The value of this variable is the syntax table used in Emacs Lisp mode
917by editing commands. (It has no effect on the Lisp @code{read}
918function.)
919@end defvar
920
921@node Syntax Table Internals
922@section Syntax Table Internals
923@cindex syntax table internals
924
925 Lisp programs don't usually work with the elements directly; the
926Lisp-level syntax table functions usually work with syntax descriptors
927(@pxref{Syntax Descriptors}). Nonetheless, here we document the
928internal format. This format is used mostly when manipulating
929syntax properties.
930
931 Each element of a syntax table is a cons cell of the form
932@code{(@var{syntax-code} . @var{matching-char})}. The @sc{car},
933@var{syntax-code}, is an integer that encodes the syntax class, and any
934flags. The @sc{cdr}, @var{matching-char}, is non-@code{nil} if
935a character to match was specified.
936
937 This table gives the value of @var{syntax-code} which corresponds
938to each syntactic type.
939
940@multitable @columnfractions .05 .3 .3 .31
941@item
942@tab
943@i{Integer} @i{Class}
944@tab
945@i{Integer} @i{Class}
946@tab
947@i{Integer} @i{Class}
948@item
949@tab
9500 @ @ whitespace
951@tab
9525 @ @ close parenthesis
953@tab
95410 @ @ character quote
955@item
956@tab
9571 @ @ punctuation
958@tab
9596 @ @ expression prefix
960@tab
96111 @ @ comment-start
962@item
963@tab
9642 @ @ word
965@tab
9667 @ @ string quote
967@tab
96812 @ @ comment-end
969@item
970@tab
9713 @ @ symbol
972@tab
9738 @ @ paired delimiter
974@tab
97513 @ @ inherit
976@item
977@tab
9784 @ @ open parenthesis
979@tab
9809 @ @ escape
981@tab
98214 @ @ generic comment
983@item
984@tab
98515 @ generic string
986@end multitable
987
988 For example, the usual syntax value for @samp{(} is @code{(4 . 41)}.
989(41 is the character code for @samp{)}.)
990
991 The flags are encoded in higher order bits, starting 16 bits from the
992least significant bit. This table gives the power of two which
993corresponds to each syntax flag.
994
995@multitable @columnfractions .05 .3 .3 .3
996@item
997@tab
998@i{Prefix} @i{Flag}
999@tab
1000@i{Prefix} @i{Flag}
1001@tab
1002@i{Prefix} @i{Flag}
1003@item
1004@tab
1005@samp{1} @ @ @code{(lsh 1 16)}
1006@tab
1007@samp{4} @ @ @code{(lsh 1 19)}
1008@tab
1009@samp{b} @ @ @code{(lsh 1 21)}
1010@item
1011@tab
1012@samp{2} @ @ @code{(lsh 1 17)}
1013@tab
1014@samp{p} @ @ @code{(lsh 1 20)}
1015@tab
1016@samp{n} @ @ @code{(lsh 1 22)}
1017@item
1018@tab
1019@samp{3} @ @ @code{(lsh 1 18)}
1020@end multitable
1021
1022@defun string-to-syntax @var{desc}
1023This function returns the internal form corresponding to the syntax
1024descriptor @var{desc}, a cons cell @code{(@var{syntax-code}
1025. @var{matching-char})}.
1026@end defun
1027
1028@defun syntax-after pos
1029This function returns the syntax code of the character in the buffer
1030after position @var{pos}, taking account of syntax properties as well
1031as the syntax table. If @var{pos} is outside the buffer's accessible
1032portion (@pxref{Narrowing, accessible portion}), this function returns
1033@code{nil}.
1034@end defun
1035
1036@defun syntax-class syntax
1037This function returns the syntax class of the syntax code
1038@var{syntax}. (It masks off the high 16 bits that hold the flags
1039encoded in the syntax descriptor.) If @var{syntax} is @code{nil}, it
1040returns @code{nil}; this is so evaluating the expression
1041
1042@example
1043(syntax-class (syntax-after pos))
1044@end example
1045
1046@noindent
1047where @code{pos} is outside the buffer's accessible portion, will
1048yield @code{nil} without throwing errors or producing wrong syntax
1049class codes.
1050@end defun
1051
1052@node Categories
1053@section Categories
1054@cindex categories of characters
1055@cindex character categories
1056
1057 @dfn{Categories} provide an alternate way of classifying characters
1058syntactically. You can define several categories as needed, then
1059independently assign each character to one or more categories. Unlike
1060syntax classes, categories are not mutually exclusive; it is normal for
1061one character to belong to several categories.
1062
1063@cindex category table
1064 Each buffer has a @dfn{category table} which records which categories
1065are defined and also which characters belong to each category. Each
1066category table defines its own categories, but normally these are
1067initialized by copying from the standard categories table, so that the
1068standard categories are available in all modes.
1069
1070 Each category has a name, which is an @acronym{ASCII} printing character in
1071the range @w{@samp{ }} to @samp{~}. You specify the name of a category
1072when you define it with @code{define-category}.
1073
1074 The category table is actually a char-table (@pxref{Char-Tables}).
1075The element of the category table at index @var{c} is a @dfn{category
1076set}---a bool-vector---that indicates which categories character @var{c}
1077belongs to. In this category set, if the element at index @var{cat} is
1078@code{t}, that means category @var{cat} is a member of the set, and that
1079character @var{c} belongs to category @var{cat}.
1080
1081For the next three functions, the optional argument @var{table}
1082defaults to the current buffer's category table.
1083
1084@defun define-category char docstring &optional table
1085This function defines a new category, with name @var{char} and
1086documentation @var{docstring}, for the category table @var{table}.
1087@end defun
1088
1089@defun category-docstring category &optional table
1090This function returns the documentation string of category @var{category}
1091in category table @var{table}.
1092
1093@example
1094(category-docstring ?a)
1095 @result{} "ASCII"
1096(category-docstring ?l)
1097 @result{} "Latin"
1098@end example
1099@end defun
1100
1101@defun get-unused-category &optional table
1102This function returns a category name (a character) which is not
1103currently defined in @var{table}. If all possible categories are in use
1104in @var{table}, it returns @code{nil}.
1105@end defun
1106
1107@defun category-table
1108This function returns the current buffer's category table.
1109@end defun
1110
1111@defun category-table-p object
1112This function returns @code{t} if @var{object} is a category table,
1113otherwise @code{nil}.
1114@end defun
1115
1116@defun standard-category-table
1117This function returns the standard category table.
1118@end defun
1119
1120@defun copy-category-table &optional table
1121This function constructs a copy of @var{table} and returns it. If
1122@var{table} is not supplied (or is @code{nil}), it returns a copy of the
1123standard category table. Otherwise, an error is signaled if @var{table}
1124is not a category table.
1125@end defun
1126
1127@defun set-category-table table
1128This function makes @var{table} the category table for the current
1129buffer. It returns @var{table}.
1130@end defun
1131
1132@defun make-category-table
1133This creates and returns an empty category table. In an empty category
1134table, no categories have been allocated, and no characters belong to
1135any categories.
1136@end defun
1137
1138@defun make-category-set categories
1139This function returns a new category set---a bool-vector---whose initial
1140contents are the categories listed in the string @var{categories}. The
1141elements of @var{categories} should be category names; the new category
1142set has @code{t} for each of those categories, and @code{nil} for all
1143other categories.
1144
1145@example
1146(make-category-set "al")
1147 @result{} #&128"\0\0\0\0\0\0\0\0\0\0\0\0\2\20\0\0"
1148@end example
1149@end defun
1150
1151@defun char-category-set char
1152This function returns the category set for character @var{char} in the
1153current buffer's category table. This is the bool-vector which
1154records which categories the character @var{char} belongs to. The
1155function @code{char-category-set} does not allocate storage, because
1156it returns the same bool-vector that exists in the category table.
1157
1158@example
1159(char-category-set ?a)
1160 @result{} #&128"\0\0\0\0\0\0\0\0\0\0\0\0\2\20\0\0"
1161@end example
1162@end defun
1163
1164@defun category-set-mnemonics category-set
1165This function converts the category set @var{category-set} into a string
1166containing the characters that designate the categories that are members
1167of the set.
1168
1169@example
1170(category-set-mnemonics (char-category-set ?a))
1171 @result{} "al"
1172@end example
1173@end defun
1174
f147ff75
CY
1175@defun modify-category-entry char category &optional table reset
1176This function modifies the category set of @var{char} in category
b8d4c8d0 1177table @var{table} (which defaults to the current buffer's category
f147ff75
CY
1178table). @var{char} can be a character, or a cons cell of the form
1179@code{(@var{min} . @var{max})}; in the latter case, the function
1180modifies the category sets of all characters in the range between
1181@var{min} and @var{max}, inclusive.
b8d4c8d0 1182
f147ff75 1183Normally, it modifies a category set by adding @var{category} to it.
b8d4c8d0
GM
1184But if @var{reset} is non-@code{nil}, then it deletes @var{category}
1185instead.
1186@end defun
1187
1188@deffn Command describe-categories &optional buffer-or-name
1189This function describes the category specifications in the current
1190category table. It inserts the descriptions in a buffer, and then
1191displays that buffer. If @var{buffer-or-name} is non-@code{nil}, it
1192describes the category table of that buffer instead.
1193@end deffn
1194
1195@ignore
1196 arch-tag: 4d914e96-0283-445c-9233-75d33662908c
1197@end ignore