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