GNU Emacs
ELisp
Syntax Tables
ELisp 29.4 elisp

Syntax Tables

A syntax table specifies the syntactic role of each character in a buffer. It can be used to determine where words, symbols, and other syntactic constructs begin and end. This information is used by many Emacs facilities, including Font Lock mode (Font Lock Mode) and the various complex movement commands (Motion).

Syntax Table Concepts

A syntax table is a data structure which can be used to look up the syntax class and other syntactic properties of each character. Syntax tables are used by Lisp programs for scanning and moving across text. Internally, a syntax table is a char-table (Char-Tables). The element at index c describes the character with code c; its value is a cons cell which specifies the syntax of the character in question. Syntax Table Internals, for details. However, instead of using aset and aref to modify and inspect syntax table contents, you should usually use the higher-level functions char-syntax and modify-syntax-entry, which are described in Syntax Table Functions.

syntax-table-p
This function returns t if object is a syntax table.

Each buffer has its own major mode, and each major mode has its own idea of the syntax class of various characters. For example, in Lisp mode, the character ; begins a comment, but in C mode, it terminates a statement. To support these variations, the syntax table is local to each buffer. Typically, each major mode has its own syntax table, which it installs in all buffers that use that mode. For example, the variable emacs-lisp-mode-syntax-table holds the syntax table used by Emacs Lisp mode, and c-mode-syntax-table holds the syntax table used by C mode. Changing a major mode's syntax table alters the syntax in all of that mode's buffers, as well as in any buffers subsequently put in that mode. Occasionally, several similar modes share one syntax table. Example Major Modes, for an example of how to set up a syntax table. A syntax table can inherit from another syntax table, which is called its parent syntax table. A syntax table can leave the syntax class of some characters unspecified, by giving them the "inherit" syntax class; such a character then acquires the syntax class specified by the parent syntax table (Syntax Class Table). Emacs defines a standard syntax table, which is the default parent syntax table, and is also the syntax table used by Fundamental mode.

standard-syntax-table
This function returns the standard syntax table, which is the syntax table used in Fundamental mode.

Syntax tables are not used by the Emacs Lisp reader, which has its own built-in syntactic rules which cannot be changed. (Some Lisp systems provide ways to redefine the read syntax, but we decided to leave this feature out of Emacs Lisp for simplicity.)

Syntax Descriptors

The syntax class of a character describes its syntactic role. Each syntax table specifies the syntax class of each character. There is no necessary relationship between the class of a character in one syntax table and its class in any other table. Each syntax class is designated by a mnemonic character, which serves as the name of the class when you need to specify a class. Usually, this designator character is one that is often assigned that class; however, its meaning as a designator is unvarying and independent of what syntax that character currently has. Thus, \ as a designator character always stands for escape character syntax, regardless of whether the \ character actually has that syntax in the current syntax table. Syntax Class Table, for a list of syntax classes and their designator characters. A syntax descriptor is a Lisp string that describes the syntax class and other syntactic properties of a character. When you want to modify the syntax of a character, that is done by calling the function modify-syntax-entry and passing a syntax descriptor as one of its arguments (Syntax Table Functions). The first character in a syntax descriptor must be a syntax class designator character. The second character, if present, specifies a matching character (e.g., in Lisp, the matching character for ( is )); a space specifies that there is no matching character. Then come characters specifying additional syntax properties (Syntax Flags). If no matching character or flags are needed, only one character (specifying the syntax class) is sufficient. For example, the syntax descriptor for the character * in C mode is ". 23" (i.e., punctuation, matching character slot unused, second character of a comment-starter, first character of a comment-ender), and the entry for / is . 14 (i.e., punctuation, matching character slot unused, first character of a comment-starter, second character of a comment-ender). Emacs also defines raw syntax descriptors, which are used to describe syntax classes at a lower level. Syntax Table Internals.

Table of Syntax Classes

Here is a table of syntax classes, the characters that designate them, their meanings, and examples of their use.

