]> code.delx.au - gnu-emacs/blob - lisp/font-lock.el
(font-lock-negation-char-face): New face and variable.
[gnu-emacs] / lisp / font-lock.el
1 ;;; font-lock.el --- Electric font lock mode
2
3 ;; Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4 ;; 2000, 2001, 2002, 2003, 2004 2005 Free Software Foundation, Inc.
5
6 ;; Author: jwz, then rms, then sm
7 ;; Maintainer: FSF
8 ;; Keywords: languages, faces
9
10 ;; This file is part of GNU Emacs.
11
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; any later version.
16
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
26
27 ;;; Commentary:
28
29 ;; Font Lock mode is a minor mode that causes your comments to be displayed in
30 ;; one face, strings in another, reserved words in another, and so on.
31 ;;
32 ;; Comments will be displayed in `font-lock-comment-face'.
33 ;; Strings will be displayed in `font-lock-string-face'.
34 ;; Regexps are used to display selected patterns in other faces.
35 ;;
36 ;; To make the text you type be fontified, use M-x font-lock-mode RET.
37 ;; When this minor mode is on, the faces of the current line are updated with
38 ;; every insertion or deletion.
39 ;;
40 ;; To turn Font Lock mode on automatically, add this to your ~/.emacs file:
41 ;;
42 ;; (add-hook 'emacs-lisp-mode-hook 'turn-on-font-lock)
43 ;;
44 ;; Or if you want to turn Font Lock mode on in many modes:
45 ;;
46 ;; (global-font-lock-mode t)
47 ;;
48 ;; Fontification for a particular mode may be available in a number of levels
49 ;; of decoration. The higher the level, the more decoration, but the more time
50 ;; it takes to fontify. See the variable `font-lock-maximum-decoration', and
51 ;; also the variable `font-lock-maximum-size'. Support modes for Font Lock
52 ;; mode can be used to speed up Font Lock mode. See `font-lock-support-mode'.
53 \f
54 ;;; How Font Lock mode fontifies:
55
56 ;; When Font Lock mode is turned on in a buffer, it (a) fontifies the entire
57 ;; buffer and (b) installs one of its fontification functions on one of the
58 ;; hook variables that are run by Emacs after every buffer change (i.e., an
59 ;; insertion or deletion). Fontification means the replacement of `face' text
60 ;; properties in a given region; Emacs displays text with these `face' text
61 ;; properties appropriately.
62 ;;
63 ;; Fontification normally involves syntactic (i.e., strings and comments) and
64 ;; regexp (i.e., keywords and everything else) passes. There are actually
65 ;; three passes; (a) the syntactic keyword pass, (b) the syntactic pass and (c)
66 ;; the keyword pass. Confused?
67 ;;
68 ;; The syntactic keyword pass places `syntax-table' text properties in the
69 ;; buffer according to the variable `font-lock-syntactic-keywords'. It is
70 ;; necessary because Emacs' syntax table is not powerful enough to describe all
71 ;; the different syntactic constructs required by the sort of people who decide
72 ;; that a single quote can be syntactic or not depending on the time of day.
73 ;; (What sort of person could decide to overload the meaning of a quote?)
74 ;; Obviously the syntactic keyword pass must occur before the syntactic pass.
75 ;;
76 ;; The syntactic pass places `face' text properties in the buffer according to
77 ;; syntactic context, i.e., according to the buffer's syntax table and buffer
78 ;; text's `syntax-table' text properties. It involves using a syntax parsing
79 ;; function to determine the context of different parts of a region of text. A
80 ;; syntax parsing function is necessary because generally strings and/or
81 ;; comments can span lines, and so the context of a given region is not
82 ;; necessarily apparent from the content of that region. Because the keyword
83 ;; pass only works within a given region, it is not generally appropriate for
84 ;; syntactic fontification. This is the first fontification pass that makes
85 ;; changes visible to the user; it fontifies strings and comments.
86 ;;
87 ;; The keyword pass places `face' text properties in the buffer according to
88 ;; the variable `font-lock-keywords'. It involves searching for given regexps
89 ;; (or calling given search functions) within the given region. This is the
90 ;; second fontification pass that makes changes visible to the user; it
91 ;; fontifies language reserved words, etc.
92 ;;
93 ;; Oh, and the answer is, "Yes, obviously just about everything should be done
94 ;; in a single syntactic pass, but the only syntactic parser available
95 ;; understands only strings and comments." Perhaps one day someone will write
96 ;; some syntactic parsers for common languages and a son-of-font-lock.el could
97 ;; use them rather then relying so heavily on the keyword (regexp) pass.
98
99 ;;; How Font Lock mode supports modes or is supported by modes:
100
101 ;; Modes that support Font Lock mode do so by defining one or more variables
102 ;; whose values specify the fontification. Font Lock mode knows of these
103 ;; variable names from (a) the buffer local variable `font-lock-defaults', if
104 ;; non-nil, or (b) the global variable `font-lock-defaults-alist', if the major
105 ;; mode has an entry. (Font Lock mode is set up via (a) where a mode's
106 ;; patterns are distributed with the mode's package library, and (b) where a
107 ;; mode's patterns are distributed with font-lock.el itself. An example of (a)
108 ;; is Pascal mode, an example of (b) is Lisp mode. Normally, the mechanism is
109 ;; (a); (b) is used where it is not clear which package library should contain
110 ;; the pattern definitions.) Font Lock mode chooses which variable to use for
111 ;; fontification based on `font-lock-maximum-decoration'.
112 ;;
113 ;; Font Lock mode fontification behaviour can be modified in a number of ways.
114 ;; See the below comments and the comments distributed throughout this file.
115
116 ;;; Constructing patterns:
117
118 ;; See the documentation for the variable `font-lock-keywords'.
119 ;;
120 ;; Efficient regexps for use as MATCHERs for `font-lock-keywords' and
121 ;; `font-lock-syntactic-keywords' can be generated via the function
122 ;; `regexp-opt'.
123
124 ;;; Adding patterns for modes that already support Font Lock:
125
126 ;; Though Font Lock highlighting patterns already exist for many modes, it's
127 ;; likely there's something that you want fontified that currently isn't, even
128 ;; at the maximum fontification level. You can add highlighting patterns via
129 ;; `font-lock-add-keywords'. For example, say in some C
130 ;; header file you #define the token `and' to expand to `&&', etc., to make
131 ;; your C code almost readable. In your ~/.emacs there could be:
132 ;;
133 ;; (font-lock-add-keywords 'c-mode '("\\<\\(and\\|or\\|not\\)\\>"))
134 ;;
135 ;; Some modes provide specific ways to modify patterns based on the values of
136 ;; other variables. For example, additional C types can be specified via the
137 ;; variable `c-font-lock-extra-types'.
138
139 ;;; Adding patterns for modes that do not support Font Lock:
140
141 ;; Not all modes support Font Lock mode. If you (as a user of the mode) add
142 ;; patterns for a new mode, you must define in your ~/.emacs a variable or
143 ;; variables that specify regexp fontification. Then, you should indicate to
144 ;; Font Lock mode, via the mode hook setting `font-lock-defaults', exactly what
145 ;; support is required. For example, say Foo mode should have the following
146 ;; regexps fontified case-sensitively, and comments and strings should not be
147 ;; fontified automagically. In your ~/.emacs there could be:
148 ;;
149 ;; (defvar foo-font-lock-keywords
150 ;; '(("\\<\\(one\\|two\\|three\\)\\>" . font-lock-keyword-face)
151 ;; ("\\<\\(four\\|five\\|six\\)\\>" . font-lock-type-face))
152 ;; "Default expressions to highlight in Foo mode.")
153 ;;
154 ;; (add-hook 'foo-mode-hook
155 ;; (lambda ()
156 ;; (make-local-variable 'font-lock-defaults)
157 ;; (setq font-lock-defaults '(foo-font-lock-keywords t))))
158
159 ;;; Adding Font Lock support for modes:
160
161 ;; Of course, it would be better that the mode already supports Font Lock mode.
162 ;; The package author would do something similar to above. The mode must
163 ;; define at the top-level a variable or variables that specify regexp
164 ;; fontification. Then, the mode command should indicate to Font Lock mode,
165 ;; via `font-lock-defaults', exactly what support is required. For example,
166 ;; say Bar mode should have the following regexps fontified case-insensitively,
167 ;; and comments and strings should be fontified automagically. In bar.el there
168 ;; could be:
169 ;;
170 ;; (defvar bar-font-lock-keywords
171 ;; '(("\\<\\(uno\\|due\\|tre\\)\\>" . font-lock-keyword-face)
172 ;; ("\\<\\(quattro\\|cinque\\|sei\\)\\>" . font-lock-type-face))
173 ;; "Default expressions to highlight in Bar mode.")
174 ;;
175 ;; and within `bar-mode' there could be:
176 ;;
177 ;; (make-local-variable 'font-lock-defaults)
178 ;; (setq font-lock-defaults '(bar-font-lock-keywords nil t))
179 \f
180 ;; What is fontification for? You might say, "It's to make my code look nice."
181 ;; I think it should be for adding information in the form of cues. These cues
182 ;; should provide you with enough information to both (a) distinguish between
183 ;; different items, and (b) identify the item meanings, without having to read
184 ;; the items and think about it. Therefore, fontification allows you to think
185 ;; less about, say, the structure of code, and more about, say, why the code
186 ;; doesn't work. Or maybe it allows you to think less and drift off to sleep.
187 ;;
188 ;; So, here are my opinions/advice/guidelines:
189 ;;
190 ;; - Highlight conceptual objects, such as function and variable names, and
191 ;; different objects types differently, i.e., (a) and (b) above, highlight
192 ;; function names differently to variable names.
193 ;; - Keep the faces distinct from each other as far as possible.
194 ;; i.e., (a) above.
195 ;; - Use the same face for the same conceptual object, across all modes.
196 ;; i.e., (b) above, all modes that have items that can be thought of as, say,
197 ;; keywords, should be highlighted with the same face, etc.
198 ;; - Make the face attributes fit the concept as far as possible.
199 ;; i.e., function names might be a bold colour such as blue, comments might
200 ;; be a bright colour such as red, character strings might be brown, because,
201 ;; err, strings are brown (that was not the reason, please believe me).
202 ;; - Don't use a non-nil OVERRIDE unless you have a good reason.
203 ;; Only use OVERRIDE for special things that are easy to define, such as the
204 ;; way `...' quotes are treated in strings and comments in Emacs Lisp mode.
205 ;; Don't use it to, say, highlight keywords in commented out code or strings.
206 ;; - Err, that's it.
207 \f
208 ;;; Code:
209
210 (require 'syntax)
211
212 ;; Define core `font-lock' group.
213 (defgroup font-lock '((jit-lock custom-group))
214 "Font Lock mode text highlighting package."
215 :link '(custom-manual "(emacs)Font Lock")
216 :link '(custom-manual "(elisp)Font Lock Mode")
217 :group 'faces)
218
219 (defgroup font-lock-highlighting-faces nil
220 "Faces for highlighting text."
221 :prefix "font-lock-"
222 :group 'font-lock)
223
224 (defgroup font-lock-extra-types nil
225 "Extra mode-specific type names for highlighting declarations."
226 :group 'font-lock)
227
228 ;; Define support mode groups here to impose `font-lock' group order.
229 (defgroup fast-lock nil
230 "Font Lock support mode to cache fontification."
231 :load 'fast-lock
232 :group 'font-lock)
233
234 (defgroup lazy-lock nil
235 "Font Lock support mode to fontify lazily."
236 :load 'lazy-lock
237 :group 'font-lock)
238 \f
239 ;; User variables.
240
241 (defcustom font-lock-maximum-size 256000
242 "*Maximum size of a buffer for buffer fontification.
243 Only buffers less than this can be fontified when Font Lock mode is turned on.
244 If nil, means size is irrelevant.
245 If a list, each element should be a cons pair of the form (MAJOR-MODE . SIZE),
246 where MAJOR-MODE is a symbol or t (meaning the default). For example:
247 ((c-mode . 256000) (c++-mode . 256000) (rmail-mode . 1048576))
248 means that the maximum size is 250K for buffers in C or C++ modes, one megabyte
249 for buffers in Rmail mode, and size is irrelevant otherwise."
250 :type '(choice (const :tag "none" nil)
251 (integer :tag "size")
252 (repeat :menu-tag "mode specific" :tag "mode specific"
253 :value ((t . nil))
254 (cons :tag "Instance"
255 (radio :tag "Mode"
256 (const :tag "all" t)
257 (symbol :tag "name"))
258 (radio :tag "Size"
259 (const :tag "none" nil)
260 (integer :tag "size")))))
261 :group 'font-lock)
262
263 (defcustom font-lock-maximum-decoration t
264 "*Maximum decoration level for fontification.
265 If nil, use the default decoration (typically the minimum available).
266 If t, use the maximum decoration available.
267 If a number, use that level of decoration (or if not available the maximum).
268 If a list, each element should be a cons pair of the form (MAJOR-MODE . LEVEL),
269 where MAJOR-MODE is a symbol or t (meaning the default). For example:
270 ((c-mode . t) (c++-mode . 2) (t . 1))
271 means use the maximum decoration available for buffers in C mode, level 2
272 decoration for buffers in C++ mode, and level 1 decoration otherwise."
273 :type '(choice (const :tag "default" nil)
274 (const :tag "maximum" t)
275 (integer :tag "level" 1)
276 (repeat :menu-tag "mode specific" :tag "mode specific"
277 :value ((t . t))
278 (cons :tag "Instance"
279 (radio :tag "Mode"
280 (const :tag "all" t)
281 (symbol :tag "name"))
282 (radio :tag "Decoration"
283 (const :tag "default" nil)
284 (const :tag "maximum" t)
285 (integer :tag "level" 1)))))
286 :group 'font-lock)
287
288 (defcustom font-lock-verbose 0
289 "*If non-nil, means show status messages for buffer fontification.
290 If a number, only buffers greater than this size have fontification messages."
291 :type '(choice (const :tag "never" nil)
292 (other :tag "always" t)
293 (integer :tag "size"))
294 :group 'font-lock)
295
296 (defcustom font-lock-lines-before 1
297 "*Number of lines before the changed text to include in refontification."
298 :type 'integer
299 :group 'font-lock
300 :version "22.1")
301 \f
302
303 ;; Originally these variable values were face names such as `bold' etc.
304 ;; Now we create our own faces, but we keep these variables for compatibility
305 ;; and they give users another mechanism for changing face appearance.
306 ;; We now allow a FACENAME in `font-lock-keywords' to be any expression that
307 ;; returns a face. So the easiest thing is to continue using these variables,
308 ;; rather than sometimes evaling FACENAME and sometimes not. sm.
309 (defvar font-lock-comment-face 'font-lock-comment-face
310 "Face name to use for comments.")
311
312 (defvar font-lock-comment-delimiter-face 'font-lock-comment-delimiter-face
313 "Face name to use for comment delimiters.")
314
315 (defvar font-lock-string-face 'font-lock-string-face
316 "Face name to use for strings.")
317
318 (defvar font-lock-doc-face 'font-lock-doc-face
319 "Face name to use for documentation.")
320
321 (defvar font-lock-keyword-face 'font-lock-keyword-face
322 "Face name to use for keywords.")
323
324 (defvar font-lock-builtin-face 'font-lock-builtin-face
325 "Face name to use for builtins.")
326
327 (defvar font-lock-function-name-face 'font-lock-function-name-face
328 "Face name to use for function names.")
329
330 (defvar font-lock-variable-name-face 'font-lock-variable-name-face
331 "Face name to use for variable names.")
332
333 (defvar font-lock-type-face 'font-lock-type-face
334 "Face name to use for type and class names.")
335
336 (defvar font-lock-constant-face 'font-lock-constant-face
337 "Face name to use for constant and label names.")
338
339 (defvar font-lock-warning-face 'font-lock-warning-face
340 "Face name to use for things that should stand out.")
341
342 (defvar font-lock-negation-char-face 'font-lock-negation-char-face
343 "Face name to use for easy to overlook negation.
344 This can be an \"!\" or the \"n\" in \"ifndef\".")
345
346 (defvar font-lock-preprocessor-face 'font-lock-preprocessor-face
347 "Face name to use for preprocessor directives.")
348
349 (defvar font-lock-reference-face 'font-lock-constant-face)
350 (make-obsolete-variable 'font-lock-reference-face 'font-lock-constant-face)
351
352 ;; Fontification variables:
353
354 (defvar font-lock-keywords nil
355 "A list of the keywords to highlight.
356 There are two kinds of values: user-level, and compiled.
357
358 A user-level keywords list is what a major mode or the user would
359 set up. Normally the list would come from `font-lock-defaults'.
360 through selection of a fontification level and evaluation of any
361 contained expressions. You can also alter it by calling
362 `font-lock-add-keywords' or `font-lock-remove-keywords' with MODE = nil.
363
364 Each element in a user-level keywords list should have one of these forms:
365
366 MATCHER
367 (MATCHER . MATCH)
368 (MATCHER . FACENAME)
369 (MATCHER . HIGHLIGHT)
370 (MATCHER HIGHLIGHT ...)
371 (eval . FORM)
372
373 where MATCHER can be either the regexp to search for, or the function name to
374 call to make the search (called with one argument, the limit of the search;
375 it should return non-nil, move point, and set `match-data' appropriately iff
376 it succeeds; like `re-search-forward' would).
377 MATCHER regexps can be generated via the function `regexp-opt'.
378
379 FORM is an expression, whose value should be a keyword element, evaluated when
380 the keyword is (first) used in a buffer. This feature can be used to provide a
381 keyword that can only be generated when Font Lock mode is actually turned on.
382
383 HIGHLIGHT should be either MATCH-HIGHLIGHT or MATCH-ANCHORED.
384
385 For highlighting single items, for example each instance of the word \"foo\",
386 typically only MATCH-HIGHLIGHT is required.
387 However, if an item or (typically) items are to be highlighted following the
388 instance of another item (the anchor), for example each instance of the
389 word \"bar\" following the word \"anchor\" then MATCH-ANCHORED may be required.
390
391 MATCH-HIGHLIGHT should be of the form:
392
393 (MATCH FACENAME [OVERRIDE [LAXMATCH]])
394
395 MATCH is the subexpression of MATCHER to be highlighted. FACENAME is an
396 expression whose value is the face name to use. Face default attributes
397 can be modified via \\[customize]. Instead of a face, FACENAME can
398 evaluate to a property list of the form (face FACE PROP1 VAL1 PROP2 VAL2 ...)
399 in which case all the listed text-properties will be set rather than
400 just FACE. In such a case, you will most likely want to put those
401 properties in `font-lock-extra-managed-props' or to override
402 `font-lock-unfontify-region-function'.
403
404 OVERRIDE and LAXMATCH are flags. If OVERRIDE is t, existing fontification can
405 be overwritten. If `keep', only parts not already fontified are highlighted.
406 If `prepend' or `append', existing fontification is merged with the new, in
407 which the new or existing fontification, respectively, takes precedence.
408 If LAXMATCH is non-nil, no error is signaled if there is no MATCH in MATCHER.
409
410 For example, an element of the form highlights (if not already highlighted):
411
412 \"\\\\\\=<foo\\\\\\=>\" discrete occurrences of \"foo\" in the value of the
413 variable `font-lock-keyword-face'.
414 (\"fu\\\\(bar\\\\)\" . 1) substring \"bar\" within all occurrences of \"fubar\" in
415 the value of `font-lock-keyword-face'.
416 (\"fubar\" . fubar-face) Occurrences of \"fubar\" in the value of `fubar-face'.
417 (\"foo\\\\|bar\" 0 foo-bar-face t)
418 occurrences of either \"foo\" or \"bar\" in the value
419 of `foo-bar-face', even if already highlighted.
420 (fubar-match 1 fubar-face)
421 the first subexpression within all occurrences of
422 whatever the function `fubar-match' finds and matches
423 in the value of `fubar-face'.
424
425 MATCH-ANCHORED should be of the form:
426
427 (MATCHER PRE-MATCH-FORM POST-MATCH-FORM MATCH-HIGHLIGHT ...)
428
429 where MATCHER is a regexp to search for or the function name to call to make
430 the search, as for MATCH-HIGHLIGHT above, but with one exception; see below.
431 PRE-MATCH-FORM and POST-MATCH-FORM are evaluated before the first, and after
432 the last, instance MATCH-ANCHORED's MATCHER is used. Therefore they can be
433 used to initialise before, and cleanup after, MATCHER is used. Typically,
434 PRE-MATCH-FORM is used to move to some position relative to the original
435 MATCHER, before starting with MATCH-ANCHORED's MATCHER. POST-MATCH-FORM might
436 be used to move back, before resuming with MATCH-ANCHORED's parent's MATCHER.
437
438 For example, an element of the form highlights (if not already highlighted):
439
440 (\"\\\\\\=<anchor\\\\\\=>\" (0 anchor-face) (\"\\\\\\=<item\\\\\\=>\" nil nil (0 item-face)))
441
442 discrete occurrences of \"anchor\" in the value of `anchor-face', and subsequent
443 discrete occurrences of \"item\" (on the same line) in the value of `item-face'.
444 (Here PRE-MATCH-FORM and POST-MATCH-FORM are nil. Therefore \"item\" is
445 initially searched for starting from the end of the match of \"anchor\", and
446 searching for subsequent instances of \"anchor\" resumes from where searching
447 for \"item\" concluded.)
448
449 The above-mentioned exception is as follows. The limit of the MATCHER search
450 defaults to the end of the line after PRE-MATCH-FORM is evaluated.
451 However, if PRE-MATCH-FORM returns a position greater than the position after
452 PRE-MATCH-FORM is evaluated, that position is used as the limit of the search.
453 It is generally a bad idea to return a position greater than the end of the
454 line, i.e., cause the MATCHER search to span lines.
455
456 These regular expressions can match text which spans lines, although
457 it is better to avoid it if possible since updating them while editing
458 text is slower, and it is not guaranteed to be always correct when using
459 support modes like jit-lock or lazy-lock.
460
461 This variable is set by major modes via the variable `font-lock-defaults'.
462 Be careful when composing regexps for this list; a poorly written pattern can
463 dramatically slow things down!
464
465 A compiled keywords list starts with t. It is produced internal
466 by `font-lock-compile-keywords' from a user-level keywords list.
467 Its second element is the user-level keywords list that was
468 compiled. The remaining elements have the same form as
469 user-level keywords, but normally their values have been
470 optimized.")
471
472 (defvar font-lock-keywords-alist nil
473 "Alist of `font-lock-keywords' local to a `major-mode'.
474 This is normally set via `font-lock-add-keywords' and
475 `font-lock-remove-keywords'.")
476
477 (defvar font-lock-removed-keywords-alist nil
478 "Alist of `font-lock-keywords' removed from `major-mode'.
479 This is normally set via `font-lock-add-keywords' and
480 `font-lock-remove-keywords'.")
481
482 (defvar font-lock-keywords-only nil
483 "*Non-nil means Font Lock should not fontify comments or strings.
484 This is normally set via `font-lock-defaults'.")
485
486 (defvar font-lock-keywords-case-fold-search nil
487 "*Non-nil means the patterns in `font-lock-keywords' are case-insensitive.
488 This is normally set via `font-lock-defaults'.")
489 (make-variable-buffer-local 'font-lock-keywords-case-fold-search)
490
491 (defvar font-lock-syntactically-fontified 0
492 "Point up to which `font-lock-syntactic-keywords' has been applied.
493 If nil, this is ignored, in which case the syntactic fontification may
494 sometimes be slightly incorrect.")
495 (make-variable-buffer-local 'font-lock-syntactically-fontified)
496
497 (defvar font-lock-syntactic-face-function
498 (lambda (state)
499 (if (nth 3 state) font-lock-string-face font-lock-comment-face))
500 "Function to determine which face to use when fontifying syntactically.
501 The function is called with a single parameter (the state as returned by
502 `parse-partial-sexp' at the beginning of the region to highlight) and
503 should return a face. This is normally set via `font-lock-defaults'.")
504
505 (defvar font-lock-syntactic-keywords nil
506 "A list of the syntactic keywords to highlight.
507 Can be the list or the name of a function or variable whose value is the list.
508 See `font-lock-keywords' for a description of the form of this list;
509 the differences are listed below. MATCH-HIGHLIGHT should be of the form:
510
511 (MATCH SYNTAX OVERRIDE LAXMATCH)
512
513 where SYNTAX can be a string (as taken by `modify-syntax-entry'), a syntax
514 table, a cons cell (as returned by `string-to-syntax') or an expression whose
515 value is such a form. OVERRIDE cannot be `prepend' or `append'.
516
517 For example, an element of the form highlights syntactically:
518
519 (\"\\\\$\\\\(#\\\\)\" 1 \".\")
520
521 a hash character when following a dollar character, with a SYNTAX of
522 \".\" (meaning punctuation syntax). Assuming that the buffer syntax table does
523 specify hash characters to have comment start syntax, the element will only
524 highlight hash characters that do not follow dollar characters as comments
525 syntactically.
526
527 (\"\\\\('\\\\).\\\\('\\\\)\"
528 (1 \"\\\"\")
529 (2 \"\\\"\"))
530
531 both single quotes which surround a single character, with a SYNTAX of
532 \"\\\"\" (meaning string quote syntax). Assuming that the buffer syntax table
533 does not specify single quotes to have quote syntax, the element will only
534 highlight single quotes of the form 'c' as strings syntactically.
535 Other forms, such as foo'bar or 'fubar', will not be highlighted as strings.
536
537 This is normally set via `font-lock-defaults'.")
538
539 (defvar font-lock-syntax-table nil
540 "Non-nil means use this syntax table for fontifying.
541 If this is nil, the major mode's syntax table is used.
542 This is normally set via `font-lock-defaults'.")
543
544 (defvar font-lock-beginning-of-syntax-function nil
545 "*Non-nil means use this function to move back outside all constructs.
546 When called with no args it should move point backward to a place which
547 is not in a string or comment and not within any bracket-pairs (or else,
548 a place such that any bracket-pairs outside it can be ignored for Emacs
549 syntax analysis and fontification).
550
551 If this is nil, the beginning of the buffer is used, which is
552 always correct but tends to be slow.
553 This is normally set via `font-lock-defaults'.
554 This variable is semi-obsolete; we recommend setting
555 `syntax-begin-function' instead.")
556
557 (defvar font-lock-mark-block-function nil
558 "*Non-nil means use this function to mark a block of text.
559 When called with no args it should leave point at the beginning of any
560 enclosing textual block and mark at the end.
561 This is normally set via `font-lock-defaults'.")
562
563 (defvar font-lock-fontify-buffer-function 'font-lock-default-fontify-buffer
564 "Function to use for fontifying the buffer.
565 This is normally set via `font-lock-defaults'.")
566
567 (defvar font-lock-unfontify-buffer-function 'font-lock-default-unfontify-buffer
568 "Function to use for unfontifying the buffer.
569 This is used when turning off Font Lock mode.
570 This is normally set via `font-lock-defaults'.")
571
572 (defvar font-lock-fontify-region-function 'font-lock-default-fontify-region
573 "Function to use for fontifying a region.
574 It should take two args, the beginning and end of the region, and an optional
575 third arg VERBOSE. If VERBOSE is non-nil, the function should print status
576 messages. This is normally set via `font-lock-defaults'.")
577
578 (defvar font-lock-unfontify-region-function 'font-lock-default-unfontify-region
579 "Function to use for unfontifying a region.
580 It should take two args, the beginning and end of the region.
581 This is normally set via `font-lock-defaults'.")
582
583 (defvar font-lock-inhibit-thing-lock nil
584 "List of Font Lock mode related modes that should not be turned on.
585 Currently, valid mode names are `fast-lock-mode', `jit-lock-mode' and
586 `lazy-lock-mode'. This is normally set via `font-lock-defaults'.")
587
588 (defvar font-lock-multiline nil
589 "Whether font-lock should cater to multiline keywords.
590 If nil, don't try to handle multiline patterns.
591 If t, always handle multiline patterns.
592 If `undecided', don't try to handle multiline patterns until you see one.
593 Major/minor modes can set this variable if they know which option applies.")
594
595 (defvar font-lock-fontified nil) ; Whether we have fontified the buffer.
596 \f
597 ;; Font Lock mode.
598
599 (eval-when-compile
600 ;;
601 ;; We don't do this at the top-level as we only use non-autoloaded macros.
602 (require 'cl)
603 ;;
604 ;; Borrowed from lazy-lock.el.
605 ;; We use this to preserve or protect things when modifying text properties.
606 (defmacro save-buffer-state (varlist &rest body)
607 "Bind variables according to VARLIST and eval BODY restoring buffer state."
608 (let ((modified (make-symbol "modified")))
609 `(let* ,(append varlist
610 `((,modified (buffer-modified-p))
611 (buffer-undo-list t)
612 (inhibit-read-only t)
613 (inhibit-point-motion-hooks t)
614 (inhibit-modification-hooks t)
615 deactivate-mark
616 buffer-file-name
617 buffer-file-truename))
618 (progn
619 ,@body)
620 (unless ,modified
621 (restore-buffer-modified-p nil)))))
622 (put 'save-buffer-state 'lisp-indent-function 1)
623 (def-edebug-spec save-buffer-state let)
624 ;;
625 ;; Shut up the byte compiler.
626 (defvar font-lock-face-attributes)) ; Obsolete but respected if set.
627
628 ;;;###autoload
629 (defun font-lock-mode-internal (arg)
630 ;; Turn on Font Lock mode.
631 (when arg
632 (add-hook 'after-change-functions 'font-lock-after-change-function t t)
633 (font-lock-set-defaults)
634 (font-lock-turn-on-thing-lock)
635 ;; Fontify the buffer if we have to.
636 (let ((max-size (font-lock-value-in-major-mode font-lock-maximum-size)))
637 (cond (font-lock-fontified
638 nil)
639 ((or (null max-size) (> max-size (buffer-size)))
640 (font-lock-fontify-buffer))
641 (font-lock-verbose
642 (message "Fontifying %s...buffer size greater than font-lock-maximum-size"
643 (buffer-name))))))
644 ;; Turn off Font Lock mode.
645 (unless font-lock-mode
646 (remove-hook 'after-change-functions 'font-lock-after-change-function t)
647 (font-lock-unfontify-buffer)
648 (font-lock-turn-off-thing-lock)))
649
650 ;;;###autoload
651 (defun font-lock-add-keywords (mode keywords &optional append)
652 "Add highlighting KEYWORDS for MODE.
653
654 MODE should be a symbol, the major mode command name, such as `c-mode'
655 or nil. If nil, highlighting keywords are added for the current buffer.
656 KEYWORDS should be a list; see the variable `font-lock-keywords'.
657 By default they are added at the beginning of the current highlighting list.
658 If optional argument APPEND is `set', they are used to replace the current
659 highlighting list. If APPEND is any other non-nil value, they are added at the
660 end of the current highlighting list.
661
662 For example:
663
664 (font-lock-add-keywords 'c-mode
665 '((\"\\\\\\=<\\\\(FIXME\\\\):\" 1 font-lock-warning-face prepend)
666 (\"\\\\\\=<\\\\(and\\\\|or\\\\|not\\\\)\\\\\\=>\" . font-lock-keyword-face)))
667
668 adds two fontification patterns for C mode, to fontify `FIXME:' words, even in
669 comments, and to fontify `and', `or' and `not' words as keywords.
670
671 When used from a Lisp program (such as a minor mode), it is recommended to
672 use nil for MODE (and place the call on a hook) to avoid subtle problems
673 due to details of the implementation.
674
675 Note that some modes have specialized support for additional patterns, e.g.,
676 see the variables `c-font-lock-extra-types', `c++-font-lock-extra-types',
677 `objc-font-lock-extra-types' and `java-font-lock-extra-types'."
678 (cond (mode
679 ;; If MODE is non-nil, add the KEYWORDS and APPEND spec to
680 ;; `font-lock-keywords-alist' so `font-lock-set-defaults' uses them.
681 (let ((spec (cons keywords append)) cell)
682 (if (setq cell (assq mode font-lock-keywords-alist))
683 (if (eq append 'set)
684 (setcdr cell (list spec))
685 (setcdr cell (append (cdr cell) (list spec))))
686 (push (list mode spec) font-lock-keywords-alist)))
687 ;; Make sure that `font-lock-removed-keywords-alist' does not
688 ;; contain the new keywords.
689 (font-lock-update-removed-keyword-alist mode keywords append))
690 (t
691 ;; Otherwise set or add the keywords now.
692 ;; This is a no-op if it has been done already in this buffer.
693 (font-lock-set-defaults)
694 (let ((was-compiled (eq (car font-lock-keywords) t)))
695 ;; Bring back the user-level (uncompiled) keywords.
696 (if was-compiled
697 (setq font-lock-keywords (cadr font-lock-keywords)))
698 ;; Now modify or replace them.
699 (if (eq append 'set)
700 (setq font-lock-keywords keywords)
701 (font-lock-remove-keywords nil keywords) ;to avoid duplicates
702 (let ((old (if (eq (car-safe font-lock-keywords) t)
703 (cdr font-lock-keywords)
704 font-lock-keywords)))
705 (setq font-lock-keywords (if append
706 (append old keywords)
707 (append keywords old)))))
708 ;; If the keywords were compiled before, compile them again.
709 (if was-compiled
710 (set (make-local-variable 'font-lock-keywords)
711 (font-lock-compile-keywords font-lock-keywords t)))))))
712
713 (defun font-lock-update-removed-keyword-alist (mode keywords append)
714 "Update `font-lock-removed-keywords-alist' when adding new KEYWORDS to MODE."
715 ;; When font-lock is enabled first all keywords in the list
716 ;; `font-lock-keywords-alist' are added, then all keywords in the
717 ;; list `font-lock-removed-keywords-alist' are removed. If a
718 ;; keyword was once added, removed, and then added again it must be
719 ;; removed from the removed-keywords list. Otherwise the second add
720 ;; will not take effect.
721 (let ((cell (assq mode font-lock-removed-keywords-alist)))
722 (if cell
723 (if (eq append 'set)
724 ;; A new set of keywords is defined. Forget all about
725 ;; our old keywords that should be removed.
726 (setq font-lock-removed-keywords-alist
727 (delq cell font-lock-removed-keywords-alist))
728 ;; Delete all previously removed keywords.
729 (dolist (kword keywords)
730 (setcdr cell (delete kword (cdr cell))))
731 ;; Delete the mode cell if empty.
732 (if (null (cdr cell))
733 (setq font-lock-removed-keywords-alist
734 (delq cell font-lock-removed-keywords-alist)))))))
735
736 ;; Written by Anders Lindgren <andersl@andersl.com>.
737 ;;
738 ;; Case study:
739 ;; (I) The keywords are removed from a major mode.
740 ;; In this case the keyword could be local (i.e. added earlier by
741 ;; `font-lock-add-keywords'), global, or both.
742 ;;
743 ;; (a) In the local case we remove the keywords from the variable
744 ;; `font-lock-keywords-alist'.
745 ;;
746 ;; (b) The actual global keywords are not known at this time.
747 ;; All keywords are added to `font-lock-removed-keywords-alist',
748 ;; when font-lock is enabled those keywords are removed.
749 ;;
750 ;; Note that added keywords are taken out of the list of removed
751 ;; keywords. This ensure correct operation when the same keyword
752 ;; is added and removed several times.
753 ;;
754 ;; (II) The keywords are removed from the current buffer.
755 ;;;###autoload
756 (defun font-lock-remove-keywords (mode keywords)
757 "Remove highlighting KEYWORDS for MODE.
758
759 MODE should be a symbol, the major mode command name, such as `c-mode'
760 or nil. If nil, highlighting keywords are removed for the current buffer.
761
762 When used from a Lisp program (such as a minor mode), it is recommended to
763 use nil for MODE (and place the call on a hook) to avoid subtle problems
764 due to details of the implementation."
765 (cond (mode
766 ;; Remove one keyword at the time.
767 (dolist (keyword keywords)
768 (let ((top-cell (assq mode font-lock-keywords-alist)))
769 ;; If MODE is non-nil, remove the KEYWORD from
770 ;; `font-lock-keywords-alist'.
771 (when top-cell
772 (dolist (keyword-list-append-pair (cdr top-cell))
773 ;; `keywords-list-append-pair' is a cons with a list of
774 ;; keywords in the car top-cell and the original append
775 ;; argument in the cdr top-cell.
776 (setcar keyword-list-append-pair
777 (delete keyword (car keyword-list-append-pair))))
778 ;; Remove keyword list/append pair when the keyword list
779 ;; is empty and append doesn't specify `set'. (If it
780 ;; should be deleted then previously deleted keywords
781 ;; would appear again.)
782 (let ((cell top-cell))
783 (while (cdr cell)
784 (if (and (null (car (car (cdr cell))))
785 (not (eq (cdr (car (cdr cell))) 'set)))
786 (setcdr cell (cdr (cdr cell)))
787 (setq cell (cdr cell)))))
788 ;; Final cleanup, remove major mode cell if last keyword
789 ;; was deleted.
790 (if (null (cdr top-cell))
791 (setq font-lock-keywords-alist
792 (delq top-cell font-lock-keywords-alist))))
793 ;; Remember the keyword in case it is not local.
794 (let ((cell (assq mode font-lock-removed-keywords-alist)))
795 (if cell
796 (unless (member keyword (cdr cell))
797 (nconc cell (list keyword)))
798 (push (cons mode (list keyword))
799 font-lock-removed-keywords-alist))))))
800 (t
801 ;; Otherwise remove it immediately.
802 (font-lock-set-defaults)
803 (let ((was-compiled (eq (car font-lock-keywords) t)))
804 ;; Bring back the user-level (uncompiled) keywords.
805 (if was-compiled
806 (setq font-lock-keywords (cadr font-lock-keywords)))
807
808 ;; Edit them.
809 (setq font-lock-keywords (copy-sequence font-lock-keywords))
810 (dolist (keyword keywords)
811 (setq font-lock-keywords
812 (delete keyword font-lock-keywords)))
813
814 ;; If the keywords were compiled before, compile them again.
815 (if was-compiled
816 (set (make-local-variable 'font-lock-keywords)
817 (font-lock-compile-keywords font-lock-keywords t)))))))
818 \f
819 ;;; Font Lock Support mode.
820
821 ;; This is the code used to interface font-lock.el with any of its add-on
822 ;; packages, and provide the user interface. Packages that have their own
823 ;; local buffer fontification functions (see below) may have to call
824 ;; `font-lock-after-fontify-buffer' and/or `font-lock-after-unfontify-buffer'
825 ;; themselves.
826
827 (defcustom font-lock-support-mode 'jit-lock-mode
828 "*Support mode for Font Lock mode.
829 Support modes speed up Font Lock mode by being choosy about when fontification
830 occurs. Known support modes are Fast Lock mode (symbol `fast-lock-mode'),
831 Lazy Lock mode (symbol `lazy-lock-mode'), and Just-in-time Lock mode (symbol
832 `jit-lock-mode'. See those modes for more info.
833 If nil, means support for Font Lock mode is never performed.
834 If a symbol, use that support mode.
835 If a list, each element should be of the form (MAJOR-MODE . SUPPORT-MODE),
836 where MAJOR-MODE is a symbol or t (meaning the default). For example:
837 ((c-mode . fast-lock-mode) (c++-mode . fast-lock-mode) (t . lazy-lock-mode))
838 means that Fast Lock mode is used to support Font Lock mode for buffers in C or
839 C++ modes, and Lazy Lock mode is used to support Font Lock mode otherwise.
840
841 The value of this variable is used when Font Lock mode is turned on."
842 :type '(choice (const :tag "none" nil)
843 (const :tag "fast lock" fast-lock-mode)
844 (const :tag "lazy lock" lazy-lock-mode)
845 (const :tag "jit lock" jit-lock-mode)
846 (repeat :menu-tag "mode specific" :tag "mode specific"
847 :value ((t . jit-lock-mode))
848 (cons :tag "Instance"
849 (radio :tag "Mode"
850 (const :tag "all" t)
851 (symbol :tag "name"))
852 (radio :tag "Support"
853 (const :tag "none" nil)
854 (const :tag "fast lock" fast-lock-mode)
855 (const :tag "lazy lock" lazy-lock-mode)
856 (const :tag "JIT lock" jit-lock-mode)))
857 ))
858 :version "21.1"
859 :group 'font-lock)
860
861 (defvar fast-lock-mode)
862 (defvar lazy-lock-mode)
863 (defvar jit-lock-mode)
864
865 (defun font-lock-turn-on-thing-lock ()
866 (let ((thing-mode (font-lock-value-in-major-mode font-lock-support-mode)))
867 (cond ((eq thing-mode 'fast-lock-mode)
868 (fast-lock-mode t))
869 ((eq thing-mode 'lazy-lock-mode)
870 (lazy-lock-mode t))
871 ((eq thing-mode 'jit-lock-mode)
872 ;; Prepare for jit-lock
873 (remove-hook 'after-change-functions
874 'font-lock-after-change-function t)
875 (set (make-local-variable 'font-lock-fontify-buffer-function)
876 'jit-lock-refontify)
877 ;; Don't fontify eagerly (and don't abort is the buffer is large).
878 (set (make-local-variable 'font-lock-fontified) t)
879 ;; Use jit-lock.
880 (jit-lock-register 'font-lock-fontify-region
881 (not font-lock-keywords-only))))))
882
883 (defun font-lock-turn-off-thing-lock ()
884 (cond ((and (boundp 'fast-lock-mode) fast-lock-mode)
885 (fast-lock-mode -1))
886 ((and (boundp 'jit-lock-mode) jit-lock-mode)
887 (jit-lock-unregister 'font-lock-fontify-region)
888 ;; Reset local vars to the non-jit-lock case.
889 (kill-local-variable 'font-lock-fontify-buffer-function))
890 ((and (boundp 'lazy-lock-mode) lazy-lock-mode)
891 (lazy-lock-mode -1))))
892
893 (defun font-lock-after-fontify-buffer ()
894 (cond ((and (boundp 'fast-lock-mode) fast-lock-mode)
895 (fast-lock-after-fontify-buffer))
896 ;; Useless now that jit-lock intercepts font-lock-fontify-buffer. -sm
897 ;; (jit-lock-mode
898 ;; (jit-lock-after-fontify-buffer))
899 ((and (boundp 'lazy-lock-mode) lazy-lock-mode)
900 (lazy-lock-after-fontify-buffer))))
901
902 (defun font-lock-after-unfontify-buffer ()
903 (cond ((and (boundp 'fast-lock-mode) fast-lock-mode)
904 (fast-lock-after-unfontify-buffer))
905 ;; Useless as well. It's only called when:
906 ;; - turning off font-lock: it does not matter if we leave spurious
907 ;; `fontified' text props around since jit-lock-mode is also off.
908 ;; - font-lock-default-fontify-buffer fails: this is not run
909 ;; any more anyway. -sm
910 ;;
911 ;; (jit-lock-mode
912 ;; (jit-lock-after-unfontify-buffer))
913 ((and (boundp 'lazy-lock-mode) lazy-lock-mode)
914 (lazy-lock-after-unfontify-buffer))))
915
916 ;;; End of Font Lock Support mode.
917 \f
918 ;;; Fontification functions.
919
920 ;; Rather than the function, e.g., `font-lock-fontify-region' containing the
921 ;; code to fontify a region, the function runs the function whose name is the
922 ;; value of the variable, e.g., `font-lock-fontify-region-function'. Normally,
923 ;; the value of this variable is, e.g., `font-lock-default-fontify-region'
924 ;; which does contain the code to fontify a region. However, the value of the
925 ;; variable could be anything and thus, e.g., `font-lock-fontify-region' could
926 ;; do anything. The indirection of the fontification functions gives major
927 ;; modes the capability of modifying the way font-lock.el fontifies. Major
928 ;; modes can modify the values of, e.g., `font-lock-fontify-region-function',
929 ;; via the variable `font-lock-defaults'.
930 ;;
931 ;; For example, Rmail mode sets the variable `font-lock-defaults' so that
932 ;; font-lock.el uses its own function for buffer fontification. This function
933 ;; makes fontification be on a message-by-message basis and so visiting an
934 ;; RMAIL file is much faster. A clever implementation of the function might
935 ;; fontify the headers differently than the message body. (It should, and
936 ;; correspondingly for Mail mode, but I can't be bothered to do the work. Can
937 ;; you?) This hints at a more interesting use...
938 ;;
939 ;; Languages that contain text normally contained in different major modes
940 ;; could define their own fontification functions that treat text differently
941 ;; depending on its context. For example, Perl mode could arrange that here
942 ;; docs are fontified differently than Perl code. Or Yacc mode could fontify
943 ;; rules one way and C code another. Neat!
944 ;;
945 ;; A further reason to use the fontification indirection feature is when the
946 ;; default syntactual fontification, or the default fontification in general,
947 ;; is not flexible enough for a particular major mode. For example, perhaps
948 ;; comments are just too hairy for `font-lock-fontify-syntactically-region' to
949 ;; cope with. You need to write your own version of that function, e.g.,
950 ;; `hairy-fontify-syntactically-region', and make your own version of
951 ;; `hairy-fontify-region' call that function before calling
952 ;; `font-lock-fontify-keywords-region' for the normal regexp fontification
953 ;; pass. And Hairy mode would set `font-lock-defaults' so that font-lock.el
954 ;; would call your region fontification function instead of its own. For
955 ;; example, TeX modes could fontify {\foo ...} and \bar{...} etc. multi-line
956 ;; directives correctly and cleanly. (It is the same problem as fontifying
957 ;; multi-line strings and comments; regexps are not appropriate for the job.)
958
959 ;;;###autoload
960 (defun font-lock-fontify-buffer ()
961 "Fontify the current buffer the way the function `font-lock-mode' would."
962 (interactive)
963 (let ((font-lock-verbose (or font-lock-verbose (interactive-p))))
964 (funcall font-lock-fontify-buffer-function)))
965
966 (defun font-lock-unfontify-buffer ()
967 (funcall font-lock-unfontify-buffer-function))
968
969 (defun font-lock-fontify-region (beg end &optional loudly)
970 (funcall font-lock-fontify-region-function beg end loudly))
971
972 (defun font-lock-unfontify-region (beg end)
973 (save-buffer-state nil
974 (funcall font-lock-unfontify-region-function beg end)))
975
976 (defun font-lock-default-fontify-buffer ()
977 (let ((verbose (if (numberp font-lock-verbose)
978 (> (buffer-size) font-lock-verbose)
979 font-lock-verbose)))
980 (with-temp-message
981 (when verbose
982 (format "Fontifying %s..." (buffer-name)))
983 ;; Make sure we have the right `font-lock-keywords' etc.
984 (unless font-lock-mode
985 (font-lock-set-defaults))
986 ;; Make sure we fontify etc. in the whole buffer.
987 (save-restriction
988 (widen)
989 (condition-case nil
990 (save-excursion
991 (save-match-data
992 (font-lock-fontify-region (point-min) (point-max) verbose)
993 (font-lock-after-fontify-buffer)
994 (setq font-lock-fontified t)))
995 ;; We don't restore the old fontification, so it's best to unfontify.
996 (quit (font-lock-unfontify-buffer)))))))
997
998 (defun font-lock-default-unfontify-buffer ()
999 ;; Make sure we unfontify etc. in the whole buffer.
1000 (save-restriction
1001 (widen)
1002 (font-lock-unfontify-region (point-min) (point-max))
1003 (font-lock-after-unfontify-buffer)
1004 (setq font-lock-fontified nil)))
1005
1006 (defvar font-lock-dont-widen nil
1007 "If non-nil, font-lock will work on the non-widened buffer.
1008 Useful for things like RMAIL and Info where the whole buffer is not
1009 a very meaningful entity to highlight.")
1010
1011 (defun font-lock-default-fontify-region (beg end loudly)
1012 (save-buffer-state
1013 ((parse-sexp-lookup-properties
1014 (or parse-sexp-lookup-properties font-lock-syntactic-keywords))
1015 (old-syntax-table (syntax-table)))
1016 (unwind-protect
1017 (save-restriction
1018 (unless font-lock-dont-widen (widen))
1019 ;; Use the fontification syntax table, if any.
1020 (when font-lock-syntax-table
1021 (set-syntax-table font-lock-syntax-table))
1022 ;; check to see if we should expand the beg/end area for
1023 ;; proper multiline matches
1024 (when (and font-lock-multiline
1025 (> beg (point-min))
1026 (get-text-property (1- beg) 'font-lock-multiline))
1027 ;; We are just after or in a multiline match.
1028 (setq beg (or (previous-single-property-change
1029 beg 'font-lock-multiline)
1030 (point-min)))
1031 (goto-char beg)
1032 (setq beg (line-beginning-position)))
1033 (when font-lock-multiline
1034 (setq end (or (text-property-any end (point-max)
1035 'font-lock-multiline nil)
1036 (point-max))))
1037 (goto-char end)
1038 (setq end (line-beginning-position 2))
1039 ;; Now do the fontification.
1040 (font-lock-unfontify-region beg end)
1041 (when font-lock-syntactic-keywords
1042 (font-lock-fontify-syntactic-keywords-region beg end))
1043 (unless font-lock-keywords-only
1044 (font-lock-fontify-syntactically-region beg end loudly))
1045 (font-lock-fontify-keywords-region beg end loudly))
1046 ;; Clean up.
1047 (set-syntax-table old-syntax-table))))
1048
1049 ;; The following must be rethought, since keywords can override fontification.
1050 ; ;; Now scan for keywords, but not if we are inside a comment now.
1051 ; (or (and (not font-lock-keywords-only)
1052 ; (let ((state (parse-partial-sexp beg end nil nil
1053 ; font-lock-cache-state)))
1054 ; (or (nth 4 state) (nth 7 state))))
1055 ; (font-lock-fontify-keywords-region beg end))
1056
1057 (defvar font-lock-extra-managed-props nil
1058 "Additional text properties managed by font-lock.
1059 This is used by `font-lock-default-unfontify-region' to decide
1060 what properties to clear before refontifying a region.")
1061
1062 (defun font-lock-default-unfontify-region (beg end)
1063 (remove-list-of-text-properties
1064 beg end (append
1065 font-lock-extra-managed-props
1066 (if font-lock-syntactic-keywords
1067 '(syntax-table face font-lock-multiline)
1068 '(face font-lock-multiline)))))
1069
1070 ;; Called when any modification is made to buffer text.
1071 (defun font-lock-after-change-function (beg end old-len)
1072 (let ((inhibit-point-motion-hooks t)
1073 (inhibit-quit t))
1074 (save-excursion
1075 (save-match-data
1076 ;; Rescan between start of lines enclosing the region.
1077 (font-lock-fontify-region
1078 (progn (goto-char beg)
1079 (forward-line (- font-lock-lines-before)) (point))
1080 (progn (goto-char end) (forward-line 1) (point)))))))
1081
1082 (defun font-lock-fontify-block (&optional arg)
1083 "Fontify some lines the way `font-lock-fontify-buffer' would.
1084 The lines could be a function or paragraph, or a specified number of lines.
1085 If ARG is given, fontify that many lines before and after point, or 16 lines if
1086 no ARG is given and `font-lock-mark-block-function' is nil.
1087 If `font-lock-mark-block-function' non-nil and no ARG is given, it is used to
1088 delimit the region to fontify."
1089 (interactive "P")
1090 (let ((inhibit-point-motion-hooks t) font-lock-beginning-of-syntax-function
1091 deactivate-mark)
1092 ;; Make sure we have the right `font-lock-keywords' etc.
1093 (if (not font-lock-mode) (font-lock-set-defaults))
1094 (save-excursion
1095 (save-match-data
1096 (condition-case error-data
1097 (if (or arg (not font-lock-mark-block-function))
1098 (let ((lines (if arg (prefix-numeric-value arg) 16)))
1099 (font-lock-fontify-region
1100 (save-excursion (forward-line (- lines)) (point))
1101 (save-excursion (forward-line lines) (point))))
1102 (funcall font-lock-mark-block-function)
1103 (font-lock-fontify-region (point) (mark)))
1104 ((error quit) (message "Fontifying block...%s" error-data)))))))
1105
1106 (if (boundp 'facemenu-keymap)
1107 (define-key facemenu-keymap "\M-o" 'font-lock-fontify-block))
1108
1109 ;;; End of Fontification functions.
1110 \f
1111 ;;; Additional text property functions.
1112
1113 ;; The following text property functions should be builtins. This means they
1114 ;; should be written in C and put with all the other text property functions.
1115 ;; In the meantime, those that are used by font-lock.el are defined in Lisp
1116 ;; below and given a `font-lock-' prefix. Those that are not used are defined
1117 ;; in Lisp below and commented out. sm.
1118
1119 (defun font-lock-prepend-text-property (start end prop value &optional object)
1120 "Prepend to one property of the text from START to END.
1121 Arguments PROP and VALUE specify the property and value to prepend to the value
1122 already in place. The resulting property values are always lists.
1123 Optional argument OBJECT is the string or buffer containing the text."
1124 (let ((val (if (listp value) value (list value))) next prev)
1125 (while (/= start end)
1126 (setq next (next-single-property-change start prop object end)
1127 prev (get-text-property start prop object))
1128 (put-text-property start next prop
1129 (append val (if (listp prev) prev (list prev)))
1130 object)
1131 (setq start next))))
1132
1133 (defun font-lock-append-text-property (start end prop value &optional object)
1134 "Append to one property of the text from START to END.
1135 Arguments PROP and VALUE specify the property and value to append to the value
1136 already in place. The resulting property values are always lists.
1137 Optional argument OBJECT is the string or buffer containing the text."
1138 (let ((val (if (listp value) value (list value))) next prev)
1139 (while (/= start end)
1140 (setq next (next-single-property-change start prop object end)
1141 prev (get-text-property start prop object))
1142 (put-text-property start next prop
1143 (append (if (listp prev) prev (list prev)) val)
1144 object)
1145 (setq start next))))
1146
1147 (defun font-lock-fillin-text-property (start end prop value &optional object)
1148 "Fill in one property of the text from START to END.
1149 Arguments PROP and VALUE specify the property and value to put where none are
1150 already in place. Therefore existing property values are not overwritten.
1151 Optional argument OBJECT is the string or buffer containing the text."
1152 (let ((start (text-property-any start end prop nil object)) next)
1153 (while start
1154 (setq next (next-single-property-change start prop object end))
1155 (put-text-property start next prop value object)
1156 (setq start (text-property-any next end prop nil object)))))
1157
1158 ;; For completeness: this is to `remove-text-properties' as `put-text-property'
1159 ;; is to `add-text-properties', etc.
1160 ;(defun remove-text-property (start end property &optional object)
1161 ; "Remove a property from text from START to END.
1162 ;Argument PROPERTY is the property to remove.
1163 ;Optional argument OBJECT is the string or buffer containing the text.
1164 ;Return t if the property was actually removed, nil otherwise."
1165 ; (remove-text-properties start end (list property) object))
1166
1167 ;; For consistency: maybe this should be called `remove-single-property' like
1168 ;; `next-single-property-change' (not `next-single-text-property-change'), etc.
1169 ;(defun remove-single-text-property (start end prop value &optional object)
1170 ; "Remove a specific property value from text from START to END.
1171 ;Arguments PROP and VALUE specify the property and value to remove. The
1172 ;resulting property values are not equal to VALUE nor lists containing VALUE.
1173 ;Optional argument OBJECT is the string or buffer containing the text."
1174 ; (let ((start (text-property-not-all start end prop nil object)) next prev)
1175 ; (while start
1176 ; (setq next (next-single-property-change start prop object end)
1177 ; prev (get-text-property start prop object))
1178 ; (cond ((and (symbolp prev) (eq value prev))
1179 ; (remove-text-property start next prop object))
1180 ; ((and (listp prev) (memq value prev))
1181 ; (let ((new (delq value prev)))
1182 ; (cond ((null new)
1183 ; (remove-text-property start next prop object))
1184 ; ((= (length new) 1)
1185 ; (put-text-property start next prop (car new) object))
1186 ; (t
1187 ; (put-text-property start next prop new object))))))
1188 ; (setq start (text-property-not-all next end prop nil object)))))
1189
1190 ;;; End of Additional text property functions.
1191 \f
1192 ;;; Syntactic regexp fontification functions.
1193
1194 ;; These syntactic keyword pass functions are identical to those keyword pass
1195 ;; functions below, with the following exceptions; (a) they operate on
1196 ;; `font-lock-syntactic-keywords' of course, (b) they are all `defun' as speed
1197 ;; is less of an issue, (c) eval of property value does not occur JIT as speed
1198 ;; is less of an issue, (d) OVERRIDE cannot be `prepend' or `append' as it
1199 ;; makes no sense for `syntax-table' property values, (e) they do not do it
1200 ;; LOUDLY as it is not likely to be intensive.
1201
1202 (defun font-lock-apply-syntactic-highlight (highlight)
1203 "Apply HIGHLIGHT following a match.
1204 HIGHLIGHT should be of the form MATCH-HIGHLIGHT,
1205 see `font-lock-syntactic-keywords'."
1206 (let* ((match (nth 0 highlight))
1207 (start (match-beginning match)) (end (match-end match))
1208 (value (nth 1 highlight))
1209 (override (nth 2 highlight)))
1210 (if (not start)
1211 ;; No match but we might not signal an error.
1212 (or (nth 3 highlight)
1213 (error "No match %d in highlight %S" match highlight))
1214 (when (and (consp value) (not (numberp (car value))))
1215 (setq value (eval value)))
1216 (when (stringp value) (setq value (string-to-syntax value)))
1217 ;; Flush the syntax-cache. I believe this is not necessary for
1218 ;; font-lock's use of syntax-ppss, but I'm not 100% sure and it can
1219 ;; still be necessary for other users of syntax-ppss anyway.
1220 (syntax-ppss-after-change-function start)
1221 (cond
1222 ((not override)
1223 ;; Cannot override existing fontification.
1224 (or (text-property-not-all start end 'syntax-table nil)
1225 (put-text-property start end 'syntax-table value)))
1226 ((eq override t)
1227 ;; Override existing fontification.
1228 (put-text-property start end 'syntax-table value))
1229 ((eq override 'keep)
1230 ;; Keep existing fontification.
1231 (font-lock-fillin-text-property start end 'syntax-table value))))))
1232
1233 (defun font-lock-fontify-syntactic-anchored-keywords (keywords limit)
1234 "Fontify according to KEYWORDS until LIMIT.
1235 KEYWORDS should be of the form MATCH-ANCHORED, see `font-lock-keywords',
1236 LIMIT can be modified by the value of its PRE-MATCH-FORM."
1237 (let ((matcher (nth 0 keywords)) (lowdarks (nthcdr 3 keywords)) highlights
1238 ;; Evaluate PRE-MATCH-FORM.
1239 (pre-match-value (eval (nth 1 keywords))))
1240 ;; Set LIMIT to value of PRE-MATCH-FORM or the end of line.
1241 (if (and (numberp pre-match-value) (> pre-match-value (point)))
1242 (setq limit pre-match-value)
1243 (setq limit (line-end-position)))
1244 (save-match-data
1245 ;; Find an occurrence of `matcher' before `limit'.
1246 (while (if (stringp matcher)
1247 (re-search-forward matcher limit t)
1248 (funcall matcher limit))
1249 ;; Apply each highlight to this instance of `matcher'.
1250 (setq highlights lowdarks)
1251 (while highlights
1252 (font-lock-apply-syntactic-highlight (car highlights))
1253 (setq highlights (cdr highlights)))))
1254 ;; Evaluate POST-MATCH-FORM.
1255 (eval (nth 2 keywords))))
1256
1257 (defun font-lock-fontify-syntactic-keywords-region (start end)
1258 "Fontify according to `font-lock-syntactic-keywords' between START and END.
1259 START should be at the beginning of a line."
1260 ;; Ensure the beginning of the file is properly syntactic-fontified.
1261 (when (and font-lock-syntactically-fontified
1262 (< font-lock-syntactically-fontified start))
1263 (setq start (max font-lock-syntactically-fontified (point-min)))
1264 (setq font-lock-syntactically-fontified end))
1265 ;; If `font-lock-syntactic-keywords' is a symbol, get the real keywords.
1266 (when (symbolp font-lock-syntactic-keywords)
1267 (setq font-lock-syntactic-keywords (font-lock-eval-keywords
1268 font-lock-syntactic-keywords)))
1269 ;; If `font-lock-syntactic-keywords' is not compiled, compile it.
1270 (unless (eq (car font-lock-syntactic-keywords) t)
1271 (setq font-lock-syntactic-keywords (font-lock-compile-keywords
1272 font-lock-syntactic-keywords)))
1273 ;; Get down to business.
1274 (let ((case-fold-search font-lock-keywords-case-fold-search)
1275 (keywords (cddr font-lock-syntactic-keywords))
1276 keyword matcher highlights)
1277 (while keywords
1278 ;; Find an occurrence of `matcher' from `start' to `end'.
1279 (setq keyword (car keywords) matcher (car keyword))
1280 (goto-char start)
1281 (while (if (stringp matcher)
1282 (re-search-forward matcher end t)
1283 (funcall matcher end))
1284 ;; Apply each highlight to this instance of `matcher', which may be
1285 ;; specific highlights or more keywords anchored to `matcher'.
1286 (setq highlights (cdr keyword))
1287 (while highlights
1288 (if (numberp (car (car highlights)))
1289 (font-lock-apply-syntactic-highlight (car highlights))
1290 (font-lock-fontify-syntactic-anchored-keywords (car highlights)
1291 end))
1292 (setq highlights (cdr highlights))))
1293 (setq keywords (cdr keywords)))))
1294
1295 ;;; End of Syntactic regexp fontification functions.
1296 \f
1297 ;;; Syntactic fontification functions.
1298
1299 (defun font-lock-fontify-syntactically-region (start end &optional loudly ppss)
1300 "Put proper face on each string and comment between START and END.
1301 START should be at the beginning of a line."
1302 (let (state face beg)
1303 (if loudly (message "Fontifying %s... (syntactically...)" (buffer-name)))
1304 (goto-char start)
1305 ;;
1306 ;; Find the `start' state.
1307 (setq state (or ppss (syntax-ppss start)))
1308 ;;
1309 ;; Find each interesting place between here and `end'.
1310 (while
1311 (progn
1312 (when (or (nth 3 state) (nth 4 state))
1313 (setq face (funcall font-lock-syntactic-face-function state))
1314 (setq beg (max (nth 8 state) start))
1315 (setq state (parse-partial-sexp (point) end nil nil state
1316 'syntax-table))
1317 (when face (put-text-property beg (point) 'face face)))
1318 (< (point) end))
1319 (setq state (parse-partial-sexp (point) end nil nil state
1320 'syntax-table)))))
1321
1322 ;;; End of Syntactic fontification functions.
1323 \f
1324 ;;; Keyword regexp fontification functions.
1325
1326 (defsubst font-lock-apply-highlight (highlight)
1327 "Apply HIGHLIGHT following a match.
1328 HIGHLIGHT should be of the form MATCH-HIGHLIGHT, see `font-lock-keywords'."
1329 (let* ((match (nth 0 highlight))
1330 (start (match-beginning match)) (end (match-end match))
1331 (override (nth 2 highlight)))
1332 (if (not start)
1333 ;; No match but we might not signal an error.
1334 (or (nth 3 highlight)
1335 (error "No match %d in highlight %S" match highlight))
1336 (let ((val (eval (nth 1 highlight))))
1337 (when (eq (car-safe val) 'face)
1338 (add-text-properties start end (cddr val))
1339 (setq val (cadr val)))
1340 (cond
1341 ((not (or val (eq override t)))
1342 ;; If `val' is nil, don't do anything. It is important to do it
1343 ;; explicitly, because when adding nil via things like
1344 ;; font-lock-append-text-property, the property is actually
1345 ;; changed from <face> to (<face>) which is undesirable. --Stef
1346 nil)
1347 ((not override)
1348 ;; Cannot override existing fontification.
1349 (or (text-property-not-all start end 'face nil)
1350 (put-text-property start end 'face val)))
1351 ((eq override t)
1352 ;; Override existing fontification.
1353 (put-text-property start end 'face val))
1354 ((eq override 'prepend)
1355 ;; Prepend to existing fontification.
1356 (font-lock-prepend-text-property start end 'face val))
1357 ((eq override 'append)
1358 ;; Append to existing fontification.
1359 (font-lock-append-text-property start end 'face val))
1360 ((eq override 'keep)
1361 ;; Keep existing fontification.
1362 (font-lock-fillin-text-property start end 'face val)))))))
1363
1364 (defsubst font-lock-fontify-anchored-keywords (keywords limit)
1365 "Fontify according to KEYWORDS until LIMIT.
1366 KEYWORDS should be of the form MATCH-ANCHORED, see `font-lock-keywords',
1367 LIMIT can be modified by the value of its PRE-MATCH-FORM."
1368 (let ((matcher (nth 0 keywords)) (lowdarks (nthcdr 3 keywords)) highlights
1369 (lead-start (match-beginning 0))
1370 ;; Evaluate PRE-MATCH-FORM.
1371 (pre-match-value (eval (nth 1 keywords))))
1372 ;; Set LIMIT to value of PRE-MATCH-FORM or the end of line.
1373 (if (not (and (numberp pre-match-value) (> pre-match-value (point))))
1374 (setq limit (line-end-position))
1375 (setq limit pre-match-value)
1376 (when (and font-lock-multiline (>= limit (line-beginning-position 2)))
1377 ;; this is a multiline anchored match
1378 ;; (setq font-lock-multiline t)
1379 (put-text-property (if (= limit (line-beginning-position 2))
1380 (1- limit)
1381 (min lead-start (point)))
1382 limit
1383 'font-lock-multiline t)))
1384 (save-match-data
1385 ;; Find an occurrence of `matcher' before `limit'.
1386 (while (and (< (point) limit)
1387 (if (stringp matcher)
1388 (re-search-forward matcher limit t)
1389 (funcall matcher limit)))
1390 ;; Apply each highlight to this instance of `matcher'.
1391 (setq highlights lowdarks)
1392 (while highlights
1393 (font-lock-apply-highlight (car highlights))
1394 (setq highlights (cdr highlights)))))
1395 ;; Evaluate POST-MATCH-FORM.
1396 (eval (nth 2 keywords))))
1397
1398 (defun font-lock-fontify-keywords-region (start end &optional loudly)
1399 "Fontify according to `font-lock-keywords' between START and END.
1400 START should be at the beginning of a line.
1401 LOUDLY, if non-nil, allows progress-meter bar."
1402 (unless (eq (car font-lock-keywords) t)
1403 (setq font-lock-keywords
1404 (font-lock-compile-keywords font-lock-keywords t)))
1405 (let ((case-fold-search font-lock-keywords-case-fold-search)
1406 (keywords (cddr font-lock-keywords))
1407 (bufname (buffer-name)) (count 0)
1408 keyword matcher highlights)
1409 ;;
1410 ;; Fontify each item in `font-lock-keywords' from `start' to `end'.
1411 (while keywords
1412 (if loudly (message "Fontifying %s... (regexps..%s)" bufname
1413 (make-string (incf count) ?.)))
1414 ;;
1415 ;; Find an occurrence of `matcher' from `start' to `end'.
1416 (setq keyword (car keywords) matcher (car keyword))
1417 (goto-char start)
1418 (while (and (< (point) end)
1419 (if (stringp matcher)
1420 (re-search-forward matcher end t)
1421 (funcall matcher end)))
1422 (when (and font-lock-multiline
1423 (>= (point)
1424 (save-excursion (goto-char (match-beginning 0))
1425 (forward-line 1) (point))))
1426 ;; this is a multiline regexp match
1427 ;; (setq font-lock-multiline t)
1428 (put-text-property (if (= (point)
1429 (save-excursion
1430 (goto-char (match-beginning 0))
1431 (forward-line 1) (point)))
1432 (1- (point))
1433 (match-beginning 0))
1434 (point)
1435 'font-lock-multiline t))
1436 ;; Apply each highlight to this instance of `matcher', which may be
1437 ;; specific highlights or more keywords anchored to `matcher'.
1438 (setq highlights (cdr keyword))
1439 (while highlights
1440 (if (numberp (car (car highlights)))
1441 (font-lock-apply-highlight (car highlights))
1442 (let ((pos (point)))
1443 (font-lock-fontify-anchored-keywords (car highlights) end)
1444 ;; Ensure forward progress.
1445 (if (< (point) pos) (goto-char pos))))
1446 (setq highlights (cdr highlights))))
1447 (setq keywords (cdr keywords)))))
1448
1449 ;;; End of Keyword regexp fontification functions.
1450 \f
1451 ;; Various functions.
1452
1453 (defun font-lock-compile-keywords (keywords &optional regexp)
1454 "Compile KEYWORDS into the form (t KEYWORDS COMPILED...)
1455 Here each COMPILED is of the form (MATCHER HIGHLIGHT ...) as shown in the
1456 `font-lock-keywords' doc string.
1457 If REGEXP is non-nil, it means these keywords are used for
1458 `font-lock-keywords' rather than for `font-lock-syntactic-keywords'."
1459 (if (eq (car-safe keywords) t)
1460 keywords
1461 (setq keywords
1462 (cons t (cons keywords
1463 (mapcar 'font-lock-compile-keyword keywords))))
1464 (if (and regexp
1465 (eq (or syntax-begin-function
1466 font-lock-beginning-of-syntax-function)
1467 'beginning-of-defun)
1468 (not beginning-of-defun-function))
1469 ;; Try to detect when a string or comment contains something that
1470 ;; looks like a defun and would thus confuse font-lock.
1471 (nconc keywords
1472 `((,(if defun-prompt-regexp
1473 (concat "^\\(?:" defun-prompt-regexp "\\)?\\s(")
1474 "^\\s(")
1475 (0
1476 (if (memq (get-text-property (match-beginning 0) 'face)
1477 '(font-lock-string-face font-lock-doc-face
1478 font-lock-comment-face))
1479 font-lock-warning-face)
1480 prepend)))))
1481 keywords))
1482
1483 (defun font-lock-compile-keyword (keyword)
1484 (cond ((nlistp keyword) ; MATCHER
1485 (list keyword '(0 font-lock-keyword-face)))
1486 ((eq (car keyword) 'eval) ; (eval . FORM)
1487 (font-lock-compile-keyword (eval (cdr keyword))))
1488 ((eq (car-safe (cdr keyword)) 'quote) ; (MATCHER . 'FORM)
1489 ;; If FORM is a FACENAME then quote it. Otherwise ignore the quote.
1490 (if (symbolp (nth 2 keyword))
1491 (list (car keyword) (list 0 (cdr keyword)))
1492 (font-lock-compile-keyword (cons (car keyword) (nth 2 keyword)))))
1493 ((numberp (cdr keyword)) ; (MATCHER . MATCH)
1494 (list (car keyword) (list (cdr keyword) 'font-lock-keyword-face)))
1495 ((symbolp (cdr keyword)) ; (MATCHER . FACENAME)
1496 (list (car keyword) (list 0 (cdr keyword))))
1497 ((nlistp (nth 1 keyword)) ; (MATCHER . HIGHLIGHT)
1498 (list (car keyword) (cdr keyword)))
1499 (t ; (MATCHER HIGHLIGHT ...)
1500 keyword)))
1501
1502 (defun font-lock-eval-keywords (keywords)
1503 "Evalulate KEYWORDS if a function (funcall) or variable (eval) name."
1504 (if (listp keywords)
1505 keywords
1506 (font-lock-eval-keywords (if (fboundp keywords)
1507 (funcall keywords)
1508 (eval keywords)))))
1509
1510 (defun font-lock-value-in-major-mode (alist)
1511 "Return value in ALIST for `major-mode', or ALIST if it is not an alist.
1512 Structure is ((MAJOR-MODE . VALUE) ...) where MAJOR-MODE may be t."
1513 (if (consp alist)
1514 (cdr (or (assq major-mode alist) (assq t alist)))
1515 alist))
1516
1517 (defun font-lock-choose-keywords (keywords level)
1518 "Return LEVELth element of KEYWORDS.
1519 A LEVEL of nil is equal to a LEVEL of 0, a LEVEL of t is equal to
1520 \(1- (length KEYWORDS))."
1521 (cond ((not (and (listp keywords) (symbolp (car keywords))))
1522 keywords)
1523 ((numberp level)
1524 (or (nth level keywords) (car (reverse keywords))))
1525 ((eq level t)
1526 (car (reverse keywords)))
1527 (t
1528 (car keywords))))
1529
1530 (defvar font-lock-set-defaults nil) ; Whether we have set up defaults.
1531
1532 (defun font-lock-set-defaults ()
1533 "Set fontification defaults appropriately for this mode.
1534 Sets various variables using `font-lock-defaults' (or, if nil, using
1535 `font-lock-defaults-alist') and `font-lock-maximum-decoration'."
1536 ;; Set fontification defaults iff not previously set.
1537 (unless font-lock-set-defaults
1538 (set (make-local-variable 'font-lock-set-defaults) t)
1539 (make-local-variable 'font-lock-fontified)
1540 (make-local-variable 'font-lock-multiline)
1541 (let* ((defaults (or font-lock-defaults
1542 (cdr (assq major-mode
1543 (with-no-warnings
1544 font-lock-defaults-alist)))))
1545 (keywords
1546 (font-lock-choose-keywords (nth 0 defaults)
1547 (font-lock-value-in-major-mode font-lock-maximum-decoration)))
1548 (local (cdr (assq major-mode font-lock-keywords-alist)))
1549 (removed-keywords
1550 (cdr-safe (assq major-mode font-lock-removed-keywords-alist))))
1551 (set (make-local-variable 'font-lock-defaults) defaults)
1552 ;; Syntactic fontification?
1553 (when (nth 1 defaults)
1554 (set (make-local-variable 'font-lock-keywords-only) t))
1555 ;; Case fold during regexp fontification?
1556 (when (nth 2 defaults)
1557 (set (make-local-variable 'font-lock-keywords-case-fold-search) t))
1558 ;; Syntax table for regexp and syntactic fontification?
1559 (when (nth 3 defaults)
1560 (set (make-local-variable 'font-lock-syntax-table)
1561 (copy-syntax-table (syntax-table)))
1562 (dolist (selem (nth 3 defaults))
1563 ;; The character to modify may be a single CHAR or a STRING.
1564 (let ((syntax (cdr selem)))
1565 (dolist (char (if (numberp (car selem))
1566 (list (car selem))
1567 (mapcar 'identity (car selem))))
1568 (modify-syntax-entry char syntax font-lock-syntax-table)))))
1569 ;; Syntax function for syntactic fontification?
1570 (when (nth 4 defaults)
1571 (set (make-local-variable 'font-lock-beginning-of-syntax-function)
1572 (nth 4 defaults)))
1573 ;; Variable alist?
1574 (dolist (x (nthcdr 5 defaults))
1575 (set (make-local-variable (car x)) (cdr x)))
1576 ;; Set up `font-lock-keywords' last because its value might depend
1577 ;; on other settings (e.g. font-lock-compile-keywords uses
1578 ;; font-lock-beginning-of-syntax-function).
1579 (set (make-local-variable 'font-lock-keywords)
1580 (font-lock-eval-keywords keywords))
1581 ;; Local fontification?
1582 (while local
1583 (font-lock-add-keywords nil (car (car local)) (cdr (car local)))
1584 (setq local (cdr local)))
1585 (when removed-keywords
1586 (font-lock-remove-keywords nil removed-keywords))
1587 ;; Now compile the keywords.
1588 (unless (eq (car font-lock-keywords) t)
1589 (set (make-local-variable 'font-lock-keywords)
1590 (font-lock-compile-keywords font-lock-keywords t))))))
1591 \f
1592 ;;; Colour etc. support.
1593
1594 ;; Originally face attributes were specified via `font-lock-face-attributes'.
1595 ;; Users then changed the default face attributes by setting that variable.
1596 ;; However, we try and be back-compatible and respect its value if set except
1597 ;; for faces where M-x customize has been used to save changes for the face.
1598 (when (boundp 'font-lock-face-attributes)
1599 (let ((face-attributes font-lock-face-attributes))
1600 (while face-attributes
1601 (let* ((face-attribute (pop face-attributes))
1602 (face (car face-attribute)))
1603 ;; Rustle up a `defface' SPEC from a `font-lock-face-attributes' entry.
1604 (unless (get face 'saved-face)
1605 (let ((foreground (nth 1 face-attribute))
1606 (background (nth 2 face-attribute))
1607 (bold-p (nth 3 face-attribute))
1608 (italic-p (nth 4 face-attribute))
1609 (underline-p (nth 5 face-attribute))
1610 face-spec)
1611 (when foreground
1612 (setq face-spec (cons ':foreground (cons foreground face-spec))))
1613 (when background
1614 (setq face-spec (cons ':background (cons background face-spec))))
1615 (when bold-p
1616 (setq face-spec (append '(:weight bold) face-spec)))
1617 (when italic-p
1618 (setq face-spec (append '(:slant italic) face-spec)))
1619 (when underline-p
1620 (setq face-spec (append '(:underline t) face-spec)))
1621 (custom-declare-face face (list (list t face-spec)) nil)))))))
1622
1623 ;; But now we do it the custom way. Note that `defface' will not overwrite any
1624 ;; faces declared above via `custom-declare-face'.
1625 (defface font-lock-comment-delimiter-face
1626 '((((class grayscale) (background light))
1627 (:foreground "DimGray" :weight bold :slant italic))
1628 (((class grayscale) (background dark))
1629 (:foreground "LightGray" :weight bold :slant italic))
1630 (((class color) (min-colors 88) (background light))
1631 (:foreground "Firebrick"))
1632 (((class color) (min-colors 88) (background dark))
1633 (:foreground "chocolate1"))
1634 (((class color) (min-colors 16) (background light))
1635 (:foreground "red"))
1636 (((class color) (min-colors 16) (background dark))
1637 (:foreground "red1"))
1638 (((class color) (min-colors 8) (background light))
1639 (:foreground "red"))
1640 (((class color) (min-colors 8) (background dark))
1641 (:foreground "red1"))
1642 (t (:weight bold :slant italic)))
1643 "Font Lock mode face used to highlight comment delimiters."
1644 :group 'font-lock-highlighting-faces)
1645
1646 (defface font-lock-comment-face
1647 '((((class grayscale) (background light))
1648 (:foreground "DimGray" :weight bold :slant italic))
1649 (((class grayscale) (background dark))
1650 (:foreground "LightGray" :weight bold :slant italic))
1651 (((class color) (min-colors 88) (background light))
1652 (:foreground "Firebrick"))
1653 (((class color) (min-colors 88) (background dark))
1654 (:foreground "chocolate1"))
1655 (((class color) (min-colors 16) (background light))
1656 (:foreground "red"))
1657 (((class color) (min-colors 16) (background dark))
1658 (:foreground "red1"))
1659 (((class color) (min-colors 8) (background light))
1660 )
1661 (((class color) (min-colors 8) (background dark))
1662 )
1663 (t (:weight bold :slant italic)))
1664 "Font Lock mode face used to highlight comments."
1665 :group 'font-lock-highlighting-faces)
1666
1667 (defface font-lock-string-face
1668 '((((class grayscale) (background light)) (:foreground "DimGray" :slant italic))
1669 (((class grayscale) (background dark)) (:foreground "LightGray" :slant italic))
1670 (((class color) (min-colors 88) (background light)) (:foreground "RosyBrown"))
1671 (((class color) (min-colors 88) (background dark)) (:foreground "LightSalmon"))
1672 (((class color) (min-colors 16) (background light)) (:foreground "RosyBrown"))
1673 (((class color) (min-colors 16) (background dark)) (:foreground "LightSalmon"))
1674 (((class color) (min-colors 8)) (:foreground "green"))
1675 (t (:slant italic)))
1676 "Font Lock mode face used to highlight strings."
1677 :group 'font-lock-highlighting-faces)
1678
1679 (defface font-lock-doc-face
1680 '((t :inherit font-lock-string-face))
1681 "Font Lock mode face used to highlight documentation."
1682 :group 'font-lock-highlighting-faces)
1683
1684 (defface font-lock-keyword-face
1685 '((((class grayscale) (background light)) (:foreground "LightGray" :weight bold))
1686 (((class grayscale) (background dark)) (:foreground "DimGray" :weight bold))
1687 (((class color) (min-colors 88) (background light)) (:foreground "Purple"))
1688 (((class color) (min-colors 88) (background dark)) (:foreground "Cyan1"))
1689 (((class color) (min-colors 16) (background light)) (:foreground "Purple"))
1690 (((class color) (min-colors 16) (background dark)) (:foreground "Cyan"))
1691 (((class color) (min-colors 8)) (:foreground "cyan" :weight bold))
1692 (t (:weight bold)))
1693 "Font Lock mode face used to highlight keywords."
1694 :group 'font-lock-highlighting-faces)
1695
1696 (defface font-lock-builtin-face
1697 '((((class grayscale) (background light)) (:foreground "LightGray" :weight bold))
1698 (((class grayscale) (background dark)) (:foreground "DimGray" :weight bold))
1699 (((class color) (min-colors 88) (background light)) (:foreground "Orchid"))
1700 (((class color) (min-colors 88) (background dark)) (:foreground "LightSteelBlue"))
1701 (((class color) (min-colors 16) (background light)) (:foreground "Orchid"))
1702 (((class color) (min-colors 16) (background dark)) (:foreground "LightSteelBlue"))
1703 (((class color) (min-colors 8)) (:foreground "blue" :weight bold))
1704 (t (:weight bold)))
1705 "Font Lock mode face used to highlight builtins."
1706 :group 'font-lock-highlighting-faces)
1707
1708 (defface font-lock-function-name-face
1709 '((((class color) (min-colors 88) (background light)) (:foreground "Blue1"))
1710 (((class color) (min-colors 88) (background dark)) (:foreground "LightSkyBlue"))
1711 (((class color) (min-colors 16) (background light)) (:foreground "Blue"))
1712 (((class color) (min-colors 16) (background dark)) (:foreground "LightSkyBlue"))
1713 (((class color) (min-colors 8)) (:foreground "blue" :weight bold))
1714 (t (:inverse-video t :weight bold)))
1715 "Font Lock mode face used to highlight function names."
1716 :group 'font-lock-highlighting-faces)
1717
1718 (defface font-lock-variable-name-face
1719 '((((class grayscale) (background light))
1720 (:foreground "Gray90" :weight bold :slant italic))
1721 (((class grayscale) (background dark))
1722 (:foreground "DimGray" :weight bold :slant italic))
1723 (((class color) (min-colors 88) (background light)) (:foreground "DarkGoldenrod"))
1724 (((class color) (min-colors 88) (background dark)) (:foreground "LightGoldenrod"))
1725 (((class color) (min-colors 16) (background light)) (:foreground "DarkGoldenrod"))
1726 (((class color) (min-colors 16) (background dark)) (:foreground "LightGoldenrod"))
1727 (((class color) (min-colors 8)) (:foreground "yellow" :weight light))
1728 (t (:weight bold :slant italic)))
1729 "Font Lock mode face used to highlight variable names."
1730 :group 'font-lock-highlighting-faces)
1731
1732 (defface font-lock-type-face
1733 '((((class grayscale) (background light)) (:foreground "Gray90" :weight bold))
1734 (((class grayscale) (background dark)) (:foreground "DimGray" :weight bold))
1735 (((class color) (min-colors 88) (background light)) (:foreground "ForestGreen"))
1736 (((class color) (min-colors 88) (background dark)) (:foreground "PaleGreen"))
1737 (((class color) (min-colors 16) (background light)) (:foreground "ForestGreen"))
1738 (((class color) (min-colors 16) (background dark)) (:foreground "PaleGreen"))
1739 (((class color) (min-colors 8)) (:foreground "green"))
1740 (t (:weight bold :underline t)))
1741 "Font Lock mode face used to highlight type and classes."
1742 :group 'font-lock-highlighting-faces)
1743
1744 (defface font-lock-constant-face
1745 '((((class grayscale) (background light))
1746 (:foreground "LightGray" :weight bold :underline t))
1747 (((class grayscale) (background dark))
1748 (:foreground "Gray50" :weight bold :underline t))
1749 (((class color) (min-colors 88) (background light)) (:foreground "CadetBlue"))
1750 (((class color) (min-colors 88) (background dark)) (:foreground "Aquamarine"))
1751 (((class color) (min-colors 16) (background light)) (:foreground "CadetBlue"))
1752 (((class color) (min-colors 16) (background dark)) (:foreground "Aquamarine"))
1753 (((class color) (min-colors 8)) (:foreground "magenta"))
1754 (t (:weight bold :underline t)))
1755 "Font Lock mode face used to highlight constants and labels."
1756 :group 'font-lock-highlighting-faces)
1757
1758 (defface font-lock-warning-face
1759 '((((class color) (min-colors 88) (background light)) (:foreground "Red1" :weight bold))
1760 (((class color) (min-colors 88) (background dark)) (:foreground "Pink" :weight bold))
1761 (((class color) (min-colors 16) (background light)) (:foreground "Red" :weight bold))
1762 (((class color) (min-colors 16) (background dark)) (:foreground "Pink" :weight bold))
1763 (((class color) (min-colors 8)) (:foreground "red"))
1764 (t (:inverse-video t :weight bold)))
1765 "Font Lock mode face used to highlight warnings."
1766 :group 'font-lock-highlighting-faces)
1767
1768 ;; Matches font-lock-builtin-face, because that is used for #ifndef and
1769 ;; font-lock-keyword-face, which alas make-mode uses for ifndef
1770 (defface font-lock-negation-char-face
1771 '((((class color) (min-colors 88) (background light)) (:foreground "VioletRed" :weight bold))
1772 (((class color) (min-colors 88) (background dark)) (:foreground "MediumOrchid1" :weight bold))
1773 (((class color) (min-colors 8)) (:foreground "red" :weight bold))
1774 (t (:inverse-video t :weight bold)))
1775 "Font Lock mode face used to highlight easy to overlook negation."
1776 :group 'font-lock-highlighting-faces)
1777
1778 (defface font-lock-preprocessor-face
1779 '((t :inherit font-lock-builtin-face))
1780 "Font Lock mode face used to highlight preprocessor directives."
1781 :group 'font-lock-highlighting-faces)
1782
1783 ;;; End of Colour etc. support.
1784 \f
1785 ;;; Menu support.
1786
1787 ;; This section of code is commented out because Emacs does not have real menu
1788 ;; buttons. (We can mimic them by putting "( ) " or "(X) " at the beginning of
1789 ;; the menu entry text, but with Xt it looks both ugly and embarrassingly
1790 ;; amateur.) If/When Emacs gets real menus buttons, put in menu-bar.el after
1791 ;; the entry for "Text Properties" something like:
1792 ;;
1793 ;; (define-key menu-bar-edit-menu [font-lock]
1794 ;; (cons "Syntax Highlighting" font-lock-menu))
1795 ;;
1796 ;; and remove a single ";" from the beginning of each line in the rest of this
1797 ;; section. Probably the mechanism for telling the menu code what are menu
1798 ;; buttons and when they are on or off needs tweaking. I have assumed that the
1799 ;; mechanism is via `menu-toggle' and `menu-selected' symbol properties. sm.
1800
1801 ;;;;###autoload
1802 ;(progn
1803 ; ;; Make the Font Lock menu.
1804 ; (defvar font-lock-menu (make-sparse-keymap "Syntax Highlighting"))
1805 ; ;; Add the menu items in reverse order.
1806 ; (define-key font-lock-menu [fontify-less]
1807 ; '("Less In Current Buffer" . font-lock-fontify-less))
1808 ; (define-key font-lock-menu [fontify-more]
1809 ; '("More In Current Buffer" . font-lock-fontify-more))
1810 ; (define-key font-lock-menu [font-lock-sep]
1811 ; '("--"))
1812 ; (define-key font-lock-menu [font-lock-mode]
1813 ; '("In Current Buffer" . font-lock-mode))
1814 ; (define-key font-lock-menu [global-font-lock-mode]
1815 ; '("In All Buffers" . global-font-lock-mode)))
1816 ;
1817 ;;;;###autoload
1818 ;(progn
1819 ; ;; We put the appropriate `menu-enable' etc. symbol property values on when
1820 ; ;; font-lock.el is loaded, so we don't need to autoload the three variables.
1821 ; (put 'global-font-lock-mode 'menu-toggle t)
1822 ; (put 'font-lock-mode 'menu-toggle t)
1823 ; (put 'font-lock-fontify-more 'menu-enable '(identity))
1824 ; (put 'font-lock-fontify-less 'menu-enable '(identity)))
1825 ;
1826 ;;; Put the appropriate symbol property values on now. See above.
1827 ;(put 'global-font-lock-mode 'menu-selected 'global-font-lock-mode)
1828 ;(put 'font-lock-mode 'menu-selected 'font-lock-mode)
1829 ;(put 'font-lock-fontify-more 'menu-enable '(nth 2 font-lock-fontify-level))
1830 ;(put 'font-lock-fontify-less 'menu-enable '(nth 1 font-lock-fontify-level))
1831 ;
1832 ;(defvar font-lock-fontify-level nil) ; For less/more fontification.
1833 ;
1834 ;(defun font-lock-fontify-level (level)
1835 ; (let ((font-lock-maximum-decoration level))
1836 ; (when font-lock-mode
1837 ; (font-lock-mode))
1838 ; (font-lock-mode)
1839 ; (when font-lock-verbose
1840 ; (message "Fontifying %s... level %d" (buffer-name) level))))
1841 ;
1842 ;(defun font-lock-fontify-less ()
1843 ; "Fontify the current buffer with less decoration.
1844 ;See `font-lock-maximum-decoration'."
1845 ; (interactive)
1846 ; ;; Check in case we get called interactively.
1847 ; (if (nth 1 font-lock-fontify-level)
1848 ; (font-lock-fontify-level (1- (car font-lock-fontify-level)))
1849 ; (error "No less decoration")))
1850 ;
1851 ;(defun font-lock-fontify-more ()
1852 ; "Fontify the current buffer with more decoration.
1853 ;See `font-lock-maximum-decoration'."
1854 ; (interactive)
1855 ; ;; Check in case we get called interactively.
1856 ; (if (nth 2 font-lock-fontify-level)
1857 ; (font-lock-fontify-level (1+ (car font-lock-fontify-level)))
1858 ; (error "No more decoration")))
1859 ;
1860 ;;; This should be called by `font-lock-set-defaults'.
1861 ;(defun font-lock-set-menu ()
1862 ; ;; Activate less/more fontification entries if there are multiple levels for
1863 ; ;; the current buffer. Sets `font-lock-fontify-level' to be of the form
1864 ; ;; (CURRENT-LEVEL IS-LOWER-LEVEL-P IS-HIGHER-LEVEL-P) for menu activation.
1865 ; (let ((keywords (or (nth 0 font-lock-defaults)
1866 ; (nth 1 (assq major-mode font-lock-defaults-alist))))
1867 ; (level (font-lock-value-in-major-mode font-lock-maximum-decoration)))
1868 ; (make-local-variable 'font-lock-fontify-level)
1869 ; (if (or (symbolp keywords) (= (length keywords) 1))
1870 ; (font-lock-unset-menu)
1871 ; (cond ((eq level t)
1872 ; (setq level (1- (length keywords))))
1873 ; ((or (null level) (zerop level))
1874 ; ;; The default level is usually, but not necessarily, level 1.
1875 ; (setq level (- (length keywords)
1876 ; (length (member (eval (car keywords))
1877 ; (mapcar 'eval (cdr keywords))))))))
1878 ; (setq font-lock-fontify-level (list level (> level 1)
1879 ; (< level (1- (length keywords))))))))
1880 ;
1881 ;;; This should be called by `font-lock-unset-defaults'.
1882 ;(defun font-lock-unset-menu ()
1883 ; ;; Deactivate less/more fontification entries.
1884 ; (setq font-lock-fontify-level nil))
1885
1886 ;;; End of Menu support.
1887 \f
1888 ;;; Various regexp information shared by several modes.
1889 ;;; Information specific to a single mode should go in its load library.
1890
1891 ;; Font Lock support for C, C++, Objective-C and Java modes is now in
1892 ;; cc-fonts.el (and required by cc-mode.el). However, the below function
1893 ;; should stay in font-lock.el, since it is used by other libraries. sm.
1894
1895 (defun font-lock-match-c-style-declaration-item-and-skip-to-next (limit)
1896 "Match, and move over, any declaration/definition item after point.
1897 Matches after point, but ignores leading whitespace and `*' characters.
1898 Does not move further than LIMIT.
1899
1900 The expected syntax of a declaration/definition item is `word' (preceded by
1901 optional whitespace and `*' characters and proceeded by optional whitespace)
1902 optionally followed by a `('. Everything following the item (but belonging to
1903 it) is expected to be skip-able by `scan-sexps', and items are expected to be
1904 separated with a `,' and to be terminated with a `;'.
1905
1906 Thus the regexp matches after point: word (
1907 ^^^^ ^
1908 Where the match subexpressions are: 1 2
1909
1910 The item is delimited by (match-beginning 1) and (match-end 1).
1911 If (match-beginning 2) is non-nil, the item is followed by a `('.
1912
1913 This function could be MATCHER in a MATCH-ANCHORED `font-lock-keywords' item."
1914 (when (looking-at "[ \n\t*]*\\(\\sw+\\)[ \t\n]*\\(((?\\)?")
1915 (when (and (match-end 2) (> (- (match-end 2) (match-beginning 2)) 1))
1916 ;; If `word' is followed by a double open-paren, it's probably
1917 ;; a macro used for "int myfun P_ ((int arg1))". Let's go back one
1918 ;; word to try and match `myfun' rather than `P_'.
1919 (let ((pos (point)))
1920 (skip-chars-backward " \t\n")
1921 (skip-syntax-backward "w")
1922 (unless (looking-at "\\(\\sw+\\)[ \t\n]*\\sw+[ \t\n]*\\(((?\\)?")
1923 ;; Looks like it was something else, so go back to where we
1924 ;; were and reset the match data by rematching.
1925 (goto-char pos)
1926 (looking-at "[ \n\t*]*\\(\\sw+\\)[ \t\n]*\\(((?\\)?"))))
1927 (save-match-data
1928 (condition-case nil
1929 (save-restriction
1930 ;; Restrict to the LIMIT.
1931 (narrow-to-region (point-min) limit)
1932 (goto-char (match-end 1))
1933 ;; Move over any item value, etc., to the next item.
1934 (while (not (looking-at "[ \t\n]*\\(\\(,\\)\\|;\\|\\'\\)"))
1935 (goto-char (or (scan-sexps (point) 1) (point-max))))
1936 (goto-char (match-end 2)))
1937 (error t)))))
1938 \f
1939 ;; Lisp.
1940
1941 (defconst lisp-font-lock-keywords-1
1942 (eval-when-compile
1943 (list
1944 ;;
1945 ;; Definitions.
1946 (list (concat "(\\(def\\("
1947 ;; Function declarations.
1948 "\\(advice\\|varalias\\|alias\\|generic\\|macro\\*?\\|method\\|"
1949 "setf\\|subst\\*?\\|un\\*?\\|"
1950 "ine-\\(condition\\|\\(?:derived\\|minor\\|generic\\)-mode\\|"
1951 "method-combination\\|setf-expander\\|skeleton\\|widget\\|"
1952 "function\\|\\(compiler\\|modify\\|symbol\\)-macro\\)\\)\\|"
1953 ;; Variable declarations.
1954 "\\(const\\(ant\\)?\\|custom\\|face\\|parameter\\|var\\)\\|"
1955 ;; Structure declarations.
1956 "\\(class\\|group\\|theme\\|package\\|struct\\|type\\)"
1957 "\\)\\)\\>"
1958 ;; Any whitespace and defined object.
1959 "[ \t'\(]*"
1960 "\\(setf[ \t]+\\sw+)\\|\\sw+\\)?")
1961 '(1 font-lock-keyword-face)
1962 '(9 (cond ((match-beginning 3) font-lock-function-name-face)
1963 ((match-beginning 6) font-lock-variable-name-face)
1964 (t font-lock-type-face))
1965 nil t))
1966 ;;
1967 ;; Emacs Lisp autoload cookies.
1968 '("^;;;###\\(autoload\\)" 1 font-lock-warning-face prepend)
1969 ))
1970 "Subdued level highlighting for Lisp modes.")
1971
1972 (defconst lisp-font-lock-keywords-2
1973 (append lisp-font-lock-keywords-1
1974 (eval-when-compile
1975 (list
1976 ;;
1977 ;; Control structures. Emacs Lisp forms.
1978 (cons (concat
1979 "(" (regexp-opt
1980 '("cond" "if" "while" "let" "let*"
1981 "prog" "progn" "progv" "prog1" "prog2" "prog*"
1982 "inline" "lambda" "save-restriction" "save-excursion"
1983 "save-window-excursion" "save-selected-window"
1984 "save-match-data" "save-current-buffer" "unwind-protect"
1985 "condition-case" "track-mouse"
1986 "eval-after-load" "eval-and-compile" "eval-when-compile"
1987 "eval-when"
1988 "with-category-table"
1989 "with-current-buffer" "with-electric-help"
1990 "with-local-quit" "with-no-warnings"
1991 "with-output-to-string" "with-output-to-temp-buffer"
1992 "with-selected-window" "with-syntax-table"
1993 "with-temp-buffer" "with-temp-file" "with-temp-message"
1994 "with-timeout" "with-timeout-handler") t)
1995 "\\>")
1996 1)
1997 ;;
1998 ;; Control structures. Common Lisp forms.
1999 (cons (concat
2000 "(" (regexp-opt
2001 '("when" "unless" "case" "ecase" "typecase" "etypecase"
2002 "ccase" "ctypecase" "handler-case" "handler-bind"
2003 "restart-bind" "restart-case" "in-package"
2004 "break" "ignore-errors"
2005 "loop" "do" "do*" "dotimes" "dolist" "the" "locally"
2006 "proclaim" "declaim" "declare" "symbol-macrolet"
2007 "lexical-let" "lexical-let*" "flet" "labels" "compiler-let"
2008 "destructuring-bind" "macrolet" "tagbody" "block" "go"
2009 "multiple-value-bind" "multiple-value-prog1"
2010 "return" "return-from"
2011 "with-accessors" "with-compilation-unit"
2012 "with-condition-restarts" "with-hash-table-iterator"
2013 "with-input-from-string" "with-open-file"
2014 "with-open-stream" "with-output-to-string"
2015 "with-package-iterator" "with-simple-restart"
2016 "with-slots" "with-standard-io-syntax") t)
2017 "\\>")
2018 1)
2019 ;;
2020 ;; Exit/Feature symbols as constants.
2021 (list (concat "(\\(catch\\|throw\\|featurep\\|provide\\|require\\)\\>"
2022 "[ \t']*\\(\\sw+\\)?")
2023 '(1 font-lock-keyword-face)
2024 '(2 font-lock-constant-face nil t))
2025 ;;
2026 ;; Erroneous structures.
2027 '("(\\(abort\\|assert\\|warn\\|check-type\\|cerror\\|error\\|signal\\)\\>" 1 font-lock-warning-face)
2028 ;;
2029 ;; Words inside \\[] tend to be for `substitute-command-keys'.
2030 '("\\\\\\\\\\[\\(\\sw+\\)]" 1 font-lock-constant-face prepend)
2031 ;;
2032 ;; Words inside `' tend to be symbol names.
2033 '("`\\(\\sw\\sw+\\)'" 1 font-lock-constant-face prepend)
2034 ;;
2035 ;; Constant values.
2036 '("\\<:\\sw+\\>" 0 font-lock-builtin-face)
2037 ;;
2038 ;; ELisp and CLisp `&' keywords as types.
2039 '("\\&\\sw+\\>" . font-lock-type-face)
2040 ;;
2041 ;;; This is too general -- rms.
2042 ;;; A user complained that he has functions whose names start with `do'
2043 ;;; and that they get the wrong color.
2044 ;;; ;; CL `with-' and `do-' constructs
2045 ;;; '("(\\(\\(do-\\|with-\\)\\(\\s_\\|\\w\\)*\\)" 1 font-lock-keyword-face)
2046 )))
2047 "Gaudy level highlighting for Lisp modes.")
2048
2049 (defvar lisp-font-lock-keywords lisp-font-lock-keywords-1
2050 "Default expressions to highlight in Lisp modes.")
2051 \f
2052 (provide 'font-lock)
2053
2054 ;; arch-tag: 682327e4-64d8-4057-b20b-1fbb9f1fc54c
2055 ;;; font-lock.el ends here