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