Whitespace characters: @ or -
Characters that separate symbols and words from each other. Typically, whitespace characters have no other syntactic significance, and multiple whitespace characters are syntactically equivalent to a single one. Space, tab, and formfeed are classified as whitespace in almost all major modes. This syntax class can be designated by either @ or -. Both designators are equivalent.
Word constituents: w
Parts of words in human languages. These are typically used in variable and command names in programs. All upper- and lower-case letters, and the digits, are typically word constituents.
Symbol constituents: _
Extra characters used in variable and command names along with word constituents. Examples include the characters $&*+-_<> in Lisp mode, which may be part of a symbol name even though they are not part of English words. In standard C, the only non-word-constituent character that is valid in symbols is underscore (_).
Punctuation characters: .
Characters used as punctuation in a human language, or used in a programming language to separate symbols from one another. Some programming language modes, such as Emacs Lisp mode, have no characters in this class since the few characters that are not symbol or word constituents all have other uses. Other programming language modes, such as C mode, use punctuation syntax for operators.
Open parenthesis characters: (, Close parenthesis characters: )
Characters used in dissimilar pairs to surround sentences or expressions. Such a grouping is begun with an open parenthesis character and terminated with a close. Each open parenthesis character matches a particular close parenthesis character, and vice versa. Normally, Emacs indicates momentarily the matching open parenthesis when you insert a close parenthesis. Blinking. In human languages, and in C code, the parenthesis pairs are (), [], and {}. In Emacs Lisp, the delimiters for lists and vectors (() and []) are classified as parenthesis characters.
String quotes: "
Characters used to delimit string constants. The same string quote character appears at the beginning and the end of a string. Such quoted strings do not nest. The parsing facilities of Emacs consider a string as a single token. The usual syntactic meanings of the characters in the string are suppressed. The Lisp modes have two string quote characters: double-quote (") and vertical bar (|). | is not used in Emacs Lisp, but it is used in Common Lisp. C also has two string quote characters: double-quote for strings, and apostrophe (') for character constants. Human text has no string quote characters. We do not want quotation marks to turn off the usual syntactic properties of other characters in the quotation.
Escape-syntax characters: \
Characters that start an escape sequence, such as is used in string and character constants. The character \ belongs to this class in both C and Lisp. (In C, it is used thus only inside strings, but it turns out to cause no trouble to treat it this way throughout C code.) Characters in this class count as part of words if words-include-escapes is non-nil. Word Motion.
Character quotes: /
Characters used to quote the following character so that it loses its normal syntactic meaning. This differs from an escape character in that only the character immediately following is ever affected. Characters in this class count as part of words if words-include-escapes is non-nil. Word Motion. This class is used for backslash in TeX mode.
Paired delimiters: $
Similar to string quote characters, except that the syntactic properties of the characters between the delimiters are not suppressed. Only TeX mode uses a paired delimiter presently—the $ that both enters and leaves math mode.
Expression prefixes: '
Characters used for syntactic operators that are considered as part of an expression if they appear next to one. In Lisp modes, these characters include the apostrophe, ' (used for quoting), the comma, = (used in macros), and =# (used in the read syntax for certain data types).
Comment starters: <, Comment enders: >
Characters used in various languages to delimit comments. Human text has no comment characters. In Lisp, the semicolon (;) starts a comment and a newline or formfeed ends one.
Inherit standard syntax: @
This syntax class does not specify a particular syntax. It says to look in the parent syntax table to find the syntax of this character.
Generic comment delimiters: !
(This syntax class is also known as "comment-fence".) Characters that start or end a special kind of comment. Any generic comment delimiter matches any generic comment delimiter, but they cannot match a comment starter or comment ender; generic comment delimiters can only match each other. This syntax class is primarily meant for use with the syntax-table text property (Syntax Properties). You can mark any range of characters as forming a comment, by giving the first and last characters of the range syntax-table properties identifying them as generic comment delimiters.
Generic string delimiters: |
(This syntax class is also known as "string-fence".) Characters that start or end a string. This class differs from the string quote class in that any generic string delimiter can match any other generic string delimiter; but they do not match ordinary string quote characters. This syntax class is primarily meant for use with the syntax-table text property (Syntax Properties). You can mark any range of characters as forming a string constant, by giving the first and last characters of the range syntax-table properties identifying them as generic string delimiters.

Syntax Flags

In addition to the classes, entries for characters in a syntax table can specify flags. There are eight possible flags, represented by the characters 1, 2, 3, 4, b, c, n, and p. All the flags except p are used to describe comment delimiters. The digit flags are used for comment delimiters made up of 2 characters. They indicate that a character can also be part of a comment sequence, in addition to the syntactic properties associated with its character class. The flags are independent of the class and each other for the sake of characters such as * in C mode, which is a punctuation character, and the second character of a start-of-comment sequence (/*), and the first character of an end-of-comment sequence (*/). The flags b, c, and n are used to qualify the corresponding comment delimiter. Here is a table of the possible flags for a character c, and what they mean:

  • 1 means c is the start of a two-character comment-start sequence.
  • 2 means c is the second character of such a sequence.
  • 3 means c is the start of a two-character comment-end sequence.
  • 4 means c is the second character of such a sequence.
  • b means that c as a comment delimiter belongs to the alternative "b" comment style. For a two-character comment starter, this flag is only significant on the second char, and for a 2-character comment ender it is only significant on the first char.
  • c means that c as a comment delimiter belongs to the alternative "c" comment style. For a two-character comment delimiter, c on either character makes it of style "c".
  • n on a comment delimiter character specifies that this kind of comment can be nested. Inside such a comment, only comments of the same style will be recognized. For a two-character comment delimiter, n on either character makes it nestable. Emacs supports several comment styles simultaneously in any one syntax table. A comment style is a set of flags b, c, and n, so there can be up to 8 different comment styles, each one named by the set of its flags. Each comment delimiter has a style and only matches comment delimiters of the same style. Thus if a comment starts with the comment-start sequence of style "bn", it will extend until the next matching comment-end sequence of style "bn". When the set of flags has neither flag b nor flag c set, the resulting style is called the "a" style. The appropriate comment syntax settings for C++ can be as follows:
  • / 124
  • * 23b
  • newline > This defines four comment-delimiting sequences:
  • /* This is a comment-start sequence for "b" style because the second character, *, has the b flag.
  • // This is a comment-start sequence for "a" style because the second character, /, does not have the b flag.
  • */ This is a comment-end sequence for "b" style because the first character, *, has the b flag.
  • newline This is a comment-end sequence for "a" style, because the newline character does not have the b flag.
  • p identifies an additional prefix character for Lisp syntax. These characters are treated as whitespace when they appear between expressions. When they appear within an expression, they are handled according to their usual syntax classes. The function backward-prefix-chars moves back over these characters, as well as over characters whose primary syntax class is prefix ('). Motion and Syntax.

Syntax Table Functions

In this section we describe functions for creating, accessing and altering syntax tables.

make-syntax-table
This function creates a new syntax table. If table is non-nil, the parent of the new syntax table is table; otherwise, the parent is the standard syntax table. In the new syntax table, all characters are initially given the "inherit" (@) syntax class, i.e., their syntax is inherited from the parent table (Syntax Class Table).
copy-syntax-table
This function constructs a copy of table and returns it. If table is omitted or nil, it returns a copy of the standard syntax table. Otherwise, an error is signaled if table is not a syntax table.
Command modify-syntax-entry
This function sets the syntax entry for char according to syntax-descriptor. char must be a character, or a cons cell of the form (MIN . MAX); in the latter case, the function sets the syntax entries for all characters in the range between min and max, inclusive. The syntax is changed only for table, which defaults to the current buffer's syntax table, and not in any other syntax table. The argument syntax-descriptor is a syntax descriptor, i.e., a string whose first character is a syntax class designator and whose second and subsequent characters optionally specify a matching character and syntax flags. Syntax Descriptors. An error is signaled if syntax-descriptor is not a valid syntax descriptor. This function always returns nil. The old syntax information in the table for this character is discarded.
@exdent Examples:

;; Put the space character in class whitespace.
(modify-syntax-entry ?\s " ")
     => nil

;; Make ‘$’ an open parenthesis character
;;   with ‘^’ as its matching close.
(modify-syntax-entry ?$ "(^")
     => nil

;; Make ‘^’ a close parenthesis character
;;   with ‘$’ as its matching open.
(modify-syntax-entry ?^ ")$")
     => nil

;; Make ‘/’ a punctuation character
;;   the first character of a start-comment sequence
;;   and the second character of an end-comment sequence.
;;   This is used in C mode.
(modify-syntax-entry ?/ ". 14")
     => nil
char-syntax
This function returns the syntax class of character, represented by its designator character (Syntax Class Table). This returns only the class, not its matching character or syntax flags. The following examples apply to C mode. (We use string to make it easier to see the character returned by char-syntax.)
;; Space characters have whitespace syntax class.
(string (char-syntax ?\s))
     => " "

;; Forward slash characters have punctuation syntax.
;; Note that this char-syntax call does not reveal
;; that it is also part of comment-start and -end sequences.
(string (char-syntax ?/))
     => "."

;; Open parenthesis characters have open parenthesis syntax.
;; Note that this char-syntax call does not reveal that
;; it has a matching character, ‘)’.
(string (char-syntax ?\())
     => "("
set-syntax-table
This function makes table the syntax table for the current buffer. It returns table.
syntax-table
This function returns the current syntax table, which is the table for the current buffer.
Command describe-syntax
This command displays the contents of the syntax table of buffer (by default, the current buffer) in a help buffer.
with-syntax-table
This macro executes body using table as the current syntax table. It returns the value of the last form in body, after restoring the old current syntax table. Since each buffer has its own current syntax table, we should make that more precise: with-syntax-table temporarily alters the current syntax table of whichever buffer is current at the time the macro execution starts. Other buffers are not affected.

Syntax Properties

When the syntax table is not flexible enough to specify the syntax of a language, you can override the syntax table for specific character occurrences in the buffer, by applying a syntax-table text property. Text Properties, for how to apply text properties. The valid values of syntax-table text property are:

syntax-table
If the property value is a syntax table, that table is used instead of the current buffer's syntax table to determine the syntax for the underlying text character.
(SYNTAX-CODE . MATCHING-CHAR)
A cons cell of this format is a raw syntax descriptor (Syntax Table Internals), which directly specifies a syntax class for the underlying text character.
nil
If the property is nil, the character's syntax is determined from the current syntax table in the usual way.
parse-sexp-lookup-properties
If this is non-nil, the syntax scanning functions, like forward-sexp, pay attention to syntax-table text properties. Otherwise they use only the current syntax table.
syntax-propertize-function
This variable, if non-nil, should store a function for applying syntax-table properties to a specified stretch of text. It is intended to be used by major modes to install a function which applies syntax-table properties in some mode-appropriate way. The function is called by syntax-ppss (Position Parse), and by Font Lock mode during syntactic fontification (Syntactic Font Lock). It is called with two arguments, start and end, which are the starting and ending positions of the text on which it should act. It is allowed to arbitrarily move point within the region delimited by start and end; such motions don't need to use save-excursion (Excursions). It is also allowed to call syntax-ppss on any position before end, but if a Lisp program calls syntax-ppss on some position and later modifies the buffer at some earlier position, then it is that program's responsibility to call syntax-ppss-flush-cache to flush the now obsolete info from the cache. Caution: When this variable is non-nil, Emacs removes syntax-table text properties arbitrarily and relies on syntax-propertize-function to reapply them. Thus if this facility is used at all, the function must apply all syntax-table text properties used by the major mode. In particular, Modes derived from a CC Mode mode must not use this variable, since CC Mode uses other means to apply and remove these text properties.
syntax-propertize-extend-region-functions
This abnormal hook is run by the syntax parsing code prior to calling syntax-propertize-function. Its role is to help locate safe starting and ending buffer positions for passing to syntax-propertize-function. For example, a major mode can add a function to this hook to identify multi-line syntactic constructs, and ensure that the boundaries do not fall in the middle of one. Each function in this hook should accept two arguments, start and end. It should return either a cons cell of two adjusted buffer positions, (NEW-START . NEW-END), or nil if no adjustment is necessary. The hook functions are run in turn, repeatedly, until they all return nil.

Motion and Syntax

This section describes functions for moving across characters that have certain syntax classes.

skip-syntax-forward
This function moves point forward across characters having syntax classes mentioned in syntaxes (a string of syntax class characters). It stops when it encounters the end of the buffer, or position limit (if specified), or a character it is not supposed to skip. If syntaxes starts with ^, then the function skips characters whose syntax is not in syntaxes. The return value is the distance traveled, which is a nonnegative integer.
skip-syntax-backward
This function moves point backward across characters whose syntax classes are mentioned in syntaxes. It stops when it encounters the beginning of the buffer, or position limit (if specified), or a character it is not supposed to skip. If syntaxes starts with ^, then the function skips characters whose syntax is not in syntaxes. The return value indicates the distance traveled. It is an integer that is zero or less.
backward-prefix-chars
This function moves point backward over any number of characters with expression prefix syntax. This includes both characters in the expression prefix syntax class, and characters with the p flag.

Parsing Expressions

This section describes functions for parsing and scanning balanced expressions. We will refer to such expressions as sexps, following the terminology of Lisp, even though these functions can act on languages other than Lisp. Basically, a sexp is either a balanced parenthetical grouping, a string, or a symbol (i.e., a sequence of characters whose syntax is either word constituent or symbol constituent). However, characters in the expression prefix syntax class (Syntax Class Table) are treated as part of the sexp if they appear next to it. The syntax table controls the interpretation of characters, so these functions can be used for Lisp expressions when in Lisp mode and for C expressions when in C mode. List Motion, for convenient higher-level functions for moving over balanced expressions. A character's syntax controls how it changes the state of the parser, rather than describing the state itself. For example, a string delimiter character toggles the parser state between in-string and in-code, but the syntax of characters does not directly say whether they are inside a string. For example (note that 15 is the syntax code for generic string delimiters),

(put-text-property 1 9 'syntax-table '(15 . nil))

does not tell Emacs that the first eight chars of the current buffer are a string, but rather that they are all string delimiters. As a result, Emacs treats them as four consecutive empty string constants.

Motion Commands Based on Parsing

This section describes simple point-motion functions that operate based on parsing expressions.

scan-lists
This function scans forward count balanced parenthetical groupings from position from. It returns the position where the scan stops. If count is negative, the scan moves backwards. If depth is nonzero, treat the starting position as being depth parentheses deep. The scanner moves forward or backward through the buffer until the depth changes to zero count times. Hence, a positive value for depth has the effect of moving out depth levels of parenthesis from the starting position, while a negative depth has the effect of moving deeper by -depth levels of parenthesis. Scanning ignores comments if parse-sexp-ignore-comments is non-nil. If the scan reaches the beginning or end of the accessible part of the buffer before it has scanned over count parenthetical groupings, the return value is nil if the depth at that point is zero; if the depth is non-zero, a scan-error error is signaled.
scan-sexps
This function scans forward count sexps from position from. It returns the position where the scan stops. If count is negative, the scan moves backwards. Scanning ignores comments if parse-sexp-ignore-comments is non-nil. If the scan reaches the beginning or end of (the accessible part of) the buffer while in the middle of a parenthetical grouping, an error is signaled. If it reaches the beginning or end between groupings but before count is used up, nil is returned.
forward-comment
This function moves point forward across count complete comments (that is, including the starting delimiter and the terminating delimiter if any), plus any whitespace encountered on the way. It moves backward if count is negative. If it encounters anything other than a comment or whitespace, it stops, leaving point at the place where it stopped. This includes (for instance) finding the end of a comment when moving forward and expecting the beginning of one. The function also stops immediately after moving over the specified number of complete comments. If count comments are found as expected, with nothing except whitespace between them, it returns t; otherwise it returns nil. This function cannot tell whether the comments it traverses are embedded within a string. If they look like comments, it treats them as comments. To move forward over all comments and whitespace following point, use (forward-comment (buffer-size)). (buffer-size) is a good argument to use, because the number of comments in the buffer cannot exceed that many.

Finding the Parse State for a Position

For syntactic analysis, such as in indentation, often the useful thing is to compute the syntactic state corresponding to a given buffer position. This function does that conveniently.

syntax-ppss
This function returns the parser state that the parser would reach at position pos starting from the beginning of the visible portion of the buffer. Parser State, for a description of the parser state. The return value is the same as if you call the low-level parsing function parse-partial-sexp to parse from the beginning of the visible portion of the buffer to pos (Low-Level Parsing). However, syntax-ppss uses caches to speed up the computation. Due to this optimization, the second value (previous complete subexpression) and sixth value (minimum parenthesis depth) in the returned parser state are not meaningful. This function has a side effect: it adds a buffer-local entry to before-change-functions (Change Hooks) for syntax-ppss-flush-cache (see below). This entry keeps the cache consistent as the buffer is modified. However, the cache might not be updated if syntax-ppss is called while before-change-functions is temporarily let-bound, or if the buffer is modified without running the hook, such as when using inhibit-modification-hooks. In those cases, it is necessary to call syntax-ppss-flush-cache explicitly.
syntax-ppss-flush-cache
This function flushes the cache used by syntax-ppss, starting at position beg. The remaining arguments, ignored-args, are ignored; this function accepts them so that it can be directly used on hooks such as before-change-functions (Change Hooks).

Parser State

A parser state is a list of (currently) eleven elements describing the state of the syntactic parser, after it parses the text between a specified starting point and a specified end point in the buffer using parse-partial-sexp (Low-Level Parsing). Parsing functions such as syntax-ppss (Position Parse) also return a parser state as the value. parse-partial-sexp can accept a parser state as an argument, for resuming parsing. Here are the meanings of the elements of the parser state:

  1. The depth in parentheses, counting from 0. Warning: this can be negative if there are more close parens than open parens between the parser's starting point and end point.
  2. The character position of the start of the innermost parenthetical grouping containing the stopping point; nil if none.
  3. The character position of the start of the last complete subexpression terminated; nil if none.
  4. Non-nil if inside a string. More precisely, this is the character that will terminate the string, or t if a generic string delimiter character should terminate it.
  5. t if inside a non-nestable comment (of any comment style; Syntax Flags); or the comment nesting level if inside a comment that can be nested.
  6. t if the end point is just after a quote character.
  7. The minimum parenthesis depth encountered during this scan.
  8. What kind of comment is active: nil if not in a comment or in a comment of style a; 1 for a comment of style b; 2 for a comment of style c; and syntax-table for a comment that should be ended by a generic comment delimiter character.
  9. The string or comment start position. While inside a comment, this is the position where the comment began; while inside a string, this is the position where the string began. When outside of strings and comments, this element is nil.
  10. The list of the positions of the currently open parentheses, starting with the outermost.
  11. When the last buffer position scanned was the (potential) first character of a two character construct (comment delimiter or escaped/char-quoted character pair), the syntax-code (Syntax Table Internals) of that position. Otherwise nil.

Elements 1, 2, and 6 are ignored in a state which you pass as an argument to parse-partial-sexp to continue parsing. Elements 9 and 10 are mainly used internally by the parser code. Some additional useful information is available from a parser state using these functions:

syntax-ppss-toplevel-pos
This function extracts, from parser state state, the last position scanned in the parse which was at top level in grammatical structure. "At top level" means outside of any parentheses, comments, or strings. The value is nil if state represents a parse which has arrived at a top level position.
syntax-ppss-context
Return string if the end position of the scan returning state is in a string, and comment if it's in a comment. Otherwise return nil.

Low-Level Parsing

The most basic way to use the expression parser is to tell it to start at a given position with a certain state, and parse up to a specified end position.

parse-partial-sexp
This function parses a sexp in the current buffer starting at start, not scanning past limit. It stops at position limit or when certain criteria described below are met, and sets point to the location where parsing stops. It returns a parser state (Parser State) describing the status of the parse at the point where it stops. If the third argument target-depth is non-nil, parsing stops if the depth in parentheses becomes equal to target-depth. The depth starts at 0, or at whatever is given in state. If the fourth argument stop-before is non-nil, parsing stops when it comes to any character that starts a sexp. If stop-comment is non-nil, parsing stops after the start of an unnested comment. If stop-comment is the symbol syntax-table, parsing stops after the start of an unnested comment or a string, or after the end of an unnested comment or a string, whichever comes first. If state is nil, start is assumed to be at the top level of parenthesis structure, such as the beginning of a function definition. Alternatively, you might wish to resume parsing in the middle of the structure. To do this, you must provide a state argument that describes the initial status of parsing. The value returned by a previous call to parse-partial-sexp will do nicely.

Parameters to Control Parsing

multibyte-syntax-as-symbol
If this variable is non-nil, scan-sexps treats all non-ASCII characters as symbol constituents regardless of what the syntax table says about them. (However, =syntax-table=text properties can still override the syntax.)
parse-sexp-ignore-comments
If the value is non-nil, then comments are treated as whitespace by the functions in this section and by forward-sexp, scan-lists and scan-sexps.

The behavior of parse-partial-sexp is also affected by parse-sexp-lookup-properties (Syntax Properties).

comment-end-can-be-escaped
If this buffer local variable is non-nil, a single character which usually terminates a comment doesn't do so when that character is escaped. This is used in C and C++ Modes, where line comments starting with // can be continued onto the next line by escaping the newline with \.

You can use forward-comment to move forward or backward over one comment or several comments.

Syntax Table Internals

Syntax tables are implemented as char-tables (Char-Tables), but most Lisp programs don't work directly with their elements. Syntax tables do not store syntax data as syntax descriptors (Syntax Descriptors); they use an internal format, which is documented in this section. This internal format can also be assigned as syntax properties (Syntax Properties). Each entry in a syntax table is a raw syntax descriptor: a cons cell of the form (SYNTAX-CODE . MATCHING-CHAR). syntax-code is an integer which encodes the syntax class and syntax flags, according to the table below. matching-char, if non-nil, specifies a matching character (similar to the second character in a syntax descriptor). Use aref (Array Functions) to get the raw syntax descriptor of a character, e.g. (aref (syntax-table) ch). Here are the syntax codes corresponding to the various syntax classes: @multitable @columnfractions .2 .3 .2 .3 - @i{Code} @tab @i{Class} @tab @i{Code} @tab @i{Class} - 0 @tab whitespace @tab 8 @tab paired delimiter - 1 @tab punctuation @tab 9 @tab escape - 2 @tab word @tab 10 @tab character quote - 3 @tab symbol @tab 11 @tab comment-start - 4 @tab open parenthesis @tab 12 @tab comment-end - 5 @tab close parenthesis @tab 13 @tab inherit - 6 @tab expression prefix @tab 14 @tab generic comment - 7 @tab string quote @tab 15 @tab generic string For example, in the standard syntax table, the entry for ( is (4 . 41). 41 is the character code for ). Syntax flags are encoded in higher order bits, starting 16 bits from the least significant bit. This table gives the power of two which corresponds to each syntax flag. @multitable @columnfractions .15 .3 .15 .3 - @i{Prefix} @tab @i{Flag} @tab @i{Prefix} @tab @i{Flag} - 1 @tab (ash 1 16) @tab p @tab (ash 1 20) - 2 @tab (ash 1 17) @tab b @tab (ash 1 21) - 3 @tab (ash 1 18) @tab n @tab (ash 1 22) - 4 @tab (ash 1 19) @tab c @tab (ash 1 23)

string-to-syntax
Given a syntax descriptor desc (a string), this function returns the corresponding raw syntax descriptor.
syntax-class-to-char
Given a raw syntax descriptor syntax (an integer), this function returns the corresponding syntax descriptor (a character).
syntax-after
This function returns the raw syntax descriptor for the character in the buffer after position pos, taking account of syntax properties as well as the syntax table. If pos is outside the buffer's accessible portion (accessible portion), the return value is nil.
syntax-class
This function returns the syntax code for the raw syntax descriptor syntax. More precisely, it takes the raw syntax descriptor's syntax-code component, masks off the high 16 bits which record the syntax flags, and returns the resulting integer. If syntax is nil, the return value is nil. This is so that the expression
(syntax-class (syntax-after pos))

evaluates to nil if pos is outside the buffer's accessible portion, without throwing errors or returning an incorrect code.

Categories

Categories provide an alternate way of classifying characters syntactically. You can define several categories as needed, then independently assign each character to one or more categories. Unlike syntax classes, categories are not mutually exclusive; it is normal for one character to belong to several categories. Each buffer has a category table which records which categories are defined and also which characters belong to each category. Each category table defines its own categories, but normally these are initialized by copying from the standard categories table, so that the standard categories are available in all modes. Each category has a name, which is an ASCII printing character in the range = to =~. You specify the name of a category when you define it with define-category. The category table is actually a char-table (Char-Tables). The element of the category table at index c is a category set—a bool-vector—that indicates which categories character c belongs to. In this category set, if the element at index cat is t, that means category cat is a member of the set, and that character c belongs to category cat. For the next three functions, the optional argument table defaults to the current buffer's category table.

define-category
This function defines a new category, with name char and documentation docstring, for the category table table. Here's an example of defining a new category for characters that have strong right-to-left directionality (Bidirectional Display) and using it in a special category table. To obtain the information about the directionality of characters, the example code uses the bidi-class Unicode property (bidi-class).
(defvar special-category-table-for-bidi
  ;;     Make an empty category-table.
  (let ((category-table (make-category-table))
        ;; Create a char-table which gives the 'bidi-class' Unicode
        ;; property for each character.
        (uniprop-table
         (unicode-property-table-internal 'bidi-class)))
    (define-category ?R "Characters of bidi-class R, AL, or RLO"
                     category-table)
    ;; Modify the category entry of each character whose
    ;; 'bidi-class' Unicode property is R, AL, or RLO --
    ;; these have a right-to-left directionality.
    (map-char-table
     (lambda (key val)
       (if (memq val '(R AL RLO))
           (modify-category-entry key ?R category-table)))
     uniprop-table)
    category-table))
category-docstring
This function returns the documentation string of category category in category table table.
(category-docstring ?a)
     => "ASCII"
(category-docstring ?l)
     => "Latin"
get-unused-category
This function returns a category name (a character) which is not currently defined in table. If all possible categories are in use in table, it returns nil.
category-table
This function returns the current buffer's category table.
category-table-p
This function returns t if object is a category table, otherwise nil.
standard-category-table
This function returns the standard category table.
copy-category-table
This function constructs a copy of table and returns it. If table is not supplied (or is nil), it returns a copy of the standard category table. Otherwise, an error is signaled if table is not a category table.
set-category-table
This function makes table the category table for the current buffer. It returns table.
make-category-table
This creates and returns an empty category table. In an empty category table, no categories have been allocated, and no characters belong to any categories.
make-category-set
This function returns a new category set—a bool-vector—whose initial contents are the categories listed in the string categories. The elements of categories should be category names; the new category set has t for each of those categories, and nil for all other categories.
(make-category-set "al")
     => #&128"\0\0\0\0\0\0\0\0\0\0\0\0\2\20\0\0"
char-category-set
This function returns the category set for character char in the current buffer's category table. This is the bool-vector which records which categories the character char belongs to. The function char-category-set does not allocate storage, because it returns the same bool-vector that exists in the category table.
(char-category-set ?a)
     => #&128"\0\0\0\0\0\0\0\0\0\0\0\0\2\20\0\0"
category-set-mnemonics
This function converts the category set category-set into a string containing the characters that designate the categories that are members of the set.
(category-set-mnemonics (char-category-set ?a))
     => "al"
modify-category-entry
This function modifies the category set of char in category table table (which defaults to the current buffer's category table). char can be a character, or a cons cell of the form (MIN . MAX); in the latter case, the function modifies the category sets of all characters in the range between min and max, inclusive. Normally, it modifies a category set by adding category to it. But if reset is non-nil, then it deletes category instead.
Command describe-categories
This function describes the category specifications in the current category table. It inserts the descriptions in a buffer, and then displays that buffer. If buffer-or-name is non-nil, it describes the category table of that buffer instead.
Manual
Emacs Lisp 29.4
Texinfo Node
Syntax Tables
Source Ref
emacs-29.4
Source
View upstream