*** empty log message ***
[bpt/emacs.git] / lispref / syntax.texi
CommitLineData
7015aca4
RS
1@c -*-texinfo-*-
2@c This is part of the GNU Emacs Lisp Reference Manual.
fd897522
GM
3@c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999
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}
f9f59935 138@dfn{Word constituents} (designated by @samp{w}) are parts of normal
7015aca4 139English words and are typically used in variable and command names in
7fd1911a 140programs. All upper- and lower-case letters, and the digits, are typically
7015aca4
RS
141word constituents.
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.
158Most programming language modes, including Emacs Lisp mode, have no
159characters in this class since the few characters that are not symbol or
160word constituents all have other uses.
7015aca4
RS
161@end deffn
162
163@deffn {Syntax class} @w{open parenthesis character}
164@deffnx {Syntax class} @w{close parenthesis character}
165@cindex parenthesis syntax
166Open and close @dfn{parenthesis characters} are characters used in
167dissimilar pairs to surround sentences or expressions. Such a grouping
168is begun with an open parenthesis character and terminated with a close.
169Each open parenthesis character matches a particular close parenthesis
170character, and vice versa. Normally, Emacs indicates momentarily the
171matching open parenthesis when you insert a close parenthesis.
172@xref{Blinking}.
173
f9f59935
RS
174The class of open parentheses is designated by @samp{(}, and that of
175close parentheses by @samp{)}.
7015aca4
RS
176
177In English text, and in C code, the parenthesis pairs are @samp{()},
178@samp{[]}, and @samp{@{@}}. In Emacs Lisp, the delimiters for lists and
179vectors (@samp{()} and @samp{[]}) are classified as parenthesis
180characters.
181@end deffn
182
183@deffn {Syntax class} @w{string quote}
f9f59935 184@dfn{String quote characters} (designated by @samp{"}) are used in
7015aca4
RS
185many languages, including Lisp and C, to delimit string constants. The
186same string quote character appears at the beginning and the end of a
187string. Such quoted strings do not nest.
188
189The parsing facilities of Emacs consider a string as a single token.
190The usual syntactic meanings of the characters in the string are
191suppressed.
192
193The Lisp modes have two string quote characters: double-quote (@samp{"})
194and vertical bar (@samp{|}). @samp{|} is not used in Emacs Lisp, but it
195is used in Common Lisp. C also has two string quote characters:
196double-quote for strings, and single-quote (@samp{'}) for character
197constants.
198
199English text has no string quote characters because English is not a
200programming language. Although quotation marks are used in English,
201we do not want them to turn off the usual syntactic properties of
202other characters in the quotation.
203@end deffn
204
205@deffn {Syntax class} @w{escape}
f9f59935 206An @dfn{escape character} (designated by @samp{\}) starts an escape
7015aca4
RS
207sequence such as is used in C string and character constants. The
208character @samp{\} belongs to this class in both C and Lisp. (In C, it
209is used thus only inside strings, but it turns out to cause no trouble
210to treat it this way throughout C code.)
211
212Characters in this class count as part of words if
213@code{words-include-escapes} is non-@code{nil}. @xref{Word Motion}.
214@end deffn
215
216@deffn {Syntax class} @w{character quote}
f9f59935 217A @dfn{character quote character} (designated by @samp{/}) quotes the
7015aca4
RS
218following character so that it loses its normal syntactic meaning. This
219differs from an escape character in that only the character immediately
220following is ever affected.
221
222Characters in this class count as part of words if
223@code{words-include-escapes} is non-@code{nil}. @xref{Word Motion}.
224
e30ab160 225This class is used for backslash in @TeX{} mode.
7015aca4
RS
226@end deffn
227
228@deffn {Syntax class} @w{paired delimiter}
f9f59935 229@dfn{Paired delimiter characters} (designated by @samp{$}) are like
7015aca4
RS
230string quote characters except that the syntactic properties of the
231characters between the delimiters are not suppressed. Only @TeX{} mode
7fd1911a
RS
232uses a paired delimiter presently---the @samp{$} that both enters and
233leaves math mode.
7015aca4
RS
234@end deffn
235
236@deffn {Syntax class} @w{expression prefix}
f9f59935
RS
237An @dfn{expression prefix operator} (designated by @samp{'}) is used for
238syntactic operators that are considered as part of an expression if they
239appear next to one. In Lisp modes, these characters include the
240apostrophe, @samp{'} (used for quoting), the comma, @samp{,} (used in
241macros), and @samp{#} (used in the read syntax for certain data types).
7015aca4
RS
242@end deffn
243
244@deffn {Syntax class} @w{comment starter}
245@deffnx {Syntax class} @w{comment ender}
246@cindex comment syntax
247The @dfn{comment starter} and @dfn{comment ender} characters are used in
248various languages to delimit comments. These classes are designated
f9f59935 249by @samp{<} and @samp{>}, respectively.
7015aca4
RS
250
251English text has no comment characters. In Lisp, the semicolon
252(@samp{;}) starts a comment and a newline or formfeed ends one.
253@end deffn
254
255@deffn {Syntax class} @w{inherit}
f9f59935
RS
256This syntax class does not specify a particular syntax. It says to look
257in the standard syntax table to find the syntax of this character. The
7015aca4
RS
258designator for this syntax code is @samp{@@}.
259@end deffn
260
f9f59935 261@deffn {Syntax class} @w{generic comment delimiter}
d1f08d85
SM
262A @dfn{generic comment delimiter} (designated by @samp{!}) starts
263or ends a special kind of comment. @emph{Any} generic comment delimiter
264matches @emph{any} generic comment delimiter, but they cannot match
265a comment starter or comment ender; generic comment delimiters can only
266match each other.
f9f59935
RS
267
268This syntax class is primarily meant for use with the
269@code{syntax-table} text property (@pxref{Syntax Properties}). You can
270mark any range of characters as forming a comment, by giving the first
271and last characters of the range @code{syntax-table} properties
272identifying them as generic comment delimiters.
273@end deffn
274
275@deffn {Syntax class} @w{generic string delimiter}
d1f08d85
SM
276A @dfn{generic string delimiter} (designated by @samp{|}) starts or ends
277a string. This class differs from the string quote class in that @emph{any}
278generic string delimiter can match any other generic string delimiter; but
279they do not match ordinary string quote characters.
f9f59935
RS
280
281This syntax class is primarily meant for use with the
282@code{syntax-table} text property (@pxref{Syntax Properties}). You can
283mark any range of characters as forming a string constant, by giving the
284first and last characters of the range @code{syntax-table} properties
285identifying them as generic string delimiters.
286@end deffn
287
7015aca4
RS
288@node Syntax Flags
289@subsection Syntax Flags
290@cindex syntax flags
291
292 In addition to the classes, entries for characters in a syntax table
79ddc9c9
GM
293can specify flags. There are seven possible flags, represented by the
294characters @samp{1}, @samp{2}, @samp{3}, @samp{4}, @samp{b}, @samp{n},
295and @samp{p}.
296
297 All the flags except @samp{n} and @samp{p} are used to describe
298multi-character comment delimiters. The digit flags indicate that a
299character can @emph{also} be part of a comment sequence, in addition to
300the syntactic properties associated with its character class. The flags
301are independent of the class and each other for the sake of characters
302such as @samp{*} in C mode, which is a punctuation character, @emph{and}
303the second character of a start-of-comment sequence (@samp{/*}),
304@emph{and} the first character of an end-of-comment sequence
305(@samp{*/}).
7015aca4 306
f9f59935
RS
307 Here is a table of the possible flags for a character @var{c},
308and what they mean:
7015aca4
RS
309
310@itemize @bullet
311@item
7fd1911a 312@samp{1} means @var{c} is the start of a two-character comment-start
7015aca4
RS
313sequence.
314
315@item
316@samp{2} means @var{c} is the second character of such a sequence.
317
318@item
7fd1911a 319@samp{3} means @var{c} is the start of a two-character comment-end
7015aca4
RS
320sequence.
321
322@item
323@samp{4} means @var{c} is the second character of such a sequence.
324
325@item
326@c Emacs 19 feature
327@samp{b} means that @var{c} as a comment delimiter belongs to the
328alternative ``b'' comment style.
329
330Emacs supports two comment styles simultaneously in any one syntax
331table. This is for the sake of C++. Each style of comment syntax has
332its own comment-start sequence and its own comment-end sequence. Each
333comment must stick to one style or the other; thus, if it starts with
334the comment-start sequence of style ``b'', it must also end with the
335comment-end sequence of style ``b''.
336
337The two comment-start sequences must begin with the same character; only
338the second character may differ. Mark the second character of the
7fd1911a 339``b''-style comment-start sequence with the @samp{b} flag.
7015aca4
RS
340
341A comment-end sequence (one or two characters) applies to the ``b''
342style if its first character has the @samp{b} flag set; otherwise, it
343applies to the ``a'' style.
344
345The appropriate comment syntax settings for C++ are as follows:
346
347@table @asis
348@item @samp{/}
349@samp{124b}
350@item @samp{*}
351@samp{23}
352@item newline
353@samp{>b}
354@end table
355
7fd1911a
RS
356This defines four comment-delimiting sequences:
357
358@table @asis
359@item @samp{/*}
360This is a comment-start sequence for ``a'' style because the
361second character, @samp{*}, does not have the @samp{b} flag.
362
363@item @samp{//}
364This is a comment-start sequence for ``b'' style because the second
365character, @samp{/}, does have the @samp{b} flag.
366
367@item @samp{*/}
368This is a comment-end sequence for ``a'' style because the first
1911e6e5 369character, @samp{*}, does not have the @samp{b} flag.
7fd1911a
RS
370
371@item newline
372This is a comment-end sequence for ``b'' style, because the newline
373character has the @samp{b} flag.
374@end table
7015aca4 375
79ddc9c9
GM
376@item
377@samp{n} on a comment delimiter character specifies
378that this kind of comment can be nested. For a two-character
379comment delimiter, @samp{n} on either character makes it
380nestable.
381
7015aca4
RS
382@item
383@c Emacs 19 feature
384@samp{p} identifies an additional ``prefix character'' for Lisp syntax.
385These characters are treated as whitespace when they appear between
386expressions. When they appear within an expression, they are handled
387according to their usual syntax codes.
388
389The function @code{backward-prefix-chars} moves back over these
390characters, as well as over characters whose primary syntax class is
391prefix (@samp{'}). @xref{Motion and Syntax}.
392@end itemize
393
394@node Syntax Table Functions
395@section Syntax Table Functions
396
397 In this section we describe functions for creating, accessing and
398altering syntax tables.
399
400@defun make-syntax-table
969fe9b5
RS
401This function creates a new syntax table. It inherits the syntax for
402letters and control characters from the standard syntax table. For
403other characters, the syntax is copied from the standard syntax table.
7015aca4
RS
404
405Most major mode syntax tables are created in this way.
406@end defun
407
408@defun copy-syntax-table &optional table
409This function constructs a copy of @var{table} and returns it. If
410@var{table} is not supplied (or is @code{nil}), it returns a copy of the
411current syntax table. Otherwise, an error is signaled if @var{table} is
412not a syntax table.
413@end defun
414
415@deffn Command modify-syntax-entry char syntax-descriptor &optional table
416This function sets the syntax entry for @var{char} according to
417@var{syntax-descriptor}. The syntax is changed only for @var{table},
418which defaults to the current buffer's syntax table, and not in any
419other syntax table. The argument @var{syntax-descriptor} specifies the
420desired syntax; this is a string beginning with a class designator
421character, and optionally containing a matching character and flags as
422well. @xref{Syntax Descriptors}.
423
424This function always returns @code{nil}. The old syntax information in
425the table for this character is discarded.
426
427An error is signaled if the first character of the syntax descriptor is not
428one of the twelve syntax class designator characters. An error is also
429signaled if @var{char} is not a character.
430
431@example
432@group
433@exdent @r{Examples:}
434
435;; @r{Put the space character in class whitespace.}
436(modify-syntax-entry ?\ " ")
437 @result{} nil
438@end group
439
440@group
441;; @r{Make @samp{$} an open parenthesis character,}
442;; @r{with @samp{^} as its matching close.}
443(modify-syntax-entry ?$ "(^")
444 @result{} nil
445@end group
446
447@group
448;; @r{Make @samp{^} a close parenthesis character,}
449;; @r{with @samp{$} as its matching open.}
450(modify-syntax-entry ?^ ")$")
451 @result{} nil
452@end group
453
454@group
455;; @r{Make @samp{/} a punctuation character,}
456;; @r{the first character of a start-comment sequence,}
457;; @r{and the second character of an end-comment sequence.}
458;; @r{This is used in C mode.}
7fd1911a 459(modify-syntax-entry ?/ ". 14")
7015aca4
RS
460 @result{} nil
461@end group
462@end example
463@end deffn
464
465@defun char-syntax character
466This function returns the syntax class of @var{character}, represented
f9f59935 467by its mnemonic designator character. This returns @emph{only} the
7015aca4
RS
468class, not any matching parenthesis or flags.
469
470An error is signaled if @var{char} is not a character.
471
472The following examples apply to C mode. The first example shows that
473the syntax class of space is whitespace (represented by a space). The
474second example shows that the syntax of @samp{/} is punctuation. This
7fd1911a
RS
475does not show the fact that it is also part of comment-start and -end
476sequences. The third example shows that open parenthesis is in the class
7015aca4
RS
477of open parentheses. This does not show the fact that it has a matching
478character, @samp{)}.
479
480@example
481@group
969fe9b5 482(string (char-syntax ?\ ))
7015aca4
RS
483 @result{} " "
484@end group
485
486@group
969fe9b5 487(string (char-syntax ?/))
7015aca4
RS
488 @result{} "."
489@end group
490
491@group
969fe9b5 492(string (char-syntax ?\())
7015aca4
RS
493 @result{} "("
494@end group
495@end example
969fe9b5
RS
496
497We use @code{string} to make it easier to see the character returned by
498@code{char-syntax}.
7015aca4
RS
499@end defun
500
501@defun set-syntax-table table
502This function makes @var{table} the syntax table for the current buffer.
503It returns @var{table}.
504@end defun
505
506@defun syntax-table
507This function returns the current syntax table, which is the table for
508the current buffer.
509@end defun
510
2468d0c0
DL
511@defmac with-syntax-table @var{table} @var{body}...
512@tindex with-syntax-table
513This macro executes @var{body} using @var{table} as the current syntax
514table. It returns the value of the last form in @var{body}, after
515restoring the old current syntax table.
516
517Since each buffer has its own current syntax table, we should make that
518more precise: @code{with-syntax-table} temporarily alters the current
519syntax table of whichever buffer is current at the time the macro
520execution starts. Other buffers are not affected.
521@end defmac
522
f9f59935
RS
523@node Syntax Properties
524@section Syntax Properties
525@kindex syntax-table @r{(text property)}
526
527When the syntax table is not flexible enough to specify the syntax of a
528language, you can use @code{syntax-table} text properties to override
529the syntax table for specific character occurrences in the buffer.
530@xref{Text Properties}.
531
969fe9b5 532The valid values of @code{syntax-table} text property are:
f9f59935
RS
533
534@table @asis
535@item @var{syntax-table}
536If the property value is a syntax table, that table is used instead of
537the current buffer's syntax table to determine the syntax for this
538occurrence of the character.
539
540@item @code{(@var{syntax-code} . @var{matching-char})}
541A cons cell of this format specifies the syntax for this
d1f08d85 542occurrence of the character. (@pxref{Syntax Table Internals})
f9f59935
RS
543
544@item @code{nil}
545If the property is @code{nil}, the character's syntax is determined from
546the current syntax table in the usual way.
547@end table
548
f9f59935
RS
549@defvar parse-sexp-lookup-properties
550If this is non-@code{nil}, the syntax scanning functions pay attention
551to syntax text properties. Otherwise they use only the current syntax
552table.
553@end defvar
554
7015aca4
RS
555@node Motion and Syntax
556@section Motion and Syntax
557
969fe9b5
RS
558 This section describes functions for moving across characters that
559have certain syntax classes.
7015aca4
RS
560
561@defun skip-syntax-forward syntaxes &optional limit
562This function moves point forward across characters having syntax classes
563mentioned in @var{syntaxes}. It stops when it encounters the end of
7fd1911a 564the buffer, or position @var{limit} (if specified), or a character it is
7015aca4 565not supposed to skip.
8241495d
RS
566
567If @var{syntaxes} starts with @samp{^}, then the function skips
568characters whose syntax is @emph{not} in @var{syntaxes}.
569
7015aca4
RS
570The return value is the distance traveled, which is a nonnegative
571integer.
7015aca4
RS
572@end defun
573
574@defun skip-syntax-backward syntaxes &optional limit
575This function moves point backward across characters whose syntax
576classes are mentioned in @var{syntaxes}. It stops when it encounters
8241495d
RS
577the beginning of the buffer, or position @var{limit} (if specified), or
578a character it is not supposed to skip.
579
580If @var{syntaxes} starts with @samp{^}, then the function skips
581characters whose syntax is @emph{not} in @var{syntaxes}.
1911e6e5 582
7015aca4
RS
583The return value indicates the distance traveled. It is an integer that
584is zero or less.
7015aca4
RS
585@end defun
586
587@defun backward-prefix-chars
588This function moves point backward over any number of characters with
589expression prefix syntax. This includes both characters in the
590expression prefix syntax class, and characters with the @samp{p} flag.
591@end defun
592
593@node Parsing Expressions
594@section Parsing Balanced Expressions
595
596 Here are several functions for parsing and scanning balanced
597expressions, also known as @dfn{sexps}, in which parentheses match in
598pairs. The syntax table controls the interpretation of characters, so
599these functions can be used for Lisp expressions when in Lisp mode and
600for C expressions when in C mode. @xref{List Motion}, for convenient
601higher-level functions for moving over balanced expressions.
602
45493fb7
SM
603A syntax table only describes how each character changes the state of
604the parser, rather than describing the state itself. For example, a string
605delimiter character toggles the parser state between ``in-string'' and
606``in-code'' but the characters inside the string do not have any particular
607syntax to identify them as such.
608
609For example (note: 15 is the syntax-code of generic string delimiters):
610
611@example
612(put-text-property 1 9 'syntax-table '(15 . nil))
613@end example
614
615does not tell Emacs that the first eight chars of the current buffer
616are a string, but rather that they are all string delimiters and thus
617Emacs should treat them as four adjacent empty strings.
618
619The state of the parser is transient (i.e. not stored in the buffer for
620example). Instead, every time the parser is used, it is given not just
621a starting position but a starting state. If the starting state is not
622specified explicitly, Emacs assumes we are at the top level of parenthesis
623structure, such as the beginning of a function definition (this is the case
624for @code{forward-sexp} which blindly assumes that the starting point is in
625such a state.)
626
7015aca4
RS
627@defun parse-partial-sexp start limit &optional target-depth stop-before state stop-comment
628This function parses a sexp in the current buffer starting at
7fd1911a
RS
629@var{start}, not scanning past @var{limit}. It stops at position
630@var{limit} or when certain criteria described below are met, and sets
631point to the location where parsing stops. It returns a value
632describing the status of the parse at the point where it stops.
7015aca4
RS
633
634If @var{state} is @code{nil}, @var{start} is assumed to be at the top
635level of parenthesis structure, such as the beginning of a function
636definition. Alternatively, you might wish to resume parsing in the
637middle of the structure. To do this, you must provide a @var{state}
638argument that describes the initial status of parsing.
639
640@cindex parenthesis depth
641If the third argument @var{target-depth} is non-@code{nil}, parsing
642stops if the depth in parentheses becomes equal to @var{target-depth}.
643The depth starts at 0, or at whatever is given in @var{state}.
644
645If the fourth argument @var{stop-before} is non-@code{nil}, parsing
646stops when it comes to any character that starts a sexp. If
647@var{stop-comment} is non-@code{nil}, parsing stops when it comes to the
f9f59935
RS
648start of a comment. If @var{stop-comment} is the symbol
649@code{syntax-table}, parsing stops after the start of a comment or a
1911e6e5 650string, or the end of a comment or a string, whichever comes first.
7015aca4
RS
651
652@cindex parse state
f9f59935 653The fifth argument @var{state} is a nine-element list of the same form
969fe9b5 654as the value of this function, described below. (It is OK to omit the
f9f59935
RS
655last element of the nine.) The return value of one call may be used to
656initialize the state of the parse on another call to
657@code{parse-partial-sexp}.
7015aca4 658
f9f59935 659The result is a list of nine elements describing the final state of
7015aca4
RS
660the parse:
661
662@enumerate 0
663@item
664The depth in parentheses, counting from 0.
665
666@item
667@cindex innermost containing parentheses
7fd1911a
RS
668The character position of the start of the innermost parenthetical
669grouping containing the stopping point; @code{nil} if none.
7015aca4
RS
670
671@item
672@cindex previous complete subexpression
673The character position of the start of the last complete subexpression
674terminated; @code{nil} if none.
675
676@item
677@cindex inside string
678Non-@code{nil} if inside a string. More precisely, this is the
f9f59935
RS
679character that will terminate the string, or @code{t} if a generic
680string delimiter character should terminate it.
7015aca4
RS
681
682@item
683@cindex inside comment
79ddc9c9
GM
684@code{t} if inside a comment (of either style),
685or the comment nesting level if inside a kind of comment
686that can be nested.
7015aca4
RS
687
688@item
689@cindex quote character
690@code{t} if point is just after a quote character.
691
692@item
693The minimum parenthesis depth encountered during this scan.
694
695@item
f9f59935
RS
696What kind of comment is active: @code{nil} for a comment of style ``a'',
697@code{t} for a comment of style ``b'', and @code{syntax-table} for
698a comment that should be ended by a generic comment delimiter character.
699
700@item
701The string or comment start position. While inside a comment, this is
702the position where the comment began; while inside a string, this is the
703position where the string began. When outside of strings and comments,
704this element is @code{nil}.
7015aca4
RS
705@end enumerate
706
707Elements 0, 3, 4, 5 and 7 are significant in the argument @var{state}.
708
709@cindex indenting with parentheses
710This function is most often used to compute indentation for languages
711that have nested parentheses.
712@end defun
713
714@defun scan-lists from count depth
715This function scans forward @var{count} balanced parenthetical groupings
f9f59935
RS
716from position @var{from}. It returns the position where the scan stops.
717If @var{count} is negative, the scan moves backwards.
7015aca4
RS
718
719If @var{depth} is nonzero, parenthesis depth counting begins from that
720value. The only candidates for stopping are places where the depth in
721parentheses becomes zero; @code{scan-lists} counts @var{count} such
722places and then stops. Thus, a positive value for @var{depth} means go
7fd1911a 723out @var{depth} levels of parenthesis.
7015aca4
RS
724
725Scanning ignores comments if @code{parse-sexp-ignore-comments} is
726non-@code{nil}.
727
7fd1911a
RS
728If the scan reaches the beginning or end of the buffer (or its
729accessible portion), and the depth is not zero, an error is signaled.
730If the depth is zero but the count is not used up, @code{nil} is
731returned.
7015aca4
RS
732@end defun
733
734@defun scan-sexps from count
f9f59935
RS
735This function scans forward @var{count} sexps from position @var{from}.
736It returns the position where the scan stops. If @var{count} is
737negative, the scan moves backwards.
7015aca4
RS
738
739Scanning ignores comments if @code{parse-sexp-ignore-comments} is
740non-@code{nil}.
741
7fd1911a 742If the scan reaches the beginning or end of (the accessible part of) the
f9f59935
RS
743buffer while in the middle of a parenthetical grouping, an error is
744signaled. If it reaches the beginning or end between groupings but
745before count is used up, @code{nil} is returned.
7015aca4
RS
746@end defun
747
3357a32f
RS
748@defvar multibyte-syntax-as-symbol
749@tindex multibyte-syntax-as-symbol
750If this variable is non-@code{nil}, @code{scan-sexps} treats all
f8bdd519 751non-@sc{ascii} characters as symbol constituents regardless
3357a32f
RS
752of what the syntax table says about them. (However, text properties
753can still override the syntax.)
754@end defvar
755
7015aca4
RS
756@defvar parse-sexp-ignore-comments
757@cindex skipping comments
758If the value is non-@code{nil}, then comments are treated as
759whitespace by the functions in this section and by @code{forward-sexp}.
760
761In older Emacs versions, this feature worked only when the comment
762terminator is something like @samp{*/}, and appears only to end a
763comment. In languages where newlines terminate comments, it was
764necessary make this variable @code{nil}, since not every newline is the
765end of a comment. This limitation no longer exists.
766@end defvar
767
768You can use @code{forward-comment} to move forward or backward over
769one comment or several comments.
770
771@defun forward-comment count
47eda1bd
RS
772This function moves point forward across @var{count} complete comments
773(that is, including the starting delimiter and the terminating
37778b63
RS
774delimiter if any), plus any whitespace encountered on the way. It
775moves backward if @var{count} is negative. If it encounters anything
776other than a comment or whitespace, it stops, leaving point at the
777place where it stopped. This includes (for instance) finding the end
778of a comment when moving forward and expecting the beginning of one.
779The function also stops immediately after moving over the specified
780number of complete comments.
47eda1bd
RS
781
782This function cannot tell whether the ``comments'' it traverses are
783embedded within a string. If they look like comments, it treats them
784as comments.
7015aca4
RS
785@end defun
786
787To move forward over all comments and whitespace following point, use
788@code{(forward-comment (buffer-size))}. @code{(buffer-size)} is a good
7fd1911a 789argument to use, because the number of comments in the buffer cannot
7015aca4
RS
790exceed that many.
791
792@node Standard Syntax Tables
793@section Some Standard Syntax Tables
794
bfe721d1
KH
795 Most of the major modes in Emacs have their own syntax tables. Here
796are several of them:
7015aca4
RS
797
798@defun standard-syntax-table
799This function returns the standard syntax table, which is the syntax
800table used in Fundamental mode.
801@end defun
802
803@defvar text-mode-syntax-table
804The value of this variable is the syntax table used in Text mode.
805@end defvar
806
807@defvar c-mode-syntax-table
808The value of this variable is the syntax table for C-mode buffers.
809@end defvar
810
811@defvar emacs-lisp-mode-syntax-table
812The value of this variable is the syntax table used in Emacs Lisp mode
813by editing commands. (It has no effect on the Lisp @code{read}
814function.)
815@end defvar
816
817@node Syntax Table Internals
818@section Syntax Table Internals
819@cindex syntax table internals
820
f9f59935 821 Lisp programs don't usually work with the elements directly; the
7015aca4 822Lisp-level syntax table functions usually work with syntax descriptors
f9f59935 823(@pxref{Syntax Descriptors}). Nonetheless, here we document the
d1f08d85
SM
824internal format. This format is used mostly when manipulating
825syntax properties.
f9f59935
RS
826
827 Each element of a syntax table is a cons cell of the form
828@code{(@var{syntax-code} . @var{matching-char})}. The @sc{car},
829@var{syntax-code}, is an integer that encodes the syntax class, and any
830flags. The @sc{cdr}, @var{matching-char}, is non-@code{nil} if
831a character to match was specified.
7015aca4 832
f9f59935
RS
833 This table gives the value of @var{syntax-code} which corresponds
834to each syntactic type.
7015aca4 835
969fe9b5 836@multitable @columnfractions .05 .3 .3 .3
a9f0a989
RS
837@item
838@tab
969fe9b5
RS
839@i{Integer} @i{Class}
840@tab
841@i{Integer} @i{Class}
842@tab
843@i{Integer} @i{Class}
a9f0a989
RS
844@item
845@tab
969fe9b5
RS
8460 @ @ whitespace
847@tab
8485 @ @ close parenthesis
849@tab
85010 @ @ character quote
a9f0a989
RS
851@item
852@tab
969fe9b5
RS
8531 @ @ punctuation
854@tab
8556 @ @ expression prefix
856@tab
85711 @ @ comment-start
a9f0a989
RS
858@item
859@tab
969fe9b5
RS
8602 @ @ word
861@tab
8627 @ @ string quote
863@tab
86412 @ @ comment-end
a9f0a989
RS
865@item
866@tab
969fe9b5
RS
8673 @ @ symbol
868@tab
8698 @ @ paired delimiter
870@tab
87113 @ @ inherit
a9f0a989
RS
872@item
873@tab
969fe9b5
RS
8744 @ @ open parenthesis
875@tab
8769 @ @ escape
877@tab
85c7ceaa 87814 @ @ generic comment
a9f0a989
RS
879@item
880@tab
85c7ceaa 88115 @ generic string
969fe9b5 882@end multitable
7015aca4 883
f9f59935
RS
884 For example, the usual syntax value for @samp{(} is @code{(4 . 41)}.
885(41 is the character code for @samp{)}.)
886
887 The flags are encoded in higher order bits, starting 16 bits from the
888least significant bit. This table gives the power of two which
889corresponds to each syntax flag.
890
969fe9b5 891@multitable @columnfractions .05 .3 .3 .3
a9f0a989
RS
892@item
893@tab
969fe9b5
RS
894@i{Prefix} @i{Flag}
895@tab
896@i{Prefix} @i{Flag}
897@tab
898@i{Prefix} @i{Flag}
a9f0a989
RS
899@item
900@tab
969fe9b5
RS
901@samp{1} @ @ @code{(lsh 1 16)}
902@tab
79ddc9c9 903@samp{4} @ @ @code{(lsh 1 19)}
969fe9b5 904@tab
79ddc9c9 905@samp{b} @ @ @code{(lsh 1 21)}
a9f0a989
RS
906@item
907@tab
969fe9b5
RS
908@samp{2} @ @ @code{(lsh 1 17)}
909@tab
79ddc9c9 910@samp{p} @ @ @code{(lsh 1 20)}
969fe9b5 911@tab
79ddc9c9
GM
912@samp{n} @ @ @code{(lsh 1 22)}
913@item
914@tab
915@samp{3} @ @ @code{(lsh 1 18)}
969fe9b5 916@end multitable
f9f59935 917
d1f08d85
SM
918@defun string-to-syntax @var{desc}
919This function returns the internal form @code{(@var{syntax-code} .
920@var{matching-char})} corresponding to the syntax descriptor @var{desc}.
40153606 921@end defun
d1f08d85 922
f9f59935
RS
923@node Categories
924@section Categories
925@cindex categories of characters
926
927 @dfn{Categories} provide an alternate way of classifying characters
969fe9b5
RS
928syntactically. You can define several categories as needed, then
929independently assign each character to one or more categories. Unlike
f9f59935
RS
930syntax classes, categories are not mutually exclusive; it is normal for
931one character to belong to several categories.
932
933 Each buffer has a @dfn{category table} which records which categories
934are defined and also which characters belong to each category. Each
969fe9b5
RS
935category table defines its own categories, but normally these are
936initialized by copying from the standard categories table, so that the
937standard categories are available in all modes.
938
8241495d 939 Each category has a name, which is an @sc{ascii} printing character in
969fe9b5
RS
940the range @w{@samp{ }} to @samp{~}. You specify the name of a category
941when you define it with @code{define-category}.
f9f59935
RS
942
943 The category table is actually a char-table (@pxref{Char-Tables}).
944The element of the category table at index @var{c} is a @dfn{category
945set}---a bool-vector---that indicates which categories character @var{c}
946belongs to. In this category set, if the element at index @var{cat} is
947@code{t}, that means category @var{cat} is a member of the set, and that
948character @var{c} belongs to category @var{cat}.
949
950@defun define-category char docstring &optional table
951This function defines a new category, with name @var{char} and
952documentation @var{docstring}.
953
954The new category is defined for category table @var{table}, which
955defaults to the current buffer's category table.
956@end defun
957
958@defun category-docstring category &optional table
959This function returns the documentation string of category @var{category}
960in category table @var{table}.
961
962@example
963(category-docstring ?a)
964 @result{} "ASCII"
965(category-docstring ?l)
966 @result{} "Latin"
967@end example
968@end defun
969
970@defun get-unused-category table
971This function returns a category name (a character) which is not
969fe9b5 972currently defined in @var{table}. If all possible categories are in use
1911e6e5 973in @var{table}, it returns @code{nil}.
f9f59935
RS
974@end defun
975
976@defun category-table
977This function returns the current buffer's category table.
978@end defun
979
980@defun category-table-p object
981This function returns @code{t} if @var{object} is a category table,
982otherwise @code{nil}.
983@end defun
984
985@defun standard-category-table
986This function returns the standard category table.
987@end defun
988
989@defun copy-category-table &optional table
990This function constructs a copy of @var{table} and returns it. If
991@var{table} is not supplied (or is @code{nil}), it returns a copy of the
992current category table. Otherwise, an error is signaled if @var{table}
993is not a category table.
994@end defun
995
996@defun set-category-table table
997This function makes @var{table} the category table for the current
998buffer. It returns @var{table}.
999@end defun
1000
3f26d1e6 1001@defun make-category-table
2468d0c0 1002@tindex make-category-table
3f26d1e6
GM
1003This creates and returns an empty category table. In an empty category
1004table, no categories have been allocated, and no characters belong to
1005any categories.
2468d0c0
DL
1006@end defun
1007
f9f59935
RS
1008@defun make-category-set categories
1009This function returns a new category set---a bool-vector---whose initial
1010contents are the categories listed in the string @var{categories}. The
1011elements of @var{categories} should be category names; the new category
1012set has @code{t} for each of those categories, and @code{nil} for all
1013other categories.
1014
1015@example
1016(make-category-set "al")
1017 @result{} #&128"\0\0\0\0\0\0\0\0\0\0\0\0\2\20\0\0"
1018@end example
1019@end defun
1020
1021@defun char-category-set char
1022This function returns the category set for character @var{char}. This
1023is the bool-vector which records which categories the character
1024@var{char} belongs to. The function @code{char-category-set} does not
1025allocate storage, because it returns the same bool-vector that exists in
1026the category table.
1027
1028@example
1029(char-category-set ?a)
1030 @result{} #&128"\0\0\0\0\0\0\0\0\0\0\0\0\2\20\0\0"
1031@end example
1032@end defun
1033
1034@defun category-set-mnemonics category-set
1035This function converts the category set @var{category-set} into a string
2468d0c0
DL
1036containing the characters that designate the categories that are members
1037of the set.
f9f59935
RS
1038
1039@example
1040(category-set-mnemonics (char-category-set ?a))
1041 @result{} "al"
1042@end example
1043@end defun
1044
1045@defun modify-category-entry character category &optional table reset
1046This function modifies the category set of @var{character} in category
1047table @var{table} (which defaults to the current buffer's category
1048table).
1049
1050Normally, it modifies the category set by adding @var{category} to it.
1051But if @var{reset} is non-@code{nil}, then it deletes @var{category}
1052instead.
1053@end defun
a57092e8
DL
1054
1055@deffn Command describe-categories
1056This function describes the category specifications in the current
1057category table. The descriptions are inserted in a buffer, which is
1058then displayed.
1059@end deffn