annotate lisp/font-lock.el @ 408:501cfd01ee6d r21-2-34

Import from CVS: tag r21-2-34
author cvs
date Mon, 13 Aug 2007 11:18:11 +0200
parents b8cc9ab3f761
children de805c49cfc1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1 ;;; font-lock.el --- decorating source files with fonts/colors based on syntax
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
3 ;; Copyright (C) 1992-1995, 1997 Free Software Foundation, Inc.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
4 ;; Copyright (C) 1995 Amdahl Corporation.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
5 ;; Copyright (C) 1996 Ben Wing.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
6
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
7 ;; Author: Jamie Zawinski <jwz@jwz.org>, for the LISPM Preservation Society.
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
8 ;; Minimally merged with FSF 19.34 by Barry Warsaw <bwarsaw@python.org>
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
9 ;; Then (partially) synched with FSF 19.30, leading to:
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
10 ;; Next Author: RMS
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
11 ;; Next Author: Simon Marshall <simon@gnu.ai.mit.edu>
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
12 ;; Latest XEmacs Author: Ben Wing
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
13 ;; Maintainer: XEmacs Development Team
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
14 ;; Keywords: languages, faces
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
15
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
16 ;; This file is part of XEmacs.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
17
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
18 ;; XEmacs is free software; you can redistribute it and/or modify it
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
19 ;; under the terms of the GNU General Public License as published by
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
20 ;; the Free Software Foundation; either version 2, or (at your option)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
21 ;; any later version.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
22
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
23 ;; XEmacs is distributed in the hope that it will be useful, but
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
24 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
25 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
26 ;; General Public License for more details.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
27
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
28 ;; You should have received a copy of the GNU General Public License
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
29 ;; along with XEmacs; see the file COPYING. If not, write to the
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
30 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
31 ;; Boston, MA 02111-1307, USA.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
32
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
33 ;;; Synched up with: FSF 19.30 except for the code to initialize the faces.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
34
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
35 ;;; Commentary:
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
36
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
37 ;; Font-lock-mode is a minor mode that causes your comments to be
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
38 ;; displayed in one face, strings in another, reserved words in another,
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
39 ;; documentation strings in another, and so on.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
40 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
41 ;; Comments will be displayed in `font-lock-comment-face'.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
42 ;; Strings will be displayed in `font-lock-string-face'.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
43 ;; Doc strings will be displayed in `font-lock-doc-string-face'.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
44 ;; Function and variable names (in their defining forms) will be
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
45 ;; displayed in `font-lock-function-name-face'.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
46 ;; Reserved words will be displayed in `font-lock-keyword-face'.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
47 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
48 ;; Don't let the name fool you: you can highlight things using different
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
49 ;; colors or background stipples instead of fonts, though that is not the
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
50 ;; default. See the variables `font-lock-use-colors' and
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
51 ;; `font-lock-use-fonts' for broad control over this, or see the
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
52 ;; documentation on faces and how to change their attributes for
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
53 ;; fine-grained control.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
54 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
55 ;; To make the text you type be fontified, use M-x font-lock-mode. When
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
56 ;; this minor mode is on, the fonts of the current line will be updated
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
57 ;; with every insertion or deletion.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
58 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
59 ;; By default, font-lock will automatically put newly loaded files
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
60 ;; into font-lock-mode if it knows about the file's mode. See the
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
61 ;; variables `font-lock-auto-fontify', `font-lock-mode-enable-list',
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
62 ;; and `font-lock-mode-disable-list' for control over this.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
63 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
64 ;; The `font-lock-keywords' variable defines other patterns to highlight.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
65 ;; The default font-lock-mode-hook sets it to the value of the variables
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
66 ;; lisp-font-lock-keywords, c-font-lock-keywords, etc, as appropriate.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
67 ;; The easiest way to change the highlighting patterns is to change the
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
68 ;; values of c-font-lock-keywords and related variables. See the doc
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
69 ;; string of the variable `font-lock-keywords' for the appropriate syntax.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
70 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
71 ;; The default value for `lisp-font-lock-keywords' is the value of the variable
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
72 ;; `lisp-font-lock-keywords-1'. You may like `lisp-font-lock-keywords-2'
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
73 ;; better; it highlights many more words, but is slower and makes your buffers
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
74 ;; be very visually noisy.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
75 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
76 ;; The same is true of `c-font-lock-keywords-1' and `c-font-lock-keywords-2';
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
77 ;; the former is subdued, the latter is loud.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
78 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
79 ;; You can make font-lock default to the gaudier variety of keyword
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
80 ;; highlighting by setting the variable `font-lock-maximum-decoration'
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
81 ;; before loading font-lock, or by calling the functions
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
82 ;; `font-lock-use-default-maximal-decoration' or
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
83 ;; `font-lock-use-default-minimal-decoration'.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
84 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
85 ;; On a Sparc10, the initial fontification takes about 6 seconds for a typical
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
86 ;; 140k file of C code, using the default configuration. The actual speed
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
87 ;; depends heavily on the type of code in the file, and how many non-syntactic
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
88 ;; patterns match; for example, Xlib.h takes 23 seconds for 101k, because many
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
89 ;; patterns match in it. You can speed this up substantially by removing some
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
90 ;; of the patterns that are highlighted by default. Fontifying lisp code is
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
91 ;; significantly faster, because lisp has a more regular syntax than C, so the
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
92 ;; regular expressions don't have to be as complicated.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
93 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
94 ;; It's called font-lock-mode here because on the Lispms it was called
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
95 ;; "Electric Font Lock Mode." It was called that because there was an older
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
96 ;; mode called "Electric Caps Lock Mode" which had the function of causing all
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
97 ;; of your source code to be in upper case except for strings and comments,
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
98 ;; without you having to blip the caps lock key by hand all the time (thus the
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
99 ;; "electric", as in `electric-c-brace'.)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
100
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
101 ;; See also the related packages `fast-lock' and `lazy-lock'. Both
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
102 ;; attempt to speed up the initial fontification. `fast-lock' saves
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
103 ;; the fontification info when you exit Emacs and reloads it next time
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
104 ;; you load the file, so that the file doesn't have to be fontified
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
105 ;; again. `lazy-lock' does "lazy" fontification -- i.e. it only
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
106 ;; fontifies the text as it becomes visible rather than fontifying
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
107 ;; the whole file when it's first loaded in.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
108
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
109 ;; Further comments from the FSF:
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
110
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
111 ;; Nasty regexps of the form "bar\\(\\|lo\\)\\|f\\(oo\\|u\\(\\|bar\\)\\)\\|lo"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
112 ;; are made thusly: (regexp-opt '("foo" "fu" "fubar" "bar" "barlo" "lo")) for
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
113 ;; efficiency.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
114
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
115 ;; What is fontification for? You might say, "It's to make my code look nice."
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
116 ;; I think it should be for adding information in the form of cues. These cues
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
117 ;; should provide you with enough information to both (a) distinguish between
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
118 ;; different items, and (b) identify the item meanings, without having to read
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
119 ;; the items and think about it. Therefore, fontification allows you to think
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
120 ;; less about, say, the structure of code, and more about, say, why the code
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
121 ;; doesn't work. Or maybe it allows you to think less and drift off to sleep.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
122 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
123 ;; So, here are my opinions/advice/guidelines:
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
124 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
125 ;; - Use the same face for the same conceptual object, across all modes.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
126 ;; i.e., (b) above, all modes that have items that can be thought of as, say,
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
127 ;; keywords, should be highlighted with the same face, etc.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
128 ;; - Keep the faces distinct from each other as far as possible.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
129 ;; i.e., (a) above.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
130 ;; - Make the face attributes fit the concept as far as possible.
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
131 ;; i.e., function names might be a bold color such as blue, comments might
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
132 ;; be a bright color such as red, character strings might be brown, because,
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
133 ;; err, strings are brown (that was not the reason, please believe me).
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
134 ;; - Don't use a non-nil OVERRIDE unless you have a good reason.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
135 ;; Only use OVERRIDE for special things that are easy to define, such as the
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
136 ;; way `...' quotes are treated in strings and comments in Emacs Lisp mode.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
137 ;; Don't use it to, say, highlight keywords in commented out code or strings.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
138 ;; - Err, that's it.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
139
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
140
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
141 ;;; Code:
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
142
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
143 (require 'fontl-hooks)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
144
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
145 ;;;;;;;;;;;;;;;;;;;;;; user variables ;;;;;;;;;;;;;;;;;;;;;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
146
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
147 (defgroup font-lock nil
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
148 "Decorate source files with fonts/colors based on syntax.
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
149 Font-lock-mode is a minor mode that causes your comments to be
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
150 displayed in one face, strings in another, reserved words in another,
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
151 documentation strings in another, and so on.
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
152
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
153 Comments will be displayed in `font-lock-comment-face'.
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
154 Strings will be displayed in `font-lock-string-face'.
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
155 Doc strings will be displayed in `font-lock-doc-string-face'.
221
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
156 Function and variable names (in their defining forms) will be displayed
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
157 in `font-lock-function-name-face'.
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
158 Reserved words will be displayed in `font-lock-keyword-face'.
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
159 Preprocessor conditionals will be displayed in `font-lock-preprocessor-face'."
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
160 :group 'languages)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
161
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
162 (defgroup font-lock-faces nil
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
163 "Faces used by the font-lock package."
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
164 :group 'font-lock
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
165 :group 'faces)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
166
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
167
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
168 (defcustom font-lock-verbose t
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
169 "*If non-nil, means show status messages when fontifying.
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
170 See also `font-lock-message-threshold'."
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
171 :type 'boolean
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
172 :group 'font-lock)
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
173
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
174 (defcustom font-lock-message-threshold 6000
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
175 "*Minimum size of region being fontified for status messages to appear.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
176
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
177 The size is measured in characters. This affects `font-lock-fontify-region'
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
178 but not `font-lock-fontify-buffer'. (In other words, when you first visit
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
179 a file and it gets fontified, you will see status messages no matter what
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
180 size the file is. However, if you do something else like paste a
408
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
181 chunk of text, you will see status messages only if the changed region is
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
182 large enough.)
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
183
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
184 Note that setting `font-lock-verbose' to nil disables the status
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
185 messages entirely."
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
186 :type 'integer
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
187 :group 'font-lock)
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
188
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
189 ;;;###autoload
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
190 (defcustom font-lock-auto-fontify t
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
191 "*Whether font-lock should automatically fontify files as they're loaded.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
192 This will only happen if font-lock has fontifying keywords for the major
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
193 mode of the file. You can get finer-grained control over auto-fontification
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
194 by using this variable in combination with `font-lock-mode-enable-list' or
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
195 `font-lock-mode-disable-list'."
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
196 :type 'boolean
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
197 :group 'font-lock)
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
198
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
199 ;;;###autoload
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
200 (defcustom font-lock-mode-enable-list nil
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
201 "*List of modes to auto-fontify, if `font-lock-auto-fontify' is nil."
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
202 :type '(repeat (symbol :tag "Mode"))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
203 :group 'font-lock)
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
204
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
205 ;;;###autoload
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
206 (defcustom font-lock-mode-disable-list nil
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
207 "*List of modes not to auto-fontify, if `font-lock-auto-fontify' is t."
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
208 :type '(repeat (symbol :tag "Mode"))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
209 :group 'font-lock)
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
210
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
211 ;;;###autoload
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
212 (defcustom font-lock-use-colors '(color)
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
213 "*Specification for when Font Lock will set up color defaults.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
214 Normally this should be '(color), meaning that Font Lock will set up
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
215 color defaults that are only used on color displays. Set this to nil
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
216 if you don't want Font Lock to set up color defaults at all. This
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
217 should be one of
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
218
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
219 -- a list of valid tags, meaning that the color defaults will be used
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
220 when all of the tags apply. (e.g. '(color x))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
221 -- a list whose first element is 'or and whose remaining elements are
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
222 lists of valid tags, meaning that the defaults will be used when
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
223 any of the tag lists apply.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
224 -- nil, meaning that the defaults should not be set up at all.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
225
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
226 \(If you specify face values in your init file, they will override any
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
227 that Font Lock specifies, regardless of whether you specify the face
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
228 values before or after loading Font Lock.)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
229
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
230 See also `font-lock-use-fonts'. If you want more control over the faces
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
231 used for fontification, see the documentation of `font-lock-mode' for
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
232 how to do it."
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
233 ;; Hard to do right.
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
234 :type 'sexp
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
235 :group 'font-lock)
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
236
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
237 ;;;###autoload
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
238 (defcustom font-lock-use-fonts '(or (mono) (grayscale))
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
239 "*Specification for when Font Lock will set up non-color defaults.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
240
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
241 Normally this should be '(or (mono) (grayscale)), meaning that Font
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
242 Lock will set up non-color defaults that are only used on either mono
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
243 or grayscale displays. Set this to nil if you don't want Font Lock to
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
244 set up non-color defaults at all. This should be one of
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
245
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
246 -- a list of valid tags, meaning that the non-color defaults will be used
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
247 when all of the tags apply. (e.g. '(grayscale x))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
248 -- a list whose first element is 'or and whose remaining elements are
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
249 lists of valid tags, meaning that the defaults will be used when
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
250 any of the tag lists apply.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
251 -- nil, meaning that the defaults should not be set up at all.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
252
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
253 \(If you specify face values in your init file, they will override any
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
254 that Font Lock specifies, regardless of whether you specify the face
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
255 values before or after loading Font Lock.)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
256
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
257 See also `font-lock-use-colors'. If you want more control over the faces
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
258 used for fontification, see the documentation of `font-lock-mode' for
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
259 how to do it."
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
260 :type 'sexp
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
261 :group 'font-lock)
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
262
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
263 ;;;###autoload
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
264 (defcustom font-lock-maximum-decoration t
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
265 "*If non-nil, the maximum decoration level for fontifying.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
266 If nil, use the minimum decoration (equivalent to level 0).
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
267 If t, use the maximum decoration available.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
268 If a number, use that level of decoration (or if not available the maximum).
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
269 If a list, each element should be a cons pair of the form (MAJOR-MODE . LEVEL),
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
270 where MAJOR-MODE is a symbol or t (meaning the default). For example:
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
271 ((c++-mode . 2) (c-mode . t) (t . 1))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
272 means use level 2 decoration for buffers in `c++-mode', the maximum decoration
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
273 available for buffers in `c-mode', and level 1 decoration otherwise."
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
274 :type '(choice (const :tag "default" nil)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
275 (const :tag "maximum" t)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
276 (integer :tag "level" 1)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
277 (repeat :menu-tag "mode specific" :tag "mode specific"
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
278 :value ((t . t))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
279 (cons :tag "Instance"
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
280 (radio :tag "Mode"
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
281 (const :tag "all" t)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
282 (symbol :tag "name"))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
283 (radio :tag "Decoration"
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
284 (const :tag "default" nil)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
285 (const :tag "maximum" t)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
286 (integer :tag "level" 1)))))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
287 :group 'font-lock)
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
288
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
289 ;;;###autoload
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
290 (define-obsolete-variable-alias 'font-lock-use-maximal-decoration
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
291 'font-lock-maximum-decoration)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
292
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
293 ;;;###autoload
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
294 (defcustom font-lock-maximum-size (* 250 1024)
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
295 "*If non-nil, the maximum size for buffers for fontifying.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
296 Only buffers less than this can be fontified when Font Lock mode is turned on.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
297 If nil, means size is irrelevant.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
298 If a list, each element should be a cons pair of the form (MAJOR-MODE . SIZE),
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
299 where MAJOR-MODE is a symbol or t (meaning the default). For example:
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
300 ((c++-mode . 256000) (c-mode . 256000) (rmail-mode . 1048576))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
301 means that the maximum size is 250K for buffers in `c++-mode' or `c-mode', one
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
302 megabyte for buffers in `rmail-mode', and size is irrelevant otherwise."
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
303 :type '(choice (const :tag "none" nil)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
304 (integer :tag "size")
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
305 (repeat :menu-tag "mode specific" :tag "mode specific"
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
306 :value ((t . nil))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
307 (cons :tag "Instance"
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
308 (radio :tag "Mode"
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
309 (const :tag "all" t)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
310 (symbol :tag "name"))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
311 (radio :tag "Size"
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
312 (const :tag "none" nil)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
313 (integer :tag "size")))))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
314 :group 'font-lock)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
315
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
316
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
317 ;; Fontification variables:
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
318
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
319 ;;;###autoload
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
320 (defvar font-lock-keywords nil
408
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
321 "A list defining the keywords for `font-lock-mode' to highlight.
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
322
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
323 FONT-LOCK-KEYWORDS := List of FONT-LOCK-FORM's.
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
324
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
325 FONT-LOCK-FORM :== MATCHER
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
326 | (MATCHER . MATCH)
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
327 | (MATCHER . FACE-FORM)
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
328 | (MATCHER . HIGHLIGHT)
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
329 | (MATCHER HIGHLIGHT ...)
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
330 | (eval . FORM)
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
331
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
332 MATCHER :== A string containing a regexp.
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
333 | A variable containing a regexp to search for.
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
334 | A function to call to make the search.
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
335 It is called with one arg, the limit of the search,
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
336 and should leave MATCH results in the XEmacs global
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
337 match data.
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
338
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
339 MATCH :== An integer match subexpression number from MATCHER.
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
340
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
341 FACE-FORM :== The symbol naming a defined face.
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
342 | Expression whos value is the face name to use. If you
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
343 want FACE-FORM to be a symbol that evaluates to a face,
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
344 use a form like \"(progn sym)\".
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
345
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
346 HIGHLIGHT :== MATCH-HIGHLIGHT
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
347 | MATCH-ANCHORED
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
348
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
349 FORM :== Expression returning a FONT-LOCK-FORM, evaluated when
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
350 the FONT-LOCK-FORM is first used in a buffer. This
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
351 feature can be used to provide a FONT-LOCK-FORM that
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
352 can only be generated when Font Lock mode is actually
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
353 turned on.
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
354
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
355 MATCH-HIGHLIGHT :== (MATCH FACE-FORM OVERRIDE LAXMATCH)
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
356
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
357 OVERRIDE :== t - overwrite existing fontification
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
358 | 'keep - only parts not already fontified are
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
359 highlighted.
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
360 | 'prepend - merge faces, this fontification has
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
361 precedence over existing
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
362 | 'append - merge faces, existing fontification has
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
363 precedence over
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
364 this face.
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
365
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
366 LAXMATCH :== If non-nil, no error is signalled if there is no MATCH
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
367 in MATCHER.
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
368
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
369 MATCH-ANCHORED :== (ANCHOR-MATCHER PRE-MATCH-FORM \\
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
370 POST-MATCH-FORM MATCH-HIGHLIGHT ...)
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
371
408
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
372 ANCHOR-MATCHER :== Like a MATCHER, except that the limit of the search
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
373 defaults to the end of the line after PRE-MATCH-FORM
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
374 is evaluated. However, if PRE-MATCH-FORM returns a
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
375 position greater than the end of the line, that
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
376 position is used as the limit of the search. It is
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
377 generally a bad idea to return a position greater than
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
378 the end of the line, i.e., cause the ANCHOR-MATCHER
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
379 search to span lines.
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
380
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
381 PRE-MATCH-FORM :== Evaluated before the ANCHOR-MATCHER is used, therefore
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
382 can be used to initialize before, ANCHOR-MATCHER is
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
383 used. Typically, PRE-MATCH-FORM is used to move to
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
384 some position relative to the original MATCHER, before
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
385 starting with the ANCHOR-MATCHER.
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
386
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
387 POST-MATCH-FORM :== Like PRE-MATCH-FORM, but used to clean up after the
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
388 ANCHOR-MATCHER. It might be used to move, before
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
389 resuming with MATCH-ANCHORED's parent's MATCHER.
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
390
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
391 For example, an element of the first form highlights (if not already highlighted):
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
392
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
393 \"\\\\<foo\\\\>\" Discrete occurrences of \"foo\" in the value
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
394 of the variable `font-lock-keyword-face'.
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
395
408
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
396 (\"fu\\\\(bar\\\\)\" . 1) Substring \"bar\" within all occurrences of
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
397 \"fubar\" in the value of
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
398 `font-lock-keyword-face'.
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
399
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
400 (\"fubar\" . fubar-face) Occurrences of \"fubar\" in the value of
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
401 `fubar-face'.
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
402
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
403 (\"foo\\\\|bar\" 0 foo-bar-face t) Occurrences of either \"foo\" or \"bar\" in the
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
404 value of `foo-bar-face', even if already
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
405 highlighted.
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
406
408
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
407 (fubar-match 1 fubar-face) The first subexpression within all
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
408 occurrences of whatever the function
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
409 `fubar-match' finds and matches in the value
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
410 of `fubar-face'.
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
411
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
412 (\"\\\\<anchor\\\\>\" (0 anchor-face) (\"\\\\<item\\\\>\" nil nil (0 item-face)))
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
413 -------------- --------------- ------------ --- --- -------------
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
414 | | | | | |
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
415 MATCHER | ANCHOR-MATCHER | +------+ MATCH-HIGHLIGHT
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
416 MATCH-HIGHLIGHT PRE-MATCH-FORM |
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
417 POST-MATCH-FORM
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
418
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
419 Discrete occurrences of \"anchor\" in the value of `anchor-face', and
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
420 subsequent discrete occurrences of \"item\" (on the same line) in the value
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
421 of `item-face'. (Here PRE-MATCH-FORM and POST-MATCH-FORM are nil.
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
422 Therefore \"item\" is initially searched for starting from the end of the
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
423 match of \"anchor\", and searching for subsequent instance of \"anchor\"
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
424 resumes from where searching for \"item\" concluded.)
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
425
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
426 For highlighting single items, typically only MATCH-HIGHLIGHT is required.
408
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
427 However, if an item or (typically) several items are to be highlighted
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
428 following the instance of another item (the anchor) then MATCH-ANCHORED may be
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
429 required.
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
430
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
431 These regular expressions should not match text which spans lines. While
408
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
432 \\[font-lock-fontify-buffer] handles multi-line patterns correctly, updating when you
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
433 edit the buffer does not, since it considers text one line at a time.
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
434
408
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
435 Be very careful composing regexps for this list; the wrong pattern can
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
436 dramatically slow things down!
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
437 ")
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
438 ;;;###autoload
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
439 (make-variable-buffer-local 'font-lock-keywords)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
440
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
441 (defvar font-lock-defaults nil
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
442 "The defaults font Font Lock mode for the current buffer.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
443 Normally, do not set this directly. If you are writing a major mode,
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
444 put a property of `font-lock-defaults' on the major-mode symbol with
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
445 the desired value.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
446
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
447 It should be a list
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
448
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
449 \(KEYWORDS KEYWORDS-ONLY CASE-FOLD SYNTAX-ALIST SYNTAX-BEGIN)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
450
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
451 KEYWORDS may be a symbol (a variable or function whose value is the keywords
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
452 to use for fontification) or a list of symbols. If KEYWORDS-ONLY is non-nil,
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
453 syntactic fontification (strings and comments) is not performed. If CASE-FOLD
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
454 is non-nil, the case of the keywords is ignored when fontifying. If
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
455 SYNTAX-ALIST is non-nil, it should be a list of cons pairs of the form (CHAR
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
456 . STRING) used to set the local Font Lock syntax table, for keyword and
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
457 syntactic fontification (see `modify-syntax-entry').
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
458
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
459 If SYNTAX-BEGIN is non-nil, it should be a function with no args used to move
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
460 backwards outside any enclosing syntactic block, for syntactic fontification.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
461 Typical values are `beginning-of-line' (i.e., the start of the line is known to
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
462 be outside a syntactic block), or `beginning-of-defun' for programming modes or
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
463 `backward-paragraph' for textual modes (i.e., the mode-dependent function is
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
464 known to move outside a syntactic block). If nil, the beginning of the buffer
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
465 is used as a position outside of a syntactic block, in the worst case.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
466
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
467 These item elements are used by Font Lock mode to set the variables
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
468 `font-lock-keywords', `font-lock-keywords-only',
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
469 `font-lock-keywords-case-fold-search', `font-lock-syntax-table' and
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
470 `font-lock-beginning-of-syntax-function', respectively.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
471
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
472 Alternatively, if the value is a symbol, it should name a major mode,
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
473 and the defaults for that mode will apply.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
474 (make-variable-buffer-local 'font-lock-defaults)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
475
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
476 ;; FSF uses `font-lock-defaults-alist' and expects the major mode to
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
477 ;; set a value for `font-lock-defaults', but I don't like either of
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
478 ;; these -- requiring the mode to set `font-lock-defaults' makes it
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
479 ;; impossible to have defaults for a minor mode, and using an alist is
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
480 ;; generally a bad idea for information that really should be
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
481 ;; decentralized. (Who knows what strange modes might want
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
482 ;; font-locking?)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
483
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
484 (defvar font-lock-keywords-only nil
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
485 "Non-nil means Font Lock should not do syntactic fontification.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
486 This is normally set via `font-lock-defaults'.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
487
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
488 This should be nil for all ``language'' modes, but other modes, like
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
489 dired, do not have anything useful in the syntax tables (no comment
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
490 or string delimiters, etc) and so there is no need to use them and
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
491 this variable should have a value of t.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
492
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
493 You should not set this variable directly; its value is computed
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
494 from `font-lock-defaults', or (if that does not specify anything)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
495 by examining the syntax table to see whether it appears to contain
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
496 anything useful.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
497 (make-variable-buffer-local 'font-lock-keywords-only)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
498
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
499 (defvar font-lock-keywords-case-fold-search nil
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
500 "Whether the strings in `font-lock-keywords' should be case-folded.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
501 This variable is automatically buffer-local, as the correct value depends
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
502 on the language in use.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
503 (make-variable-buffer-local 'font-lock-keywords-case-fold-search)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
504
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
505 (defvar font-lock-after-fontify-buffer-hook nil
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
506 "Function or functions to run after completion of font-lock-fontify-buffer.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
507
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
508 (defvar font-lock-syntax-table nil
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
509 "Non-nil means use this syntax table for fontifying.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
510 If this is nil, the major mode's syntax table is used.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
511 This is normally set via `font-lock-defaults'.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
512 (make-variable-buffer-local 'font-lock-syntax-table)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
513
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
514 ;; These are used in the FSF version in syntactic font-locking.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
515 ;; We do this all in C.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
516 ;;; These record the parse state at a particular position, always the
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
517 ;;; start of a line. Used to make
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
518 ;;; `font-lock-fontify-syntactically-region' faster.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
519 ;(defvar font-lock-cache-position nil)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
520 ;(defvar font-lock-cache-state nil)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
521 ;(make-variable-buffer-local 'font-lock-cache-position)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
522 ;(make-variable-buffer-local 'font-lock-cache-state)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
523
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
524 ;; If this is nil, we only use the beginning of the buffer if we can't use
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
525 ;; `font-lock-cache-position' and `font-lock-cache-state'.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
526 (defvar font-lock-beginning-of-syntax-function nil
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
527 "Non-nil means use this function to move back outside of a syntactic block.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
528 If this is nil, the beginning of the buffer is used (in the worst case).
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
529 This is normally set via `font-lock-defaults'.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
530 (make-variable-buffer-local 'font-lock-beginning-of-syntax-function)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
531
221
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
532 (defvar font-lock-fontify-buffer-function 'font-lock-default-fontify-buffer
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
533 "Function to use for fontifying the buffer.
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
534 This is normally set via `font-lock-defaults'.")
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
535
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
536 (defvar font-lock-unfontify-buffer-function 'font-lock-default-unfontify-buffer
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
537 "Function to use for unfontifying the buffer.
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
538 This is used when turning off Font Lock mode.
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
539 This is normally set via `font-lock-defaults'.")
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
540
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
541 (defvar font-lock-fontify-region-function 'font-lock-default-fontify-region
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
542 "Function to use for fontifying a region.
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
543 It should take two args, the beginning and end of the region, and an optional
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
544 third arg VERBOSE. If non-nil, the function should print status messages.
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
545 This is normally set via `font-lock-defaults'.")
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
546
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
547 (defvar font-lock-unfontify-region-function 'font-lock-default-unfontify-region
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
548 "Function to use for unfontifying a region.
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
549 It should take two args, the beginning and end of the region.
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
550 This is normally set via `font-lock-defaults'.")
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
551
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
552 (defvar font-lock-inhibit-thing-lock nil
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
553 "List of Font Lock mode related modes that should not be turned on.
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
554 Currently, valid mode names as `fast-lock-mode' and `lazy-lock-mode'.
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
555 This is normally set via `font-lock-defaults'.")
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
556
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
557 ;;;###autoload
278
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 243
diff changeset
558 (defcustom font-lock-mode nil ;; customized for the option menu. dverna
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 243
diff changeset
559 "Non nil means `font-lock-mode' is on"
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 243
diff changeset
560 :group 'font-lock
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 243
diff changeset
561 :type 'boolean
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 243
diff changeset
562 :initialize 'custom-initialize-default
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 243
diff changeset
563 :require 'font-lock
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
564 :set #'(lambda (var val) (font-lock-mode (or val 0)))
278
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 243
diff changeset
565 )
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 243
diff changeset
566
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
567 (defvar font-lock-fontified nil) ; whether we have hacked this buffer
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
568 (put 'font-lock-fontified 'permanent-local t)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
569
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
570 ;;;###autoload
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
571 (defvar font-lock-mode-hook nil
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
572 "Function or functions to run on entry to font-lock-mode.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
573
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
574 ; whether font-lock-set-defaults has already been run.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
575 (defvar font-lock-defaults-computed nil)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
576 (make-variable-buffer-local 'font-lock-defaults-computed)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
577
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
578
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
579 ;;; Initialization of faces.
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
580
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
581 ;; #### barf gag retch. Horrid FSF lossage that we need to
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
582 ;; keep around for compatibility with font-lock-keywords that
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
583 ;; forget to properly quote their faces.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
584 (defvar font-lock-comment-face 'font-lock-comment-face
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
585 "Don't even think of using this.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
586 (defvar font-lock-doc-string-face 'font-lock-doc-string-face
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
587 "Don't even think of using this.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
588 (defvar font-lock-string-face 'font-lock-string-face
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
589 "Don't even think of using this.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
590 (defvar font-lock-keyword-face 'font-lock-keyword-face
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
591 "Don't even think of using this.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
592 (defvar font-lock-function-name-face 'font-lock-function-name-face
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
593 "Don't even think of using this.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
594 (defvar font-lock-variable-name-face 'font-lock-variable-name-face
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
595 "Don't even think of using this.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
596 (defvar font-lock-type-face 'font-lock-type-face
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
597 "Don't even think of using this.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
598 (defvar font-lock-reference-face 'font-lock-reference-face
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
599 "Don't even think of using this.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
600 (defvar font-lock-preprocessor-face 'font-lock-preprocessor-face
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
601 "Don't even think of using this.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
602
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
603 (defconst font-lock-face-list
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
604 '(font-lock-comment-face
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
605 font-lock-string-face
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
606 font-lock-doc-string-face
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
607 font-lock-keyword-face
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
608 font-lock-function-name-face
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
609 font-lock-variable-name-face
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
610 font-lock-type-face
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
611 font-lock-reference-face
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
612 font-lock-preprocessor-face
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
613 font-lock-warning-face))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
614
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
615 (defface font-lock-comment-face
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
616 '((((class color) (background dark)) (:foreground "gray80"))
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
617 ;; blue4 is hardly different from black on windows.
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
618 (((class color) (background light) (type mswindows)) (:foreground "blue"))
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
619 (((class color) (background light)) (:foreground "blue4"))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
620 (((class grayscale) (background light))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
621 (:foreground "DimGray" :bold t :italic t))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
622 (((class grayscale) (background dark))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
623 (:foreground "LightGray" :bold t :italic t))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
624 (t (:bold t)))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
625 "Font Lock mode face used to highlight comments."
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
626 :group 'font-lock-faces)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
627
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
628 (defface font-lock-string-face
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
629 '((((class color) (background dark)) (:foreground "tan"))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
630 (((class color) (background light)) (:foreground "green4"))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
631 (((class grayscale) (background light)) (:foreground "DimGray" :italic t))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
632 (((class grayscale) (background dark)) (:foreground "LightGray" :italic t))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
633 (t (:bold t)))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
634 "Font Lock mode face used to highlight strings."
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
635 :group 'font-lock-faces)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
636
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
637 (defface font-lock-doc-string-face
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
638 '((((class color) (background dark)) (:foreground "light coral"))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
639 (((class color) (background light)) (:foreground "green4"))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
640 (t (:bold t)))
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
641 "Font Lock mode face used to highlight documentation strings.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
642 This is currently supported only in Lisp-like modes, which are those
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
643 with \"lisp\" or \"scheme\" in their name. You can explicitly make
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
644 a mode Lisp-like by putting a non-nil `font-lock-lisp-like' property
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
645 on the major mode's symbol."
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
646 :group 'font-lock-faces)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
647
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
648 (defface font-lock-keyword-face
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
649 '((((class color) (background dark)) (:foreground "cyan"))
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
650 ;; red4 is hardly different from black on windows.
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
651 (((class color) (background light) (type mswindows)) (:foreground "red"))
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
652 (((class color) (background light)) (:foreground "red4"))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
653 (((class grayscale) (background light)) (:foreground "LightGray" :bold t))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
654 (((class grayscale) (background dark)) (:foreground "DimGray" :bold t))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
655 (t (:bold t)))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
656 "Font Lock mode face used to highlight keywords."
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
657 :group 'font-lock-faces)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
658
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
659 (defface font-lock-function-name-face
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
660 '((((class color) (background dark)) (:foreground "aquamarine"))
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
661 ;; brown4 is hardly different from black on windows.
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
662 ;; I changed it to red because IMO it's pointless and ugly to
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
663 ;; use a million slightly different colors for niggly syntactic
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
664 ;; differences. --ben
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
665 (((class color) (background light) (type mswindows)) (:foreground "red"))
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
666 (((class color) (background light)) (:foreground "brown4"))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
667 (t (:bold t :underline t)))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
668 "Font Lock mode face used to highlight function names."
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
669 :group 'font-lock-faces)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
670
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
671 (defface font-lock-variable-name-face
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
672 '((((class color) (background dark)) (:foreground "cyan3"))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
673 (((class color) (background light)) (:foreground "magenta4"))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
674 (((class grayscale) (background light))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
675 (:foreground "Gray90" :bold t :italic t))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
676 (((class grayscale) (background dark))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
677 (:foreground "DimGray" :bold t :italic t))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
678 (t (:underline t)))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
679 "Font Lock mode face used to highlight variable names."
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
680 :group 'font-lock-faces)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
681
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
682 (defface font-lock-type-face
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
683 '((((class color) (background dark)) (:foreground "wheat"))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
684 (((class color) (background light)) (:foreground "steelblue"))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
685 (((class grayscale) (background light)) (:foreground "Gray90" :bold t))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
686 (((class grayscale) (background dark)) (:foreground "DimGray" :bold t))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
687 (t (:bold t)))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
688 "Font Lock mode face used to highlight types."
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
689 :group 'font-lock-faces)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
690
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
691 (defface font-lock-reference-face
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
692 '((((class color) (background dark)) (:foreground "cadetblue2"))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
693 (((class color) (background light)) (:foreground "red3"))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
694 (((class grayscale) (background light))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
695 (:foreground "LightGray" :bold t :underline t))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
696 (((class grayscale) (background dark))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
697 (:foreground "Gray50" :bold t :underline t)))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
698 "Font Lock mode face used to highlight references."
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
699 :group 'font-lock-faces)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
700
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
701 ;; #### FSF has font-lock-builtin-face.
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
702
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
703 (defface font-lock-preprocessor-face
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
704 '((((class color) (background dark)) (:foreground "steelblue1"))
221
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
705 (((class color) (background light)) (:foreground "blue3"))
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
706 (t (:underline t)))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
707 "Font Lock Mode face used to highlight preprocessor conditionals."
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
708 :group 'font-lock-faces)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
709
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
710 ;; #### Currently unused
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
711 (defface font-lock-warning-face
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
712 '((((class color) (background light)) (:foreground "Red" :bold t))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
713 (((class color) (background dark)) (:foreground "Pink" :bold t))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
714 (t (:inverse-video t :bold t)))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
715 "Font Lock mode face used to highlight warnings."
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
716 :group 'font-lock-faces)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
717
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
718 (defun font-lock-recompute-variables ()
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
719 ;; Is this a Draconian thing to do?
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
720 (mapc #'(lambda (buffer)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
721 (with-current-buffer buffer
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
722 (font-lock-mode 0)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
723 (font-lock-set-defaults t)))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
724 (buffer-list)))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
725
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
726 ;; Backwards-compatible crud.
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
727
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
728 (defun font-lock-reset-all-faces ()
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
729 (dolist (face font-lock-face-list)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
730 (face-spec-set face (get face 'face-defface-spec))))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
731
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
732 (defun font-lock-use-default-fonts ()
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
733 "Reset the font-lock faces to a default set of fonts."
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
734 (interactive)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
735 ;; #### !!!!
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
736 (font-lock-reset-all-faces))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
737
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
738 (defun font-lock-use-default-colors ()
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
739 "Reset the font-lock faces to a default set of colors."
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
740 (interactive)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
741 ;; #### !!!!
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
742 (font-lock-reset-all-faces))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
743
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
744 (defun font-lock-use-default-minimal-decoration ()
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
745 "Reset the font-lock patterns to a fast, minimal set of decorations."
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
746 (and font-lock-maximum-decoration
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
747 (setq font-lock-maximum-decoration nil)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
748 (font-lock-recompute-variables)))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
749
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
750 (defun font-lock-use-default-maximal-decoration ()
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
751 "Reset the font-lock patterns to a larger set of decorations."
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
752 (and (not (eq t font-lock-maximum-decoration))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
753 (setq font-lock-maximum-decoration t)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
754 (font-lock-recompute-variables)))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
755
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
756
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
757 ;;;;;;;;;;;;;;;;;;;;;; actual code ;;;;;;;;;;;;;;;;;;;;;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
758
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
759 ;;; To fontify the whole buffer by language syntax, we go through it a
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
760 ;;; character at a time, creating extents on the boundary of each syntactic
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
761 ;;; unit (that is, one extent for each block comment, one for each line
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
762 ;;; comment, one for each string, etc.) This is done with the C function
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
763 ;;; syntactically-sectionize. It's in C for speed (the speed of lisp function
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
764 ;;; calls was a real bottleneck for this task since it involves examining each
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
765 ;;; character in turn.)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
766 ;;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
767 ;;; Then we make a second pass, to fontify the buffer based on other patterns
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
768 ;;; specified by regexp. When we find a match for a region of text, we need
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
769 ;;; to change the fonts on those characters. This is done with the
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
770 ;;; put-text-property function, which knows how to efficiently share extents.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
771 ;;; Conceptually, we are attaching some particular face to each of the
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
772 ;;; characters in a range, but the implementation of this involves creating
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
773 ;;; extents, or resizing existing ones.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
774 ;;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
775 ;;; Each time a modification happens to a line, we re-fontify the entire line.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
776 ;;; We do this by first removing the extents (text properties) on the line,
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
777 ;;; and then doing the syntactic and keyword passes again on that line. (More
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
778 ;;; generally, each modified region is extended to include the preceding and
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
779 ;;; following BOL or EOL.)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
780 ;;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
781 ;;; This means that, as the user types, we repeatedly go back to the beginning
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
782 ;;; of the line, doing more work the longer the line gets. This doesn't cost
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
783 ;;; much in practice, and if we don't, then we incorrectly fontify things when,
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
784 ;;; for example, inserting spaces into `intfoo () {}'.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
785 ;;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
786
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
787
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
788 ;; The user level functions
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
789
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
790 ;;;###autoload
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
791 (defun font-lock-mode (&optional arg)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
792 "Toggle Font Lock Mode.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
793 With arg, turn font-lock mode on if and only if arg is positive.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
794
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
795 When Font Lock mode is enabled, text is fontified as you type it:
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
796
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
797 - Comments are displayed in `font-lock-comment-face';
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
798 - Strings are displayed in `font-lock-string-face';
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
799 - Documentation strings (in Lisp-like languages) are displayed in
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
800 `font-lock-doc-string-face';
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
801 - Language keywords (\"reserved words\") are displayed in
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
802 `font-lock-keyword-face';
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
803 - Function names in their defining form are displayed in
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
804 `font-lock-function-name-face';
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
805 - Variable names in their defining form are displayed in
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
806 `font-lock-variable-name-face';
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
807 - Type names are displayed in `font-lock-type-face';
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
808 - References appearing in help files and the like are displayed
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
809 in `font-lock-reference-face';
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
810 - Preprocessor declarations are displayed in
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
811 `font-lock-preprocessor-face';
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
812
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
813 and
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
814
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
815 - Certain other expressions are displayed in other faces according
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
816 to the value of the variable `font-lock-keywords'.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
817
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
818 Where modes support different levels of fontification, you can use the variable
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
819 `font-lock-maximum-decoration' to specify which level you generally prefer.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
820 When you turn Font Lock mode on/off the buffer is fontified/defontified, though
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
821 fontification occurs only if the buffer is less than `font-lock-maximum-size'.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
822 To fontify a buffer without turning on Font Lock mode, and regardless of buffer
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
823 size, you can use \\[font-lock-fontify-buffer].
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
824
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
825 See the variable `font-lock-keywords' for customization."
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
826 (interactive "P")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
827 (let ((on-p (if arg (> (prefix-numeric-value arg) 0) (not font-lock-mode)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
828 (maximum-size (if (not (consp font-lock-maximum-size))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
829 font-lock-maximum-size
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
830 (cdr (or (assq major-mode font-lock-maximum-size)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
831 (assq t font-lock-maximum-size))))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
832 ;; Font-lock mode will refuse to turn itself on if in batch mode, or if
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
833 ;; the current buffer is "invisible". The latter is because packages
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
834 ;; sometimes put their temporary buffers into some particular major mode
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
835 ;; to get syntax tables and variables and whatnot, but we don't want the
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
836 ;; fact that the user has font-lock-mode on a mode hook to slow these
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
837 ;; things down.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
838 (if (or noninteractive (eq (aref (buffer-name) 0) ?\ ))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
839 (setq on-p nil))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
840 (if (equal (buffer-name) " *Compiler Input*") ; hack for bytecomp...
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
841 (setq on-p nil))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
842 (cond (on-p
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
843 (make-local-hook 'after-change-functions)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
844 (add-hook 'after-change-functions
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
845 'font-lock-after-change-function nil t)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
846 (add-hook 'pre-idle-hook 'font-lock-pre-idle-hook))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
847 (t
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
848 (remove-hook 'after-change-functions
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
849 'font-lock-after-change-function t)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
850 (setq font-lock-defaults-computed nil
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
851 font-lock-keywords nil)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
852 ;; We have no business doing this here, since
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
853 ;; pre-idle-hook is global. Other buffers may
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
854 ;; still be in font-lock mode. -dkindred@cs.cmu.edu
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
855 ;; (remove-hook 'pre-idle-hook 'font-lock-pre-idle-hook)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
856 ))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
857 (set (make-local-variable 'font-lock-mode) on-p)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
858 (cond (on-p
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
859 (font-lock-set-defaults-1)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
860 (run-hooks 'font-lock-mode-hook)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
861 (cond (font-lock-fontified
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
862 nil)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
863 ((or (null maximum-size) (<= (buffer-size) maximum-size))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
864 (font-lock-fontify-buffer))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
865 (font-lock-verbose
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
866 (lprogress-display 'font-lock
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
867 "Fontifying %s... buffer too big." 'abort
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
868 (buffer-name)))))
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
869 (font-lock-fontified
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
870 (setq font-lock-fontified nil)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
871 (font-lock-unfontify-region (point-min) (point-max))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
872 (font-lock-thing-lock-cleanup))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
873 (t
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
874 (font-lock-thing-lock-cleanup)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
875 (redraw-modeline)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
876
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
877 ;; For init-file hooks
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
878 ;;;###autoload
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
879 (defun turn-on-font-lock ()
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
880 "Unconditionally turn on Font Lock mode."
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
881 (font-lock-mode 1))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
882
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
883 ;;;###autoload
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
884 (defun turn-off-font-lock ()
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
885 "Unconditionally turn off Font Lock mode."
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
886 (font-lock-mode 0))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
887
221
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
888 ;;; FSF has here:
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
889
221
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
890 ;; support for add-keywords, global-font-lock-mode and
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
891 ;; font-lock-support-mode (unified support for various *-lock modes).
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
892
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
893
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
894 ;; Fontification functions.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
895
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
896 ;; We first define some defsubsts to encapsulate the way we add
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
897 ;; faces to a region of text. I am planning on modifying the
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
898 ;; text-property mechanism so that multiple independent classes
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
899 ;; of text properties can exist. That way, for example, ediff's
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
900 ;; face text properties don't interfere with font lock's face
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
901 ;; text properties. Due to the XEmacs implementation of text
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
902 ;; properties in terms of extents, doing this is fairly trivial:
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
903 ;; instead of using the `text-prop' property, you just use a
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
904 ;; specified property.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
905
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
906 (defsubst font-lock-set-face (start end face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
907 ;; Set the face on the characters in the range.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
908 (put-nonduplicable-text-property start end 'face face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
909 (put-nonduplicable-text-property start end 'font-lock t))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
910
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
911 (defsubst font-lock-remove-face (start end)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
912 ;; Remove any syntax highlighting on the characters in the range.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
913 (put-nonduplicable-text-property start end 'face nil)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
914 (put-nonduplicable-text-property start end 'font-lock nil))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
915
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
916 (defsubst font-lock-any-faces-p (start end)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
917 ;; Return non-nil if we've put any syntax highlighting on
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
918 ;; the characters in the range.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
919 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
920 ;; used to look for 'text-prop property, but this has problems if
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
921 ;; you put any other text properties in the vicinity. Simon
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
922 ;; Marshall suggested looking for the 'face property (this is what
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
923 ;; FSF Emacs does) but that's equally bogus. Only reliable way is
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
924 ;; for font-lock to specially mark its extents.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
925 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
926 ;; FSF's (equivalent) definition of this defsubst would be
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
927 ;; (text-property-not-all start end 'font-lock nil)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
928 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
929 ;; Perhaps our `map-extents' is faster than our definition
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
930 ;; of `text-property-not-all'. #### If so, `text-property-not-all'
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
931 ;; should be fixed ...
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
932 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
933 (map-extents 'extent-property (current-buffer) start (1- end) 'font-lock))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
934
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
935
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
936 ;; Fontification functions.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
937
221
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
938 ;; Rather than the function, e.g., `font-lock-fontify-region' containing the
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
939 ;; code to fontify a region, the function runs the function whose name is the
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
940 ;; value of the variable, e.g., `font-lock-fontify-region-function'. Normally,
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
941 ;; the value of this variable is, e.g., `font-lock-default-fontify-region'
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
942 ;; which does contain the code to fontify a region. However, the value of the
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
943 ;; variable could be anything and thus, e.g., `font-lock-fontify-region' could
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
944 ;; do anything. The indirection of the fontification functions gives major
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
945 ;; modes the capability of modifying the way font-lock.el fontifies. Major
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
946 ;; modes can modify the values of, e.g., `font-lock-fontify-region-function',
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
947 ;; via the variable `font-lock-defaults'.
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
948 ;;
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
949 ;; For example, Rmail mode sets the variable `font-lock-defaults' so that
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
950 ;; font-lock.el uses its own function for buffer fontification. This function
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
951 ;; makes fontification be on a message-by-message basis and so visiting an
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
952 ;; RMAIL file is much faster. A clever implementation of the function might
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
953 ;; fontify the headers differently than the message body. (It should, and
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
954 ;; correspondingly for Mail mode, but I can't be bothered to do the work. Can
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
955 ;; you?) This hints at a more interesting use...
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
956 ;;
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
957 ;; Languages that contain text normally contained in different major modes
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
958 ;; could define their own fontification functions that treat text differently
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
959 ;; depending on its context. For example, Perl mode could arrange that here
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
960 ;; docs are fontified differently than Perl code. Or Yacc mode could fontify
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
961 ;; rules one way and C code another. Neat!
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
962 ;;
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
963 ;; A further reason to use the fontification indirection feature is when the
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
964 ;; default syntactual fontification, or the default fontification in general,
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
965 ;; is not flexible enough for a particular major mode. For example, perhaps
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
966 ;; comments are just too hairy for `font-lock-fontify-syntactically-region' to
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
967 ;; cope with. You need to write your own version of that function, e.g.,
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
968 ;; `hairy-fontify-syntactically-region', and make your own version of
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
969 ;; `hairy-fontify-region' call that function before calling
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
970 ;; `font-lock-fontify-keywords-region' for the normal regexp fontification
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
971 ;; pass. And Hairy mode would set `font-lock-defaults' so that font-lock.el
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
972 ;; would call your region fontification function instead of its own. For
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
973 ;; example, TeX modes could fontify {\foo ...} and \bar{...} etc. multi-line
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
974 ;; directives correctly and cleanly. (It is the same problem as fontifying
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
975 ;; multi-line strings and comments; regexps are not appropriate for the job.)
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
976
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
977 ;;;###autoload
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
978 (defun font-lock-fontify-buffer ()
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
979 "Fontify the current buffer the way `font-lock-mode' would.
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
980 See `font-lock-mode' for details.
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
981
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
982 This can take a while for large buffers."
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
983 (interactive)
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
984 (let ((font-lock-verbose (or font-lock-verbose (interactive-p))))
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
985 (funcall font-lock-fontify-buffer-function)))
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
986
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
987 (defun font-lock-unfontify-buffer ()
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
988 (funcall font-lock-unfontify-buffer-function))
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
989
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
990 (defun font-lock-fontify-region (beg end &optional loudly)
221
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
991 (funcall font-lock-fontify-region-function beg end loudly))
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
992
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
993 (defun font-lock-unfontify-region (beg end &optional loudly)
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
994 (funcall font-lock-unfontify-region-function beg end loudly))
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
995
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
996 (defun font-lock-default-fontify-buffer ()
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
997 (interactive)
408
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
998 ;; if we don't widen, then the C code will fail to
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
999 ;; realize that we're inside a comment.
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1000 (save-restriction
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1001 (widen)
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1002 (let ((was-on font-lock-mode)
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1003 (font-lock-verbose (or font-lock-verbose (interactive-p)))
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1004 (font-lock-message-threshold 0)
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1005 (aborted nil))
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1006 ;; Turn it on to run hooks and get the right font-lock-keywords.
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1007 (or was-on (font-lock-mode 1))
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1008 (font-lock-unfontify-region (point-min) (point-max) t)
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1009 ;; (buffer-syntactic-context-flush-cache)
221
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
1010
408
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1011 ;; If a ^G is typed during fontification, abort the fontification, but
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1012 ;; return normally (do not signal.) This is to make it easy to abort
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1013 ;; fontification if it's taking a long time, without also causing the
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1014 ;; buffer not to pop up. If a real abort is desired, the user can ^G
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1015 ;; again.
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1016 ;;
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1017 ;; Possibly this should happen down in font-lock-fontify-region instead
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1018 ;; of here, but since that happens from the after-change-hook (meaning
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1019 ;; much more frequently) I'm afraid of the bad consequences of stealing
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1020 ;; the interrupt character at inopportune times.
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1021 ;;
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1022 (condition-case nil
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1023 (save-excursion
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1024 (font-lock-fontify-region (point-min) (point-max)))
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1025 (t
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1026 (setq aborted t)))
221
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
1027
408
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1028 (or was-on ; turn it off if it was off.
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1029 (let ((font-lock-fontified nil)) ; kludge to prevent defontification
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1030 (font-lock-mode 0)))
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1031 (set (make-local-variable 'font-lock-fontified) t)
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1032 (when (and aborted font-lock-verbose)
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1033 (lprogress-display 'font-lock "Fontifying %s... aborted."
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1034 'abort (buffer-name))))
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1035 (run-hooks 'font-lock-after-fontify-buffer-hook)))
221
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
1036
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
1037 (defun font-lock-default-unfontify-buffer ()
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
1038 (font-lock-unfontify-region (point-min) (point-max))
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
1039 (set (make-local-variable 'font-lock-fontified) nil))
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
1040
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
1041 ;; This used to be `font-lock-fontify-region', and before that,
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
1042 ;; `font-lock-fontify-region' used to be the name used for what is now
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
1043 ;; `font-lock-fontify-syntactically-region'.
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
1044 (defun font-lock-default-fontify-region (beg end &optional loudly)
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1045 (let ((modified (buffer-modified-p))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1046 (buffer-undo-list t) (inhibit-read-only t)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1047 (old-syntax-table (syntax-table))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1048 buffer-file-name buffer-file-truename)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1049 (unwind-protect
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1050 (progn
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1051 ;; Use the fontification syntax table, if any.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1052 (if font-lock-syntax-table (set-syntax-table font-lock-syntax-table))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1053 ;; Now do the fontification.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1054 (if font-lock-keywords-only
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1055 (font-lock-unfontify-region beg end)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1056 (font-lock-fontify-syntactically-region beg end loudly))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1057 (font-lock-fontify-keywords-region beg end loudly))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1058 ;; Clean up.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1059 (set-syntax-table old-syntax-table)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1060 (and (not modified) (buffer-modified-p) (set-buffer-modified-p nil)))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1061
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1062 ;; The following must be rethought, since keywords can override fontification.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1063 ; ;; Now scan for keywords, but not if we are inside a comment now.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1064 ; (or (and (not font-lock-keywords-only)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1065 ; (let ((state (parse-partial-sexp beg end nil nil
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1066 ; font-lock-cache-state)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1067 ; (or (nth 4 state) (nth 7 state))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1068 ; (font-lock-fontify-keywords-region beg end))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1069
221
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
1070 (defun font-lock-default-unfontify-region (beg end &optional maybe-loudly)
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1071 (when (and maybe-loudly font-lock-verbose
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1072 (>= (- end beg) font-lock-message-threshold))
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
1073 (lprogress-display 'font-lock "Fontifying %s..." 0 (buffer-name)))
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1074 (let ((modified (buffer-modified-p))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1075 (buffer-undo-list t) (inhibit-read-only t)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1076 buffer-file-name buffer-file-truename)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1077 (font-lock-remove-face beg end)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1078 (and (not modified) (buffer-modified-p) (set-buffer-modified-p nil))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1079
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1080 ;; Following is the original FSF version (similar to our original
408
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1081 ;; version, before the deferred stuff was added).
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1082 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1083 ;; I think that lazy-lock v2 tries to do something similar.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1084 ;; Those efforts should be merged.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1085
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1086 ;; Called when any modification is made to buffer text.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1087 ;(defun font-lock-after-change-function (beg end old-len)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1088 ; (save-excursion
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1089 ; (save-match-data
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1090 ; ;; Rescan between start of line from `beg' and start of line after `end'.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1091 ; (font-lock-fontify-region
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1092 ; (progn (goto-char beg) (beginning-of-line) (point))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1093 ; (progn (goto-char end) (forward-line 1) (point))))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1094
408
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1095 (defvar font-lock-always-fontify-immediately nil
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1096 "Set this to non-nil to disable font-lock deferral.
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1097 Otherwise, changes to existing text will not be processed until the
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1098 next redisplay cycle, avoiding excessive fontification when many
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1099 buffer modifications are performed or a buffer is reverted.")
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1100
408
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1101 (defvar font-lock-pending-extent-table (make-hash-table :weakness 'key))
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1102 (defvar font-lock-range-table (make-range-table))
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1103
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1104 (defun font-lock-pre-idle-hook ()
408
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1105 (condition-case font-lock-error
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1106 (if (> (hash-table-count font-lock-pending-extent-table) 0)
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1107 (font-lock-fontify-pending-extents))
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1108 (error (warn "Error caught in `font-lock-pre-idle-hook': %s"
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1109 font-lock-error))))
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1110
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1111 ;;; called when any modification is made to buffer text. This function
408
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1112 ;;; remembers the changed ranges until the next redisplay, at which point
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1113 ;;; the extents are merged and pruned, and the resulting ranges fontified.
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1114 ;;; This function could easily be adapted to other after-change-functions.
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1115
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1116 (defun font-lock-after-change-function (beg end old-len)
408
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1117 (when font-lock-mode
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1118 (let ((ex (make-extent beg end)))
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1119 (set-extent-property ex 'detachable nil)
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1120 (set-extent-property ex 'end-open nil)
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1121 (let ((exs (gethash (current-buffer) font-lock-pending-extent-table)))
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1122 (push ex exs)
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1123 (puthash (current-buffer) exs font-lock-pending-extent-table)))
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1124 (if font-lock-always-fontify-immediately
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1125 (font-lock-fontify-pending-extents))))
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1126
408
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1127 (defun font-lock-fontify-pending-extents ()
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1128 ;; ah, the beauty of mapping functions.
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1129 ;; this function is actually shorter than the old version, which handled
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1130 ;; only one buffer and one contiguous region!
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1131 (save-match-data
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1132 (maphash
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1133 #'(lambda (buffer exs)
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1134 ;; remove first, to avoid infinite reprocessing if error
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1135 (remhash buffer font-lock-pending-extent-table)
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1136 (when (buffer-live-p buffer)
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1137 (clear-range-table font-lock-range-table)
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1138 (with-current-buffer buffer
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1139 (save-excursion
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1140 (save-restriction
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1141 ;; if we don't widen, then the C code will fail to
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1142 ;; realize that we're inside a comment.
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1143 (widen)
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1144 (let ((zmacs-region-stays
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1145 zmacs-region-stays)) ; protect from change!
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1146 (mapc
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1147 #'(lambda (ex)
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1148 ;; paranoia.
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1149 (when (and (extent-live-p ex)
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1150 (not (extent-detached-p ex)))
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1151 ;; first expand the ranges to full lines, because
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1152 ;; that is what will be fontified; then use a
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1153 ;; range table to merge the ranges.
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1154 (let* ((beg (extent-start-position ex))
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1155 (end (extent-end-position ex))
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1156 (beg (progn (goto-char beg)
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1157 (beginning-of-line)
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1158 (point)))
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1159 (end (progn (goto-char end)
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1160 (forward-line 1)
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1161 (point))))
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1162 (detach-extent ex)
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1163 (put-range-table beg end t
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1164 font-lock-range-table))))
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1165 exs)
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1166 (map-range-table
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1167 #'(lambda (beg end val)
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1168 ;; Maybe flush the internal cache used by
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1169 ;; syntactically-sectionize. (It'd be nice if this
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1170 ;; was more automatic.) Any deletions mean the
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1171 ;; cache is invalid, and insertions at beginning or
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1172 ;; end of line mean that the bol cache might be
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1173 ;; invalid.
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1174 ;; #### This code has been commented out for some time
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1175 ;; now and is bit-rotting. Someone should look into
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1176 ;; this.
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1177 ;; (if (or change-was-deletion (bobp)
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1178 ;; (= (preceding-char) ?\n))
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1179 ;; (buffer-syntactic-context-flush-cache))
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1180 (if (and (= beg (point-min))
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1181 (= end (point-max)))
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1182 (font-lock-fontify-buffer)
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1183 (font-lock-fontify-region beg end)))
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1184 font-lock-range-table)))))))
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
1185 font-lock-pending-extent-table)))
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1186
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1187 ;; Syntactic fontification functions.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1188
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1189 ;; Note: Here is the FSF version. Our version is much faster because
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1190 ;; of the C support we provide. This may be useful for reference,
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1191 ;; however, and perhaps there is something useful here that should
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1192 ;; be merged into our version.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1193 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1194 ;(defun font-lock-fontify-syntactically-region (start end &optional loudly)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1195 ; "Put proper face on each string and comment between START and END.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1196 ;START should be at the beginning of a line."
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1197 ; (let ((synstart (if comment-start-skip
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1198 ; (concat "\\s\"\\|" comment-start-skip)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1199 ; "\\s\""))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1200 ; (comstart (if comment-start-skip
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1201 ; (concat "\\s<\\|" comment-start-skip)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1202 ; "\\s<"))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1203 ; state prev prevstate)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1204 ; (if loudly (message "Fontifying %s... (syntactically...)" (buffer-name)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1205 ; (save-restriction
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1206 ; (widen)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1207 ; (goto-char start)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1208 ; ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1209 ; ;; Find the state at the `beginning-of-line' before `start'.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1210 ; (if (eq start font-lock-cache-position)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1211 ; ;; Use the cache for the state of `start'.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1212 ; (setq state font-lock-cache-state)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1213 ; ;; Find the state of `start'.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1214 ; (if (null font-lock-beginning-of-syntax-function)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1215 ; ;; Use the state at the previous cache position, if any, or
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1216 ; ;; otherwise calculate from `point-min'.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1217 ; (if (or (null font-lock-cache-position)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1218 ; (< start font-lock-cache-position))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1219 ; (setq state (parse-partial-sexp (point-min) start))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1220 ; (setq state (parse-partial-sexp font-lock-cache-position start
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1221 ; nil nil font-lock-cache-state)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1222 ; ;; Call the function to move outside any syntactic block.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1223 ; (funcall font-lock-beginning-of-syntax-function)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1224 ; (setq state (parse-partial-sexp (point) start)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1225 ; ;; Cache the state and position of `start'.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1226 ; (setq font-lock-cache-state state
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1227 ; font-lock-cache-position start))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1228 ; ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1229 ; ;; If the region starts inside a string, show the extent of it.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1230 ; (if (nth 3 state)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1231 ; (let ((beg (point)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1232 ; (while (and (re-search-forward "\\s\"" end 'move)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1233 ; (nth 3 (parse-partial-sexp beg (point)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1234 ; nil nil state))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1235 ; (put-text-property beg (point) 'face font-lock-string-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1236 ; (setq state (parse-partial-sexp beg (point) nil nil state))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1237 ; ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1238 ; ;; Likewise for a comment.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1239 ; (if (or (nth 4 state) (nth 7 state))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1240 ; (let ((beg (point)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1241 ; (save-restriction
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1242 ; (narrow-to-region (point-min) end)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1243 ; (condition-case nil
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1244 ; (progn
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1245 ; (re-search-backward comstart (point-min) 'move)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1246 ; (forward-comment 1)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1247 ; ;; forward-comment skips all whitespace,
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1248 ; ;; so go back to the real end of the comment.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1249 ; (skip-chars-backward " \t"))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1250 ; (error (goto-char end))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1251 ; (put-text-property beg (point) 'face font-lock-comment-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1252 ; (setq state (parse-partial-sexp beg (point) nil nil state))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1253 ; ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1254 ; ;; Find each interesting place between here and `end'.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1255 ; (while (and (< (point) end)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1256 ; (setq prev (point) prevstate state)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1257 ; (re-search-forward synstart end t)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1258 ; (progn
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1259 ; ;; Clear out the fonts of what we skip over.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1260 ; (remove-text-properties prev (point) '(face nil))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1261 ; ;; Verify the state at that place
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1262 ; ;; so we don't get fooled by \" or \;.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1263 ; (setq state (parse-partial-sexp prev (point)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1264 ; nil nil state))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1265 ; (let ((here (point)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1266 ; (if (or (nth 4 state) (nth 7 state))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1267 ; ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1268 ; ;; We found a real comment start.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1269 ; (let ((beg (match-beginning 0)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1270 ; (goto-char beg)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1271 ; (save-restriction
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1272 ; (narrow-to-region (point-min) end)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1273 ; (condition-case nil
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1274 ; (progn
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1275 ; (forward-comment 1)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1276 ; ;; forward-comment skips all whitespace,
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1277 ; ;; so go back to the real end of the comment.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1278 ; (skip-chars-backward " \t"))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1279 ; (error (goto-char end))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1280 ; (put-text-property beg (point) 'face
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1281 ; font-lock-comment-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1282 ; (setq state (parse-partial-sexp here (point) nil nil state)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1283 ; (if (nth 3 state)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1284 ; ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1285 ; ;; We found a real string start.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1286 ; (let ((beg (match-beginning 0)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1287 ; (while (and (re-search-forward "\\s\"" end 'move)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1288 ; (nth 3 (parse-partial-sexp here (point)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1289 ; nil nil state))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1290 ; (put-text-property beg (point) 'face font-lock-string-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1291 ; (setq state (parse-partial-sexp here (point)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1292 ; nil nil state))))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1293 ; ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1294 ; ;; Make sure `prev' is non-nil after the loop
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1295 ; ;; only if it was set on the very last iteration.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1296 ; (setq prev nil)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1297 ; ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1298 ; ;; Clean up.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1299 ; (and prev (remove-text-properties prev end '(face nil)))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1300
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
1301 (defun font-lock-lisp-like (mode)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
1302 ;; Note: (or (get mode 'font-lock-lisp-like) (string-match ...)) is
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
1303 ;; not enough because the property needs to be able to specify a nil
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
1304 ;; value.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
1305 (if (plist-member (symbol-plist mode) 'font-lock-lisp-like)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
1306 (get mode 'font-lock-lisp-like)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
1307 ;; If the property is not specified, guess. Similar logic exists
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
1308 ;; in add-log, but I think this encompasses more modes.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
1309 (string-match "lisp\\|scheme" (symbol-name mode))))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
1310
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1311 (defun font-lock-fontify-syntactically-region (start end &optional loudly)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1312 "Put proper face on each string and comment between START and END.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1313 START should be at the beginning of a line."
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1314 (if font-lock-keywords-only
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1315 nil
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1316 (when (and font-lock-verbose
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
1317 (>= (- end start) font-lock-message-threshold))
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
1318 (lprogress-display 'font-lock "Fontifying %s... (syntactically)" 5
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
1319 (buffer-name)))
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1320 (font-lock-unfontify-region start end loudly)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1321 (goto-char start)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1322 (if (> end (point-max)) (setq end (point-max)))
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
1323 (let ((lisp-like (font-lock-lisp-like major-mode)))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
1324 (syntactically-sectionize
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
1325 #'(lambda (s e context depth)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
1326 (let (face)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
1327 (cond ((eq context 'string)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
1328 (setq face
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
1329 ;; #### It would be nice if we handled
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
1330 ;; Python and other non-Lisp languages with
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
1331 ;; docstrings correctly.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
1332 (if (and lisp-like (= depth 1))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
1333 ;; really we should only use this if
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
1334 ;; in position 3 depth 1, but that's
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
1335 ;; too expensive to compute.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
1336 'font-lock-doc-string-face
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
1337 'font-lock-string-face)))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
1338 ((or (eq context 'comment)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
1339 (eq context 'block-comment))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
1340 (setq face 'font-lock-comment-face)
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1341 ; ;; Don't fontify whitespace at the beginning of lines;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1342 ; ;; otherwise comment blocks may not line up with code.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1343 ; ;; (This is sometimes a good idea, sometimes not; in any
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1344 ; ;; event it should be in C for speed --jwz)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1345 ; (save-excursion
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1346 ; (goto-char s)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1347 ; (while (prog1 (search-forward "\n" (1- e) 'move)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1348 ; (setq face 'font-lock-comment-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1349 ; (setq e (point)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1350 ; (skip-chars-forward " \t\n")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1351 ; (setq s (point)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1352 ))
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
1353 (font-lock-set-face s e face)))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
1354 start end)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
1355 )))
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1356
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1357 ;;; Additional text property functions.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1358
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1359 ;; The following three text property functions are not generally available (and
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1360 ;; it's not certain that they should be) so they are inlined for speed.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1361 ;; The case for `fillin-text-property' is simple; it may or not be generally
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1362 ;; useful. (Since it is used here, it is useful in at least one place.;-)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1363 ;; However, the case for `append-text-property' and `prepend-text-property' is
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1364 ;; more complicated. Should they remove duplicate property values or not? If
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1365 ;; so, should the first or last duplicate item remain? Or the one that was
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1366 ;; added? In our implementation, the first duplicate remains.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1367
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1368 ;; XEmacs: modified all these functions to use
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1369 ;; `put-nonduplicable-text-property' instead of `put-text-property', and
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1370 ;; the first one to take both SETPROP and MARKPROP, in accordance with the
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1371 ;; changed definitions of `font-lock-any-faces-p' and `font-lock-set-face'.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1372
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1373 (defsubst font-lock-fillin-text-property (start end setprop markprop value &optional object)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1374 "Fill in one property of the text from START to END.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1375 Arguments PROP and VALUE specify the property and value to put where none are
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1376 already in place. Therefore existing property values are not overwritten.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1377 Optional argument OBJECT is the string or buffer containing the text."
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1378 (let ((start (text-property-any start end markprop nil object)) next)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1379 (while start
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1380 (setq next (next-single-property-change start markprop object end))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1381 (put-nonduplicable-text-property start next setprop value object)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1382 (put-nonduplicable-text-property start next markprop value object)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1383 (setq start (text-property-any next end markprop nil object)))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1384
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1385 ;; This function (from simon's unique.el) is rewritten and inlined for speed.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1386 ;(defun unique (list function)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1387 ; "Uniquify LIST, deleting elements using FUNCTION.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1388 ;Return the list with subsequent duplicate items removed by side effects.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1389 ;FUNCTION is called with an element of LIST and a list of elements from LIST,
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1390 ;and should return the list of elements with occurrences of the element removed,
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1391 ;i.e., a function such as `delete' or `delq'.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1392 ;This function will work even if LIST is unsorted. See also `uniq'."
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1393 ; (let ((list list))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1394 ; (while list
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1395 ; (setq list (setcdr list (funcall function (car list) (cdr list))))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1396 ; list)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1397
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1398 (defsubst font-lock-unique (list)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1399 "Uniquify LIST, deleting elements using `delq'.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1400 Return the list with subsequent duplicate items removed by side effects."
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1401 (let ((list list))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1402 (while list
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1403 (setq list (setcdr list (delq (car list) (cdr list))))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1404 list)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1405
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1406 ;; A generalisation of `facemenu-add-face' for any property, but without the
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1407 ;; removal of inactive faces via `facemenu-discard-redundant-faces' and special
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1408 ;; treatment of `default'. Uses `unique' to remove duplicate property values.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1409 (defsubst font-lock-prepend-text-property (start end prop value &optional object)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1410 "Prepend to one property of the text from START to END.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1411 Arguments PROP and VALUE specify the property and value to prepend to the value
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1412 already in place. The resulting property values are always lists, and unique.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1413 Optional argument OBJECT is the string or buffer containing the text."
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1414 (let ((val (if (listp value) value (list value))) next prev)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1415 (while (/= start end)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1416 (setq next (next-single-property-change start prop object end)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1417 prev (get-text-property start prop object))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1418 (put-text-property
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1419 start next prop
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1420 (font-lock-unique (append val (if (listp prev) prev (list prev))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1421 object)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1422 (setq start next))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1423
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1424 (defsubst font-lock-append-text-property (start end prop value &optional object)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1425 "Append to one property of the text from START to END.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1426 Arguments PROP and VALUE specify the property and value to append to the value
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1427 already in place. The resulting property values are always lists, and unique.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1428 Optional argument OBJECT is the string or buffer containing the text."
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1429 (let ((val (if (listp value) value (list value))) next prev)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1430 (while (/= start end)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1431 (setq next (next-single-property-change start prop object end)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1432 prev (get-text-property start prop object))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1433 (put-text-property
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1434 start next prop
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1435 (font-lock-unique (append (if (listp prev) prev (list prev)) val))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1436 object)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1437 (setq start next))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1438
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1439 ;;; Regexp fontification functions.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1440
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1441 (defsubst font-lock-apply-highlight (highlight)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1442 "Apply HIGHLIGHT following a match.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1443 HIGHLIGHT should be of the form MATCH-HIGHLIGHT, see `font-lock-keywords'."
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1444 (let* ((match (nth 0 highlight))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1445 (start (match-beginning match)) (end (match-end match))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1446 (override (nth 2 highlight)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1447 (let ((newface (nth 1 highlight)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1448 (or (symbolp newface)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1449 (setq newface (eval newface)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1450 (cond ((not start)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1451 ;; No match but we might not signal an error.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1452 (or (nth 3 highlight)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1453 (error "No match %d in highlight %S" match highlight)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1454 ((= start end) nil)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1455 ((not override)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1456 ;; Cannot override existing fontification.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1457 (or (font-lock-any-faces-p start end)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1458 (font-lock-set-face start end newface)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1459 ((eq override t)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1460 ;; Override existing fontification.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1461 (font-lock-set-face start end newface))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1462 ((eq override 'keep)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1463 ;; Keep existing fontification.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1464 (font-lock-fillin-text-property start end 'face 'font-lock
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1465 newface))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1466 ((eq override 'prepend)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1467 ;; Prepend to existing fontification.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1468 (font-lock-prepend-text-property start end 'face newface))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1469 ((eq override 'append)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1470 ;; Append to existing fontification.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1471 (font-lock-append-text-property start end 'face newface))))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1472
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1473 (defsubst font-lock-fontify-anchored-keywords (keywords limit)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1474 "Fontify according to KEYWORDS until LIMIT.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1475 KEYWORDS should be of the form MATCH-ANCHORED, see `font-lock-keywords',
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1476 LIMIT can be modified by the value of its PRE-MATCH-FORM."
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1477 (let ((matcher (nth 0 keywords)) (lowdarks (nthcdr 3 keywords)) highlights
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1478 ;; Evaluate PRE-MATCH-FORM.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1479 (pre-match-value (eval (nth 1 keywords))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1480 ;; Set LIMIT to value of PRE-MATCH-FORM or the end of line.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1481 (if (and (numberp pre-match-value) (> pre-match-value (point)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1482 (setq limit pre-match-value)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1483 (save-excursion (end-of-line) (setq limit (point))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1484 (save-match-data
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1485 ;; Find an occurrence of `matcher' before `limit'.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1486 (while (if (stringp matcher)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1487 (re-search-forward matcher limit t)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1488 (funcall matcher limit))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1489 ;; Apply each highlight to this instance of `matcher'.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1490 (setq highlights lowdarks)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1491 (while highlights
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1492 (font-lock-apply-highlight (car highlights))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1493 (setq highlights (cdr highlights)))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1494 ;; Evaluate POST-MATCH-FORM.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1495 (eval (nth 2 keywords))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1496
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1497 (defun font-lock-fontify-keywords-region (start end &optional loudvar)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1498 "Fontify according to `font-lock-keywords' between START and END.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1499 START should be at the beginning of a line."
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1500 (let ((loudly (and font-lock-verbose
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1501 (>= (- end start) font-lock-message-threshold))))
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
1502 (let* ((case-fold-search font-lock-keywords-case-fold-search)
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
1503 (keywords (cdr (if (eq (car-safe font-lock-keywords) t)
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
1504 font-lock-keywords
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
1505 (font-lock-compile-keywords))))
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
1506 (bufname (buffer-name))
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
1507 (progress 5) (old-progress 5)
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
1508 (iter 0)
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
1509 (nkeywords (length keywords))
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
1510 keyword matcher highlights)
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1511 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1512 ;; Fontify each item in `font-lock-keywords' from `start' to `end'.
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
1513 ;; In order to measure progress accurately we need to know how
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
1514 ;; many keywords we have and how big the region is. Then progress
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
1515 ;; is ((pos - start)/ (end - start) * nkeywords
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
1516 ;; + iteration / nkeywords) * 100
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1517 (while keywords
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1518 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1519 ;; Find an occurrence of `matcher' from `start' to `end'.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1520 (setq keyword (car keywords) matcher (car keyword))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1521 (goto-char start)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1522 (while (and (< (point) end)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1523 (if (stringp matcher)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1524 (re-search-forward matcher end t)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1525 (funcall matcher end)))
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
1526 ;; calculate progress
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
1527 (setq progress
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
1528 (+ (/ (* (- (point) start) 95) (* (- end start) nkeywords))
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
1529 (/ (* iter 95) nkeywords) 5))
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
1530 (when (and loudly (> progress old-progress))
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
1531 (lprogress-display 'font-lock "Fontifying %s... (regexps)"
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
1532 progress bufname))
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
1533 (setq old-progress progress)
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1534 ;; Apply each highlight to this instance of `matcher', which may be
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1535 ;; specific highlights or more keywords anchored to `matcher'.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1536 (setq highlights (cdr keyword))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1537 (while highlights
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1538 (if (numberp (car (car highlights)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1539 (let ((end (match-end (car (car highlights)))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1540 (font-lock-apply-highlight (car highlights))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1541 ;; restart search just after the end of the
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1542 ;; keyword so keywords can share bracketing
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1543 ;; expressions.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1544 (and end (goto-char end)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1545 (font-lock-fontify-anchored-keywords (car highlights) end))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1546 (setq highlights (cdr highlights))))
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
1547 (setq iter (1+ iter))
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1548 (setq keywords (cdr keywords))))
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
1549 (if loudly (lprogress-display 'font-lock "Fontifying %s... " 100 (buffer-name)))))
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1550
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1551
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1552 ;; Various functions.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1553
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1554 ;; Turn off other related packages if they're on. I prefer a hook. --sm.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1555 ;; These explicit calls are easier to understand
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1556 ;; because people know what they will do.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1557 ;; A hook is a mystery because it might do anything whatever. --rms.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1558 (defun font-lock-thing-lock-cleanup ()
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1559 (cond ((and (boundp 'fast-lock-mode) fast-lock-mode)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1560 (fast-lock-mode -1))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1561 ((and (boundp 'lazy-lock-mode) lazy-lock-mode)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1562 (lazy-lock-mode -1))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1563 ((and (boundp 'lazy-shot-mode) lazy-shot-mode)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1564 (lazy-shot-mode -1))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1565
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1566 ;; Do something special for these packages after fontifying. I prefer a hook.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1567 (defun font-lock-after-fontify-buffer ()
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1568 (cond ((and (boundp 'fast-lock-mode) fast-lock-mode)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1569 (fast-lock-after-fontify-buffer))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1570 ((and (boundp 'lazy-lock-mode) lazy-lock-mode)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1571 (lazy-lock-after-fontify-buffer))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1572
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1573
221
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
1574 ;; Various functions.
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
1575
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1576 (defun font-lock-compile-keywords (&optional keywords)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1577 ;; Compile `font-lock-keywords' into the form (t KEYWORD ...) where KEYWORD
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1578 ;; is the (MATCHER HIGHLIGHT ...) shown in the variable's doc string.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1579 (let ((keywords (or keywords font-lock-keywords)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1580 (setq font-lock-keywords
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1581 (if (eq (car-safe keywords) t)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1582 keywords
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1583 (cons t (mapcar 'font-lock-compile-keyword keywords))))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1584
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1585 (defun font-lock-compile-keyword (keyword)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1586 (cond ((nlistp keyword) ; Just MATCHER
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1587 (list keyword '(0 font-lock-keyword-face)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1588 ((eq (car keyword) 'eval) ; Specified (eval . FORM)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1589 (font-lock-compile-keyword (eval (cdr keyword))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1590 ((numberp (cdr keyword)) ; Specified (MATCHER . MATCH)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1591 (list (car keyword) (list (cdr keyword) 'font-lock-keyword-face)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1592 ((symbolp (cdr keyword)) ; Specified (MATCHER . FACENAME)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1593 (list (car keyword) (list 0 (cdr keyword))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1594 ((nlistp (nth 1 keyword)) ; Specified (MATCHER . HIGHLIGHT)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1595 (list (car keyword) (cdr keyword)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1596 (t ; Hopefully (MATCHER HIGHLIGHT ...)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1597 keyword)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1598
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1599 (defun font-lock-choose-keywords (keywords level)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1600 ;; Return LEVELth element of KEYWORDS. A LEVEL of nil is equal to a
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1601 ;; LEVEL of 0, a LEVEL of t is equal to (1- (length KEYWORDS)).
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1602 (let ((level (if (not (consp level))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1603 level
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1604 (cdr (or (assq major-mode level) (assq t level))))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1605 (cond ((symbolp keywords)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1606 keywords)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1607 ((numberp level)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1608 (or (nth level keywords) (car (reverse keywords))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1609 ((eq level t)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1610 (car (reverse keywords)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1611 (t
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1612 (car keywords)))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1613
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1614
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1615 ;;; Determining which set of font-lock keywords to use.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1616
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1617 (defun font-lock-find-font-lock-defaults (modesym)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1618 ;; Get the defaults based on the major mode.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1619 (let (raw-defaults)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1620 ;; I want a do-while loop!
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1621 (while (progn
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1622 (setq raw-defaults (get modesym 'font-lock-defaults))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1623 (and raw-defaults (symbolp raw-defaults)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1624 (setq modesym raw-defaults)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1625 )
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1626 raw-defaults))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1627
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1628 (defun font-lock-examine-syntax-table ()
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1629 ; Computes the value of font-lock-keywords-only for this buffer.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1630 (if (eq (syntax-table) (standard-syntax-table))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1631 ;; Assume that modes which haven't bothered to install their own
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1632 ;; syntax table don't do anything syntactically interesting.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1633 ;; Really, the standard-syntax-table shouldn't have comments and
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1634 ;; strings in it, but changing that now might break things.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1635 nil
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1636 ;; else map over the syntax table looking for strings or comments.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1637 (let (got-one)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1638 ;; XEmacs 20.0 ...
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1639 (if (fboundp 'map-syntax-table)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1640 (setq got-one
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1641 (map-syntax-table
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1642 #'(lambda (key value)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1643 (memq (char-syntax-from-code value)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1644 '(?\" ?\< ?\> ?\$)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1645 (syntax-table)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1646 ;; older Emacsen.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1647 (let ((i (1- (length (syntax-table)))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1648 (while (>= i 0)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1649 (if (memq (char-syntax i) '(?\" ?\< ?\> ?\$))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1650 (setq got-one t i 0))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1651 (setq i (1- i)))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1652 (set (make-local-variable 'font-lock-keywords-only) (not got-one)))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1653
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1654 ;; font-lock-set-defaults is in fontl-hooks.el.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1655
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1656 ;;;###autoload
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1657 (defun font-lock-set-defaults-1 (&optional explicit-defaults)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1658 ;; does everything that font-lock-set-defaults does except
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1659 ;; enable font-lock-mode. This is called by `font-lock-mode'.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1660 ;; Note that the return value is used!
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1661
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1662 (if (and font-lock-defaults-computed (not explicit-defaults))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1663 ;; nothing to do.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1664 nil
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1665
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1666 (or font-lock-keywords
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1667 (let* ((defaults (or (and (not (eq t explicit-defaults))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1668 explicit-defaults)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1669 ;; in case modes decide to set
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1670 ;; `font-lock-defaults' themselves,
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1671 ;; as in FSF Emacs.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1672 font-lock-defaults
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1673 (font-lock-find-font-lock-defaults major-mode)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1674 (keywords (font-lock-choose-keywords
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1675 (nth 0 defaults) font-lock-maximum-decoration)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1676
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1677 ;; Keywords?
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1678 (setq font-lock-keywords (if (fboundp keywords)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1679 (funcall keywords)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1680 (eval keywords)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1681 (or font-lock-keywords
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1682 ;; older way:
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1683 ;; try to look for a variable `foo-mode-font-lock-keywords',
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1684 ;; or similar.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1685 (let ((major (symbol-name major-mode))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1686 (try #'(lambda (n)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1687 (if (stringp n) (setq n (intern-soft n)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1688 (if (and n
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1689 (boundp n))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1690 n
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1691 nil))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1692 (setq font-lock-keywords
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1693 (symbol-value
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1694 (or (funcall try (get major-mode 'font-lock-keywords))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1695 (funcall try (concat major "-font-lock-keywords"))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1696 (funcall try (and (string-match "-mode\\'" major)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1697 (concat (substring
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1698 major 0
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1699 (match-beginning 0))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1700 "-font-lock-keywords")))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1701 'font-lock-keywords)))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1702
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1703 ;; Case fold?
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1704 (if (>= (length defaults) 3)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1705 (setq font-lock-keywords-case-fold-search (nth 2 defaults))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1706 ;; older way:
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1707 ;; look for a property 'font-lock-keywords-case-fold-search on
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1708 ;; the major-mode symbol.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1709 (let* ((nonexist (make-symbol ""))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1710 (value (get major-mode 'font-lock-keywords-case-fold-search
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1711 nonexist)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1712 (if (not (eq nonexist value))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1713 (setq font-lock-keywords-case-fold-search value))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1714
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1715 ;; Syntactic?
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1716 (if (>= (length defaults) 2)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1717 (setq font-lock-keywords-only (nth 1 defaults))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1718 ;; older way:
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1719 ;; cleverly examine the syntax table.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1720 (font-lock-examine-syntax-table))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1721
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1722 ;; Syntax table?
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1723 (if (nth 3 defaults)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1724 (let ((slist (nth 3 defaults)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1725 (setq font-lock-syntax-table
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1726 (copy-syntax-table (syntax-table)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1727 (while slist
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1728 (modify-syntax-entry (car (car slist)) (cdr (car slist))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1729 font-lock-syntax-table)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1730 (setq slist (cdr slist)))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1731
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1732 ;; Syntax function?
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1733 (cond (defaults
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1734 (setq font-lock-beginning-of-syntax-function
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1735 (nth 4 defaults)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1736 (t
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1737 ;; older way:
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1738 ;; defaults not specified at all, so use `beginning-of-defun'.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1739 (setq font-lock-beginning-of-syntax-function
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1740 'beginning-of-defun)))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1741
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1742 (setq font-lock-defaults-computed t)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1743
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1744
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1745 ;;;;;;;;;;;;;;;;;;;;;; keywords ;;;;;;;;;;;;;;;;;;;;;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1746
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1747 ;;; Various major-mode interfaces.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1748 ;;; Probably these should go in with the source of the respective major modes.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1749
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1750 ;; The defaults and keywords listed here should perhaps be moved into
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1751 ;; mode-specific files.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1752
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1753 ;; For C and Lisp modes we use `beginning-of-defun', rather than nil,
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1754 ;; for SYNTAX-BEGIN. Thus the calculation of the cache is usually
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1755 ;; faster but not infallible, so we risk mis-fontification. --sm.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1756
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1757 (put 'c-mode 'font-lock-defaults
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1758 '((c-font-lock-keywords
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1759 c-font-lock-keywords-1 c-font-lock-keywords-2 c-font-lock-keywords-3)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1760 nil nil ((?_ . "w")) beginning-of-defun))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1761 (put 'c++-c-mode 'font-lock-defaults 'c-mode)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1762 (put 'elec-c-mode 'font-lock-defaults 'c-mode)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1763
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1764 (put 'c++-mode 'font-lock-defaults
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1765 '((c++-font-lock-keywords
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1766 c++-font-lock-keywords-1 c++-font-lock-keywords-2
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1767 c++-font-lock-keywords-3)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1768 nil nil ((?_ . "w") (?~ . "w")) beginning-of-defun))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1769
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1770 (put 'java-mode 'font-lock-defaults
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1771 '((java-font-lock-keywords
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1772 java-font-lock-keywords-1 java-font-lock-keywords-2
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1773 java-font-lock-keywords-3)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1774 nil nil ((?_ . "w")) beginning-of-defun
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1775 (font-lock-mark-block-function . mark-defun)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1776
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1777 (put 'lisp-mode 'font-lock-defaults
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1778 '((lisp-font-lock-keywords
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1779 lisp-font-lock-keywords-1 lisp-font-lock-keywords-2)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1780 nil nil
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1781 ((?: . "w") (?- . "w") (?* . "w") (?+ . "w") (?. . "w") (?< . "w")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1782 (?> . "w") (?= . "w") (?! . "w") (?? . "w") (?$ . "w") (?% . "w")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1783 (?_ . "w") (?& . "w") (?~ . "w") (?^ . "w") (?/ . "w"))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1784 beginning-of-defun))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1785 (put 'emacs-lisp-mode 'font-lock-defaults 'lisp-mode)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1786 (put 'lisp-interaction-mode 'font-lock-defaults 'lisp-mode)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1787
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1788 (put 'scheme-mode 'font-lock-defaults
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1789 '(scheme-font-lock-keywords
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1790 nil t
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1791 ((?: . "w") (?- . "w") (?* . "w") (?+ . "w") (?. . "w") (?< . "w")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1792 (?> . "w") (?= . "w") (?! . "w") (?? . "w") (?$ . "w") (?% . "w")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1793 (?_ . "w") (?& . "w") (?~ . "w") (?^ . "w") (?/ . "w"))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1794 beginning-of-defun))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1795 (put 'inferior-scheme-mode 'font-lock-defaults 'scheme-mode)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1796 (put 'scheme-interaction-mode 'font-lock-defaults 'scheme-mode)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1797
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1798 (put 'tex-mode 'font-lock-defaults
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1799 ;; For TeX modes we could use `backward-paragraph' for the same reason.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1800 '(tex-font-lock-keywords nil nil ((?$ . "\""))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1801 ;; the nine billion names of TeX mode...
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1802 (put 'bibtex-mode 'font-lock-defaults 'tex-mode)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1803 (put 'plain-tex-mode 'font-lock-defaults 'tex-mode)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1804 (put 'slitex-tex-mode 'font-lock-defaults 'tex-mode)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1805 (put 'SliTeX-mode 'font-lock-defaults 'tex-mode)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1806 (put 'slitex-mode 'font-lock-defaults 'tex-mode)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1807 (put 'latex-tex-mode 'font-lock-defaults 'tex-mode)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1808 (put 'LaTex-tex-mode 'font-lock-defaults 'tex-mode)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1809 (put 'latex-mode 'font-lock-defaults 'tex-mode)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1810 (put 'LaTeX-mode 'font-lock-defaults 'tex-mode)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1811 (put 'japanese-LaTeX-mode 'font-lock-defaults 'tex-mode)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1812 (put 'japanese-SliTeX-mode 'font-lock-defaults 'tex-mode)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1813 (put 'FoilTeX-mode 'font-lock-defaults 'tex-mode)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1814 (put 'LATeX-MoDe 'font-lock-defaults 'tex-mode)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1815 (put 'lATEx-mODe 'font-lock-defaults 'tex-mode)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1816 ;; ok, this is getting a bit silly ...
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1817 (put 'eDOm-xETAl 'font-lock-defaults 'tex-mode)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1818
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1819 ;;; Various regexp information shared by several modes.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1820 ;;; Information specific to a single mode should go in its load library.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1821
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1822 (defconst lisp-font-lock-keywords-1
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1823 (list
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1824 ;; Anything not a variable or type declaration is fontified as a function.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1825 ;; It would be cleaner to allow preceding whitespace, but it would also be
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1826 ;; about five times slower.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1827 (list (concat "^(\\(def\\("
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1828 ;; Variable declarations.
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 221
diff changeset
1829 "\\(const\\(\\|ant\\)\\|ine-key\\(\\|-after\\)\\|var\\|custom\\)\\|"
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1830 ;; Structure declarations.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1831 "\\(class\\|struct\\|type\\)\\|"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1832 ;; Everything else is a function declaration.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1833 "\\([^ \t\n\(\)]+\\)"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1834 "\\)\\)\\>"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1835 ;; Any whitespace and declared object.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1836 "[ \t'\(]*"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1837 "\\([^ \t\n\)]+\\)?")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1838 '(1 font-lock-keyword-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1839 '(8 (cond ((match-beginning 3) 'font-lock-variable-name-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1840 ((match-beginning 6) 'font-lock-type-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1841 (t 'font-lock-function-name-face))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1842 nil t))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1843 )
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1844 "Subdued level highlighting Lisp modes.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1845
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1846 (defconst lisp-font-lock-keywords-2
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1847 (append lisp-font-lock-keywords-1
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1848 (list
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1849 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1850 ;; Control structures. ELisp and CLisp combined.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1851 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1852 ;;(regexp-opt
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1853 ;; '("cond" "if" "while" "let" "let*" "prog" "progn" "prog1"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1854 ;; "prog2" "progv" "catch" "throw" "save-restriction"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1855 ;; "save-excursion" "save-window-excursion"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1856 ;; "save-current-buffer" "with-current-buffer"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1857 ;; "with-temp-file" "with-temp-buffer" "with-output-to-string"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1858 ;; "with-string-as-buffer-contents"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1859 ;; "save-selected-window" "save-match-data" "unwind-protect"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1860 ;; "condition-case" "track-mouse" "autoload"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1861 ;; "eval-after-load" "eval-and-compile" "eval-when-compile"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1862 ;; "when" "unless" "do" "dolist" "dotimes" "flet" "labels"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1863 ;; "lambda" "return" "return-from"))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1864 (cons
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1865 (concat
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1866 "(\\("
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1867 "autoload\\|c\\(atch\\|ond\\(ition-case\\)?\\)\\|do\\(list\\|"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1868 "times\\)?\\|eval-\\(a\\(fter-load\\|nd-compile\\)\\|when-compile\\)\\|"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1869 "flet\\|if\\|l\\(a\\(bels\\|mbda\\)\\|et\\*?\\)\\|"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1870 "prog[nv12\\*]?\\|return\\(-from\\)?\\|save-\\(current-buffer\\|"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1871 "excursion\\|match-data\\|restriction\\|selected-window\\|"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1872 "window-excursion\\)\\|t\\(hrow\\|rack-mouse\\)\\|un\\(less\\|"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1873 "wind-protect\\)\\|w\\(h\\(en\\|ile\\)\\|ith-\\(current-buffer\\|"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1874 "output-to-string\\|string-as-buffer-contents\\|temp-\\(buffer\\|"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1875 "file\\)\\)\\)"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1876 "\\)\\>") 1)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1877 ;;
221
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
1878 ;; Feature symbols as references.
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
1879 '("(\\(featurep\\|provide\\|require\\)\\>[ \t']*\\(\\sw+\\)?"
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
1880 (1 font-lock-keyword-face) (2 font-lock-reference-face nil t))
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
1881 ;;
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1882 ;; Words inside \\[] tend to be for `substitute-command-keys'.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1883 '("\\\\\\\\\\[\\(\\sw+\\)]" 1 font-lock-reference-face prepend)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1884 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1885 ;; Words inside `' tend to be symbol names.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1886 '("`\\(\\sw\\sw+\\)'" 1 font-lock-reference-face prepend)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1887 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1888 ;; CLisp `:' keywords as references.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1889 '("\\<:\\sw+\\>" 0 font-lock-reference-face prepend)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1890 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1891 ;; ELisp and CLisp `&' keywords as types.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1892 '("\\<\\&\\(optional\\|rest\\|whole\\)\\>" . font-lock-type-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1893 ))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1894 "Gaudy level highlighting for Lisp modes.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1895
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1896 (defvar lisp-font-lock-keywords lisp-font-lock-keywords-1
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1897 "Default expressions to highlight in Lisp modes.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1898
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1899 ;; The previous version, before replacing it with the FSF version.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1900 ;(defconst lisp-font-lock-keywords-1 (purecopy
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1901 ; '(;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1902 ; ;; highlight defining forms. This doesn't work too nicely for
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1903 ; ;; (defun (setf foo) ...) but it does work for (defvar foo) which
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1904 ; ;; is more important.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1905 ; ("^(def[-a-z]+\\s +\\([^ \t\n\)]+\\)" 1 font-lock-function-name-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1906 ; ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1907 ; ;; highlight CL keywords (three clauses seems faster than one)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1908 ; ("\\s :\\(\\(\\sw\\|\\s_\\)+\\)\\>" . 1)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1909 ; ("(:\\(\\(\\sw\\|\\s_\\)+\\)\\>" . 1)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1910 ; ("':\\(\\(\\sw\\|\\s_\\)+\\)\\>" . 1)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1911 ; ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1912 ; ;; this is highlights things like (def* (setf foo) (bar baz)), but may
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1913 ; ;; be slower (I haven't really thought about it)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1914 ;; ("^(def[-a-z]+\\s +\\(\\s(\\S)*\\s)\\|\\S(\\S *\\)"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1915 ;; 1 font-lock-function-name-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1916 ; ))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1917 ; "For consideration as a value of `lisp-font-lock-keywords'.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1918 ;This does fairly subdued highlighting.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1919 ;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1920 ;(defconst lisp-font-lock-keywords-2 (purecopy
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1921 ; (append lisp-font-lock-keywords-1
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1922 ; '(;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1923 ; ;; Highlight control structures
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1924 ; ("(\\(cond\\|if\\|when\\|unless\\|[ec]?\\(type\\)?case\\)[ \t\n]" . 1)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1925 ; ("(\\(while\\|do\\|let\\*?\\|flet\\|labels\\|prog[nv12*]?\\)[ \t\n]" . 1)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1926 ; ("(\\(do\\*\\|dotimes\\|dolist\\|loop\\)[ \t\n]" . 1)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1927 ; ("(\\(catch\\|\\throw\\|block\\|return\\|return-from\\)[ \t\n]" . 1)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1928 ; ("(\\(save-restriction\\|save-window-restriction\\)[ \t\n]" . 1)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1929 ; ("(\\(save-excursion\\|unwind-protect\\|condition-case\\)[ \t\n]" . 1)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1930 ; ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1931 ; ;; highlight function names in emacs-lisp docstrings (in the syntax
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1932 ; ;; that substitute-command-keys understands.)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1933 ; ("\\\\\\\\\\[\\([^]\\\n]+\\)]" 1 font-lock-keyword-face t)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1934 ; ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1935 ; ;; highlight words inside `' which tend to be function names
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1936 ; ("`\\([-a-zA-Z0-9_][-a-zA-Z0-9_][-a-zA-Z0-9_.]+\\)'"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1937 ; 1 font-lock-keyword-face t)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1938 ; )))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1939 ; "For consideration as a value of `lisp-font-lock-keywords'.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1940 ;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1941 ;This does a lot more highlighting.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1942
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1943 (defvar scheme-font-lock-keywords
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1944 (eval-when-compile
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1945 (list
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1946 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1947 ;; Declarations. Hannes Haug <hannes.haug@student.uni-tuebingen.de> says
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1948 ;; this works for SOS, STklos, SCOOPS, Meroon and Tiny CLOS.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1949 (list (concat "(\\(define\\("
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1950 ;; Function names.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1951 "\\(\\|-\\(generic\\(\\|-procedure\\)\\|method\\)\\)\\|"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1952 ;; Macro names, as variable names. A bit dubious, this.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1953 "\\(-syntax\\)\\|"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1954 ;; Class names.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1955 "\\(-class\\)"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1956 "\\)\\)\\>"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1957 ;; Any whitespace and declared object.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1958 "[ \t]*(?"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1959 "\\(\\sw+\\)?")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1960 '(1 font-lock-keyword-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1961 '(8 (cond ((match-beginning 3) 'font-lock-function-name-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1962 ((match-beginning 6) 'font-lock-variable-name-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1963 (t 'font-lock-type-face))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1964 nil t))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1965 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1966 ;; Control structures.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1967 ;(regexp-opt '("begin" "call-with-current-continuation" "call/cc"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1968 ; "call-with-input-file" "call-with-output-file" "case" "cond"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1969 ; "do" "else" "for-each" "if" "lambda"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1970 ; "let\\*?" "let-syntax" "letrec" "letrec-syntax"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1971 ; ;; Hannes Haug <hannes.haug@student.uni-tuebingen.de> wants:
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1972 ; "and" "or" "delay"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1973 ; ;; Stefan Monnier <stefan.monnier@epfl.ch> says don't bother:
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1974 ; ;;"quasiquote" "quote" "unquote" "unquote-splicing"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1975 ; "map" "syntax" "syntax-rules"))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1976 (cons
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1977 (concat "(\\("
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1978 "and\\|begin\\|c\\(a\\(ll\\(-with-\\(current-continuation\\|"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1979 "input-file\\|output-file\\)\\|/cc\\)\\|se\\)\\|ond\\)\\|"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1980 "d\\(elay\\|o\\)\\|else\\|for-each\\|if\\|"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1981 "l\\(ambda\\|et\\(-syntax\\|\\*?\\|rec\\(\\|-syntax\\)\\)\\)\\|"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1982 "map\\|or\\|syntax\\(\\|-rules\\)"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1983 "\\)\\>") 1)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1984 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1985 ;; David Fox <fox@graphics.cs.nyu.edu> for SOS/STklos class specifiers.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1986 '("\\<<\\sw+>\\>" . font-lock-type-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1987 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1988 ;; Scheme `:' keywords as references.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1989 '("\\<:\\sw+\\>" . font-lock-reference-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1990 ))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1991 "Default expressions to highlight in Scheme modes.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1992
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1993 ;; The previous version, before replacing it with the FSF version.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1994 ;(defconst scheme-font-lock-keywords (purecopy
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1995 ; '(("(define[ \t]+(?\\([^ \t\n\)]+\\)" 1 font-lock-function-name-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1996 ; ("(\\(cond\\|lambda\\|begin\\|if\\|else\\|case\\|do\\)[ \t\n]" . 1)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1997 ; ("(\\(\\|letrec\\|let\\*?\\|set!\\|and\\|or\\)[ \t\n]" . 1)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1998 ; ("(\\(quote\\|unquote\\|quasiquote\\|unquote-splicing\\)[ \t\n]" . 1)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
1999 ; ("(\\(syntax\\|syntax-rules\\|define-syntax\\|let-syntax\\|letrec-syntax\\)[ \t\n]" . 1)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2000 ; "Expressions to highlight in Scheme buffers.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2001
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2002 (defconst c-font-lock-keywords-1 nil
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2003 "Subdued level highlighting for C modes.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2004
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2005 (defconst c-font-lock-keywords-2 nil
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2006 "Medium level highlighting for C modes.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2007
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2008 (defconst c-font-lock-keywords-3 nil
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2009 "Gaudy level highlighting for C modes.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2010
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2011 (defconst c++-font-lock-keywords-1 nil
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2012 "Subdued level highlighting for C++ modes.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2013
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2014 (defconst c++-font-lock-keywords-2 nil
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2015 "Medium level highlighting for C++ modes.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2016
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2017 (defconst c++-font-lock-keywords-3 nil
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2018 "Gaudy level highlighting for C++ modes.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2019
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2020 (defun font-lock-match-c++-style-declaration-item-and-skip-to-next (limit)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2021 ;; Match, and move over, any declaration/definition item after point.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2022 ;; The expect syntax of an item is "word" or "word::word", possibly ending
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2023 ;; with optional whitespace and a "(". Everything following the item (but
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2024 ;; belonging to it) is expected to by skip-able by `forward-sexp', and items
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2025 ;; are expected to be separated with a "," or ";".
294
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 278
diff changeset
2026 (if (looking-at "[ \t*&]*\\(\\(?:\\sw\\|\\s_\\)+\\)\\(::\\(\\(?:\\sw\\|\\s_\\)+\\)\\)?[ \t]*\\((\\)?")
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2027 (save-match-data
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2028 (condition-case nil
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2029 (save-restriction
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2030 ;; Restrict to the end of line, currently guaranteed to be LIMIT.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2031 (narrow-to-region (point-min) limit)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2032 (goto-char (match-end 1))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2033 ;; Move over any item value, etc., to the next item.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2034 (while (not (looking-at "[ \t]*\\([,;]\\|$\\)"))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2035 (goto-char (or (scan-sexps (point) 1) (point-max))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2036 (goto-char (match-end 0)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2037 (error t)))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2038
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2039 (let ((c-keywords
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2040 ; ("break" "continue" "do" "else" "for" "if" "return" "switch" "while")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2041 "break\\|continue\\|do\\|else\\|for\\|if\\|return\\|switch\\|while")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2042 (c-type-types
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2043 ; ("auto" "extern" "register" "static" "typedef" "struct" "union" "enum"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2044 ; "signed" "unsigned" "short" "long" "int" "char" "float" "double"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2045 ; "void" "volatile" "const")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2046 (concat "auto\\|c\\(har\\|onst\\)\\|double\\|e\\(num\\|xtern\\)\\|"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2047 "float\\|int\\|long\\|register\\|"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2048 "s\\(hort\\|igned\\|t\\(atic\\|ruct\\)\\)\\|typedef\\|"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2049 "un\\(ion\\|signed\\)\\|vo\\(id\\|latile\\)")) ; 6 ()s deep.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2050 (c++-keywords
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2051 ; ("break" "continue" "do" "else" "for" "if" "return" "switch" "while"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2052 ; "asm" "catch" "delete" "new" "operator" "sizeof" "this" "throw" "try"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2053 ; "protected" "private" "public")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2054 (concat "asm\\|break\\|c\\(atch\\|ontinue\\)\\|d\\(elete\\|o\\)\\|"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2055 "else\\|for\\|if\\|new\\|"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2056 "p\\(r\\(ivate\\|otected\\)\\|ublic\\)\\|return\\|"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2057 "s\\(izeof\\|witch\\)\\|t\\(h\\(is\\|row\\)\\|ry\\)\\|while"))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2058 (c++-type-types
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2059 ; ("auto" "extern" "register" "static" "typedef" "struct" "union" "enum"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2060 ; "signed" "unsigned" "short" "long" "int" "char" "float" "double"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2061 ; "void" "volatile" "const" "class" "inline" "friend" "bool"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2062 ; "virtual" "complex" "template")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2063 (concat "auto\\|bool\\|c\\(har\\|lass\\|o\\(mplex\\|nst\\)\\)\\|"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2064 "double\\|e\\(num\\|xtern\\)\\|f\\(loat\\|riend\\)\\|"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2065 "in\\(line\\|t\\)\\|long\\|register\\|"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2066 "s\\(hort\\|igned\\|t\\(atic\\|ruct\\)\\)\\|"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2067 "t\\(emplate\\|ypedef\\)\\|un\\(ion\\|signed\\)\\|"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2068 "v\\(irtual\\|o\\(id\\|latile\\)\\)")) ; 11 ()s deep.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2069 (ctoken "\\(\\sw\\|\\s_\\|[:~*&]\\)+")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2070 )
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2071 (setq c-font-lock-keywords-1
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2072 (list
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2073 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2074 ;; These are all anchored at the beginning of line for speed.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2075 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2076 ;; Fontify function name definitions (GNU style; without type on line).
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2077
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2078 ;; In FSF this has the simpler definition of "\\sw+" for ctoken.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2079 ;; I'm not sure if ours is more correct.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2080 ;; This is a subset of the next rule, and is slower when present. --dmoore
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2081 ;; (list (concat "^\\(" ctoken "\\)[ \t]*(") 1 'font-lock-function-name-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2082 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2083 ;; fontify the names of functions being defined.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2084 ;; FSF doesn't have this but I think it should be fast for us because
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2085 ;; our regexp routines are more intelligent than FSF's about handling
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2086 ;; anchored-at-newline. (When I added this hack in regex.c, it halved
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2087 ;; the time to do the regexp phase of font-lock for a C file!) Not
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2088 ;; including this discriminates against those who don't follow the
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2089 ;; GNU coding style. --ben
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2090 ;; x?x?x?y?z should always be: (x(xx?)?)?y?z --dmoore
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2091 (list (concat
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2092 "^\\("
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2093 "\\(" ctoken "[ \t]+\\)" ; type specs; there can be no
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2094 "\\("
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2095 "\\(" ctoken "[ \t]+\\)" ; more than 3 tokens, right?
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2096 "\\(" ctoken "[ \t]+\\)"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2097 "?\\)?\\)?"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2098 "\\([*&]+[ \t]*\\)?" ; pointer
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2099 "\\(" ctoken "\\)[ \t]*(") ; name
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2100 10 'font-lock-function-name-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2101 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2102 ;; This is faster but not by much. I don't see why not.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2103 ;(list (concat "^\\(" ctoken "\\)[ \t]*(") 1 'font-lock-function-name-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2104 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2105 ;; Added next two; they're both jolly-good fastmatch candidates so
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2106 ;; should be fast. --ben
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2107 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2108 ;; Fontify structure names (in structure definition form).
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2109 (list (concat "^\\(typedef[ \t]+struct\\|struct\\|static[ \t]+struct\\)"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2110 "[ \t]+\\(" ctoken "\\)[ \t]*\\(\{\\|$\\)")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2111 2 'font-lock-function-name-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2112 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2113 ;; Fontify case clauses. This is fast because its anchored on the left.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2114 '("case[ \t]+\\(\\(\\sw\\|\\s_\\)+\\)[ \t]+:". 1)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2115 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2116 '("\\<\\(default\\):". 1)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2117 ;; Fontify filenames in #include <...> preprocessor directives as strings.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2118 '("^#[ \t]*include[ \t]+\\(<[^>\"\n]+>\\)" 1 font-lock-string-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2119 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2120 ;; Fontify function macro names.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2121 '("^#[ \t]*define[ \t]+\\(\\(\\sw+\\)(\\)" 2 font-lock-function-name-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2122 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2123 ;; Fontify symbol names in #if ... defined preprocessor directives.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2124 '("^#[ \t]*if\\>"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2125 ("\\<\\(defined\\)\\>[ \t]*(?\\(\\sw+\\)?" nil nil
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2126 (1 font-lock-preprocessor-face) (2 font-lock-variable-name-face nil t)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2127 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2128 ;; Fontify symbol names in #elif ... defined preprocessor directives.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2129 '("^#[ \t]*elif\\>"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2130 ("\\<\\(defined\\)\\>[ \t]*(?\\(\\sw+\\)?" nil nil
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2131 (1 font-lock-preprocessor-face) (2 font-lock-variable-name-face nil t)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2132 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2133 ;; Fontify otherwise as symbol names, and the preprocessor directive names.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2134 '("^\\(#[ \t]*[a-z]+\\)\\>[ \t]*\\(\\sw+\\)?"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2135 (1 font-lock-preprocessor-face) (2 font-lock-variable-name-face nil t))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2136 ))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2137
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2138 (setq c-font-lock-keywords-2
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2139 (append c-font-lock-keywords-1
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2140 (list
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2141 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2142 ;; Simple regexps for speed.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2143 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2144 ;; Fontify all type specifiers.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2145 (cons (concat "\\<\\(" c-type-types "\\)\\>") 'font-lock-type-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2146 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2147 ;; Fontify all builtin keywords (except case, default and goto; see below).
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2148 (cons (concat "\\<\\(" c-keywords "\\)\\>") 'font-lock-keyword-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2149 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2150 ;; Fontify case/goto keywords and targets, and case default/goto tags.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2151 '("\\<\\(case\\|goto\\)\\>[ \t]*\\([^ \t\n:;]+\\)?"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2152 (1 font-lock-keyword-face) (2 font-lock-reference-face nil t))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2153 '("^[ \t]*\\(\\sw+\\)[ \t]*:" 1 font-lock-reference-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2154 )))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2155
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2156 (setq c-font-lock-keywords-3
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2157 (append c-font-lock-keywords-2
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2158 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2159 ;; More complicated regexps for more complete highlighting for types.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2160 ;; We still have to fontify type specifiers individually, as C is so hairy.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2161 (list
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2162 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2163 ;; Fontify all storage classes and type specifiers, plus their items.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2164 (list (concat "\\<\\(" c-type-types "\\)\\>"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2165 "\\([ \t*&]+\\sw+\\>\\)*")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2166 ;; Fontify each declaration item.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2167 '(font-lock-match-c++-style-declaration-item-and-skip-to-next
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2168 ;; Start with point after all type specifiers.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2169 (goto-char (or (match-beginning 8) (match-end 1)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2170 ;; Finish with point after first type specifier.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2171 (goto-char (match-end 1))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2172 ;; Fontify as a variable or function name.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2173 (1 (if (match-beginning 4)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2174 font-lock-function-name-face
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2175 font-lock-variable-name-face))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2176 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2177 ;; Fontify structures, or typedef names, plus their items.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2178 '("\\(}\\)[ \t*]*\\sw"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2179 (font-lock-match-c++-style-declaration-item-and-skip-to-next
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2180 (goto-char (match-end 1)) nil
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2181 (1 (if (match-beginning 4)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2182 font-lock-function-name-face
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2183 font-lock-variable-name-face))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2184 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2185 ;; Fontify anything at beginning of line as a declaration or definition.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2186 '("^\\(\\sw+\\)\\>\\([ \t*]+\\sw+\\>\\)*"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2187 (1 font-lock-type-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2188 (font-lock-match-c++-style-declaration-item-and-skip-to-next
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2189 (goto-char (or (match-beginning 2) (match-end 1))) nil
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2190 (1 (if (match-beginning 4)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2191 font-lock-function-name-face
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2192 font-lock-variable-name-face))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2193 )))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2194
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2195 (setq c++-font-lock-keywords-1
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2196 (append
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2197 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2198 ;; The list `c-font-lock-keywords-1' less that for function names.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2199 ;; the simple function form regexp has been removed. --dmoore
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2200 ;;(cdr c-font-lock-keywords-1)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2201 c-font-lock-keywords-1
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2202 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2203 ;; Fontify function name definitions, possibly incorporating class name.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2204 (list
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2205 '("^\\(\\sw+\\)\\(::\\(\\sw+\\)\\)?[ \t]*("
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2206 (1 (if (match-beginning 2)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2207 font-lock-type-face
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2208 font-lock-function-name-face))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2209 (3 (if (match-beginning 2) font-lock-function-name-face) nil t))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2210 )))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2211
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2212 (setq c++-font-lock-keywords-2
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2213 (append c++-font-lock-keywords-1
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2214 (list
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2215 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2216 ;; The list `c-font-lock-keywords-2' for C++ plus operator overloading.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2217 (cons (concat "\\<\\(" c++-type-types "\\)\\>") 'font-lock-type-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2218 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2219 ;; Fontify operator function name overloading.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2220 '("\\<\\(operator\\)\\>[ \t]*\\([][)(><!=+-][][)(><!=+-]?\\)?"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2221 (1 font-lock-keyword-face) (2 font-lock-function-name-face nil t))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2222 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2223 ;; Fontify case/goto keywords and targets, and case default/goto tags.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2224 '("\\<\\(case\\|goto\\)\\>[ \t]*\\([^ \t\n:;]+\\)?"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2225 (1 font-lock-keyword-face) (2 font-lock-reference-face nil t))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2226 '("^[ \t]*\\(\\sw+\\)[ \t]*:[^:]" 1 font-lock-reference-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2227 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2228 ;; Fontify other builtin keywords.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2229 (cons (concat "\\<\\(" c++-keywords "\\)\\>") 'font-lock-keyword-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2230 )))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2231
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2232 (setq c++-font-lock-keywords-3
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2233 (append c++-font-lock-keywords-2
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2234 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2235 ;; More complicated regexps for more complete highlighting for types.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2236 (list
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2237 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2238 ;; Fontify all storage classes and type specifiers, plus their items.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2239 (list (concat "\\<\\(" c++-type-types "\\)\\>"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2240 "\\([ \t*&]+\\sw+\\>\\)*")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2241 ;; Fontify each declaration item.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2242 '(font-lock-match-c++-style-declaration-item-and-skip-to-next
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2243 ;; Start with point after all type specifiers.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2244 (goto-char (or (match-beginning 13) (match-end 1)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2245 ;; Finish with point after first type specifier.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2246 (goto-char (match-end 1))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2247 ;; Fontify as a variable or function name.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2248 (1 (cond ((match-beginning 2) 'font-lock-type-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2249 ((match-beginning 4) 'font-lock-function-name-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2250 (t 'font-lock-variable-name-face)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2251 (3 (if (match-beginning 4)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2252 'font-lock-function-name-face
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2253 'font-lock-variable-name-face) nil t)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2254 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2255 ;; Fontify structures, or typedef names, plus their items.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2256 '("\\(}\\)[ \t*]*\\sw"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2257 (font-lock-match-c++-style-declaration-item-and-skip-to-next
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2258 (goto-char (match-end 1)) nil
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2259 (1 (if (match-beginning 4)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2260 font-lock-function-name-face
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2261 font-lock-variable-name-face))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2262 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2263 ;; Fontify anything at beginning of line as a declaration or definition.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2264 '("^\\(\\sw+\\)\\>\\([ \t*]+\\sw+\\>\\)*"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2265 (1 font-lock-type-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2266 (font-lock-match-c++-style-declaration-item-and-skip-to-next
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2267 (goto-char (or (match-beginning 2) (match-end 1))) nil
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2268 (1 (cond ((match-beginning 2) 'font-lock-type-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2269 ((match-beginning 4) 'font-lock-function-name-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2270 (t 'font-lock-variable-name-face)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2271 (3 (if (match-beginning 4)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2272 'font-lock-function-name-face
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2273 'font-lock-variable-name-face) nil t)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2274 )))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2275 )
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2276
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2277 (defvar c-font-lock-keywords c-font-lock-keywords-1
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2278 "Default expressions to highlight in C mode.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2279
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2280 (defvar c++-font-lock-keywords c++-font-lock-keywords-1
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2281 "Default expressions to highlight in C++ mode.")
221
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
2282
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
2283 ;;; Java.
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2284
221
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
2285 ;; Java support has been written by XEmacs people, and it's apparently
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
2286 ;; totally divergent from the FSF. I don't know if it's better or
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
2287 ;; worse, so I'm leaving it in until someone convinces me the FSF
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
2288 ;; version is better. --hniksic
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2289
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2290 (defconst java-font-lock-keywords-1 nil
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2291 "For consideration as a value of `java-font-lock-keywords'.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2292 This does fairly subdued highlighting.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2293
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2294 (defconst java-font-lock-keywords-2 nil
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2295 "For consideration as a value of `java-font-lock-keywords'.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2296 This adds highlighting of types and identifier names.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2297
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2298 (defconst java-font-lock-keywords-3 nil
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2299 "For consideration as a value of `java-font-lock-keywords'.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2300 This adds highlighting of Java documentation tags, such as @see.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2301
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2302 (defvar java-font-lock-type-regexp
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2303 (concat "\\<\\(boolean\\|byte\\|char\\|double\\|float\\|int"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2304 "\\|long\\|short\\|void\\)\\>")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2305 "Regexp which should match a primitive type.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2306
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2307 (let ((capital-letter "A-Z\300-\326\330-\337")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2308 (letter "a-zA-Z_$\300-\326\330-\366\370-\377")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2309 (digit "0-9"))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2310 (defvar java-font-lock-identifier-regexp
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2311 (concat "\\<\\([" letter "][" letter digit "]*\\)\\>")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2312 "Regexp which should match all Java identifiers.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2313
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2314 (defvar java-font-lock-class-name-regexp
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2315 (concat "\\<\\([" capital-letter "][" letter digit "]*\\)\\>")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2316 "Regexp which should match a class or an interface name.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2317 The name is assumed to begin with a capital letter.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2318 )
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2319
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2320
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2321 (let ((java-modifier-regexp
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2322 (concat "\\<\\(abstract\\|const\\|final\\|native\\|"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2323 "private\\|protected\\|public\\|"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2324 "static\\|synchronized\\|transient\\|volatile\\)\\>")))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2325
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2326 ;; Basic font-lock support:
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2327 (setq java-font-lock-keywords-1
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2328 (list
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2329 ;; Keywords:
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2330 (list
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2331 (concat
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2332 "\\<\\("
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2333 "break\\|byvalue\\|"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2334 "case\\|cast\\|catch\\|class\\|continue\\|"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2335 "do\\|else\\|extends\\|"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2336 "finally\\|for\\|future\\|"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2337 "generic\\|goto\\|"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2338 "if\\|implements\\|import\\|"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2339 "instanceof\\|interface\\|"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2340 "new\\|package\\|return\\|switch\\|"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2341 "throws?\\|try\\|while\\)\\>")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2342 1 'font-lock-keyword-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2343
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2344 ;; Modifiers:
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2345 (list java-modifier-regexp 1 font-lock-type-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2346
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2347 ;; Special constants:
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2348 '("\\<\\(this\\|super\\)\\>" (1 font-lock-reference-face))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2349 '("\\<\\(false\\|null\\|true\\)\\>" (1 font-lock-keyword-face))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2350
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2351 ;; Class names:
400
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
2352 (list (concat "\\<\\(class\\|interface\\)\\>\\s *"
408
501cfd01ee6d Import from CVS: tag r21-2-34
cvs
parents: 406
diff changeset
2353 java-font-lock-identifier-regexp)
400
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
2354 2 'font-lock-function-name-face)
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2355
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2356 ;; Package declarations:
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2357 (list (concat "\\<\\(package\\|import\\)\\>\\s *"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2358 java-font-lock-identifier-regexp)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2359 '(2 font-lock-reference-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2360 (list (concat
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2361 "\\=\\.\\(" java-font-lock-identifier-regexp "\\)")
243
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 227
diff changeset
2362 nil nil '(1 (if (equal (char-after (match-end 0)) ?.)
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 227
diff changeset
2363 'font-lock-reference-face
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 227
diff changeset
2364 'font-lock-type-face))))
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 227
diff changeset
2365
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2366 ;; Constructors:
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2367 (list (concat
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2368 "^\\s *\\(" java-modifier-regexp "\\s +\\)*"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2369 java-font-lock-class-name-regexp "\\s *\(")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2370 (list 3
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2371 '(condition-case nil
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2372 (save-excursion
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2373 (goto-char (scan-sexps (- (match-end 0) 1) 1))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2374 (parse-partial-sexp (point) (point-max) nil t)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2375 (and (looking-at "\\($\\|\\<throws\\>\\|{\\)")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2376 'font-lock-function-name-face))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2377 (error 'font-lock-function-name-face))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2378
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2379 ;; Methods:
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2380 (list (concat "\\(" java-font-lock-type-regexp "\\|"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2381 java-font-lock-class-name-regexp "\\)"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2382 "\\s *\\(\\[\\s *\\]\\s *\\)*"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2383 java-font-lock-identifier-regexp "\\s *\(")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2384 5
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2385 'font-lock-function-name-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2386
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2387 ;; Labels:
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2388 (list ":"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2389 (list
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2390 (concat "^\\s *" java-font-lock-identifier-regexp "\\s *:")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2391 '(beginning-of-line) '(end-of-line)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2392 '(1 font-lock-reference-face)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2393
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2394 ;; `break' and continue' destination labels:
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2395 (list (concat "\\<\\(break\\|continue\\)\\>\\s *"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2396 java-font-lock-identifier-regexp)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2397 2 'font-lock-reference-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2398
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2399 ;; Case statements:
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2400 ;; In Java, any constant expression is allowed.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2401 '("\\<case\\>\\s *\\(.*\\):" 1 font-lock-reference-face)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2402
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2403 ;; Types and declared variable names:
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2404 (setq java-font-lock-keywords-2
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2405 (append
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2406
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2407 java-font-lock-keywords-1
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2408 (list
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2409 ;; Keywords followed by a type:
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2410 (list (concat "\\<\\(extends\\|instanceof\\|new\\)\\>\\s *"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2411 java-font-lock-identifier-regexp)
243
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 227
diff changeset
2412 '(2 (if (equal (char-after (match-end 0)) ?.)
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2413 'font-lock-reference-face 'font-lock-type-face))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2414 (list (concat "\\=\\." java-font-lock-identifier-regexp)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2415 '(goto-char (match-end 0)) nil
243
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 227
diff changeset
2416 '(1 (if (equal (char-after (match-end 0)) ?.)
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2417 'font-lock-reference-face 'font-lock-type-face))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2418
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2419 ;; Keywords followed by a type list:
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2420 (list (concat "\\<\\(implements\\|throws\\)\\>\\ s*"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2421 java-font-lock-identifier-regexp)
243
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 227
diff changeset
2422 '(2 (if (equal (char-after (match-end 0)) ?.)
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2423 font-lock-reference-face font-lock-type-face))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2424 (list (concat "\\=\\(\\.\\|\\s *\\(,\\)\\s *\\)"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2425 java-font-lock-identifier-regexp)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2426 '(goto-char (match-end 0)) nil
243
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 227
diff changeset
2427 '(3 (if (equal (char-after (match-end 0)) ?.)
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2428 font-lock-reference-face font-lock-type-face))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2429
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2430 ;; primitive types, can't be confused with anything else.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2431 (list java-font-lock-type-regexp
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2432 '(1 font-lock-type-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2433 '(font-lock-match-java-declarations
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2434 (goto-char (match-end 0))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2435 (goto-char (match-end 0))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2436 (0 font-lock-variable-name-face)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2437
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2438 ;; Declarations, class types and capitalized variables:
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2439 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2440 ;; Declarations are easy to recognize. Capitalized words
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2441 ;; followed by a closing parenthesis are treated as casts if they
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2442 ;; also are followed by an expression. Expressions beginning with
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2443 ;; a unary numerical operator, e.g. +, can't be cast to an object
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2444 ;; type.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2445 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2446 ;; The path of a fully qualified type, e.g. java.lang.Foo, is
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2447 ;; fontified in the reference face.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2448 ;;
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2449 ;; An access to a static field, e.g. System.out.println, is
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2450 ;; not fontified since it can't be distinguished from the
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2451 ;; usage of a capitalized variable, e.g. Foo.out.println.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2452
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2453 (list (concat java-font-lock-class-name-regexp
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2454 "\\s *\\(\\[\\s *\\]\\s *\\)*"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2455 "\\(\\<\\|$\\|)\\s *\\([\(\"]\\|\\<\\)\\)")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2456 '(1 (save-match-data
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2457 (save-excursion
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2458 (goto-char
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2459 (match-beginning 3))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2460 (if (not (looking-at "\\<instanceof\\>"))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2461 'font-lock-type-face))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2462 (list (concat "\\=" java-font-lock-identifier-regexp "\\.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2463 '(progn
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2464 (goto-char (match-beginning 0))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2465 (while (or (= (preceding-char) ?.)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2466 (= (char-syntax (preceding-char)) ?w))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2467 (backward-char)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2468 '(goto-char (match-end 0))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2469 '(1 font-lock-reference-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2470 '(0 nil)) ; Workaround for bug in XEmacs.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2471 '(font-lock-match-java-declarations
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2472 (goto-char (match-end 1))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2473 (goto-char (match-end 0))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2474 (1 font-lock-variable-name-face))))))
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
2475
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2476 ;; Modifier keywords and Java doc tags
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2477 (setq java-font-lock-keywords-3
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2478 (append
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
2479
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2480 '(
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2481 ;; Feature scoping:
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2482 ;; These must come first or the Modifiers from keywords-1 will
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2483 ;; catch them. We don't want to use override fontification here
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2484 ;; because then these terms will be fontified within comments.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2485 ("\\<private\\>" 0 font-lock-string-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2486 ("\\<protected\\>" 0 font-lock-preprocessor-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2487 ("\\<public\\>" 0 font-lock-reference-face))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2488 java-font-lock-keywords-2
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
2489
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2490 (list
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2491
400
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
2492 ;; Javadoc tags
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
2493 '("@\\(author\\|exception\\|throws\\|deprecated\\|param\\|return\\|see\\|since\\|version\\)\\s "
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2494 0 font-lock-keyword-face t)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2495
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2496 ;; Doc tag - Parameter identifiers
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2497 (list (concat "@param\\s +" java-font-lock-identifier-regexp)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2498 1 'font-lock-variable-name-face t)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2499
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2500 ;; Doc tag - Exception types
400
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
2501 (list (concat "@\\(exception\\|throws\\)\\s +"
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
2502 java-font-lock-identifier-regexp)
400
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
2503 '(2 (if (equal (char-after (match-end 0)) ?.)
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
2504 font-lock-reference-face font-lock-type-face) t)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
2505 (list (concat "\\=\\." java-font-lock-identifier-regexp)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
2506 '(goto-char (match-end 0)) nil
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
2507 '(1 (if (equal (char-after (match-end 0)) ?.)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
2508 'font-lock-reference-face 'font-lock-type-face) t)))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
2509
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2510 ;; Doc tag - Cross-references, usually to methods
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2511 '("@see\\s +\\(\\S *[^][ \t\n\r\f(){},.;:]\\)"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2512 1 font-lock-function-name-face t)
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
2513
400
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
2514 ;; Doc tag - docRoot (1.3)
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
2515 '("\\({ *@docRoot *}\\)"
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
2516 0 font-lock-keyword-face t)
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
2517 ;; Doc tag - beaninfo, unofficial but widely used, even by Sun
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
2518 '("\\(@beaninfo\\)"
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
2519 0 font-lock-keyword-face t)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
2520 ;; Doc tag - Links
400
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
2521 '("{ *@link\\s +\\([^}]+\\)}"
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
2522 0 font-lock-keyword-face t)
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
2523 ;; Doc tag - Links
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
2524 '("{ *@link\\s +\\(\\(\\S +\\)\\|\\(\\S +\\s +\\S +\\)\\) *}"
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
2525 1 font-lock-function-name-face t)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
2526
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2527 )))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2528 )
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2529
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2530 (defvar java-font-lock-keywords java-font-lock-keywords-1
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2531 "Additional expressions to highlight in Java mode.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2532
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2533 ;; Match and move over any declaration/definition item after
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2534 ;; point. Does not match items which look like a type declaration
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2535 ;; (primitive types and class names, i.e. capitalized words.)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2536 ;; Should the variable name be followed by a comma, we reposition
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2537 ;; the cursor to fontify more identifiers.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2538 (defun font-lock-match-java-declarations (limit)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2539 "Match and skip over variable definitions."
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2540 (if (looking-at "\\s *\\(\\[\\s *\\]\\s *\\)*")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2541 (goto-char (match-end 0)))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2542 (and
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2543 (looking-at java-font-lock-identifier-regexp)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2544 (save-match-data
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2545 (not (string-match java-font-lock-type-regexp
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2546 (buffer-substring (match-beginning 1)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2547 (match-end 1)))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2548 (save-match-data
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2549 (save-excursion
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2550 (goto-char (match-beginning 1))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2551 (not (looking-at
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2552 (concat java-font-lock-class-name-regexp
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2553 "\\s *\\(\\[\\s *\\]\\s *\\)*\\<")))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2554 (save-match-data
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2555 (condition-case nil
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2556 (save-restriction
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2557 (narrow-to-region (point-min) limit)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2558 (goto-char (match-end 0))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2559 ;; Note: Both `scan-sexps' and the second goto-char can
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2560 ;; generate an error which is caught by the
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2561 ;; `condition-case' expression.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2562 (while (not (looking-at "\\s *\\(\\(,\\)\\|;\\|$\\)"))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2563 (goto-char (or (scan-sexps (point) 1) (point-max))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2564 (goto-char (match-end 2))) ; non-nil
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2565 (error t)))))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2566
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2567
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2568 (defvar tex-font-lock-keywords
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2569 ; ;; Regexps updated with help from Ulrik Dickow <dickow@nbi.dk>.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2570 ; '(("\\\\\\(begin\\|end\\|newcommand\\){\\([a-zA-Z0-9\\*]+\\)}"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2571 ; 2 font-lock-function-name-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2572 ; ("\\\\\\(cite\\|label\\|pageref\\|ref\\){\\([^} \t\n]+\\)}"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2573 ; 2 font-lock-reference-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2574 ; ;; It seems a bit dubious to use `bold' and `italic' faces since we might
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2575 ; ;; not be able to display those fonts.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2576 ; ("{\\\\bf\\([^}]+\\)}" 1 'bold keep)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2577 ; ("{\\\\\\(em\\|it\\|sl\\)\\([^}]+\\)}" 2 'italic keep)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2578 ; ("\\\\\\([a-zA-Z@]+\\|.\\)" . font-lock-keyword-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2579 ; ("^[ \t\n]*\\\\def[\\\\@]\\(\\w+\\)" 1 font-lock-function-name-face keep))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2580 ;; Rewritten and extended for LaTeX2e by Ulrik Dickow <dickow@nbi.dk>.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2581 '(("\\\\\\(begin\\|end\\|newcommand\\){\\([a-zA-Z0-9\\*]+\\)}"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2582 2 font-lock-function-name-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2583 ("\\\\\\(cite\\|label\\|pageref\\|ref\\){\\([^} \t\n]+\\)}"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2584 2 font-lock-reference-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2585 ("^[ \t]*\\\\def\\\\\\(\\(\\w\\|@\\)+\\)" 1 font-lock-function-name-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2586 "\\\\\\([a-zA-Z@]+\\|.\\)"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2587 ;; It seems a bit dubious to use `bold' and `italic' faces since we might
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2588 ;; not be able to display those fonts.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2589 ;; LaTeX2e: \emph{This is emphasized}.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2590 ("\\\\emph{\\([^}]+\\)}" 1 'italic keep)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2591 ;; LaTeX2e: \textbf{This is bold}, \textit{...}, \textsl{...}
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2592 ("\\\\text\\(\\(bf\\)\\|it\\|sl\\){\\([^}]+\\)}"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2593 3 (if (match-beginning 2) 'bold 'italic) keep)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2594 ;; Old-style bf/em/it/sl. Stop at `\\' and un-escaped `&', for good tables.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2595 ("\\\\\\(\\(bf\\)\\|em\\|it\\|sl\\)\\>\\(\\([^}&\\]\\|\\\\[^\\]\\)+\\)"
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2596 3 (if (match-beginning 2) 'bold 'italic) keep))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2597 "Default expressions to highlight in TeX modes.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2598
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2599 (defconst ksh-font-lock-keywords (purecopy
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2600 (list
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2601 '("\\(^\\|[^\$\\\]\\)#.*" . font-lock-comment-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2602 '("\\<\\(if\\|then\\|else\\|elif\\|fi\\|case\\|esac\\|for\\|do\\|done\\|foreach\\|in\\|end\\|select\\|while\\|repeat\\|time\\|function\\|until\\|exec\\|command\\|coproc\\|noglob\\|nohup\\|nocorrect\\|source\\|autoload\\|alias\\|unalias\\|export\\|set\\|echo\\|eval\\|cd\\|log\\|compctl\\)\\>" . font-lock-keyword-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2603 '("\\<\\[\\[.*\\]\\]\\>" . font-lock-type-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2604 '("\$\(.*\)" . font-lock-type-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2605 ))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2606 "Additional expressions to highlight in ksh-mode.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2607
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2608 (defconst sh-font-lock-keywords (purecopy
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2609 (list
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2610 '("\\(^\\|[^\$\\\]\\)#.*" . font-lock-comment-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2611 '("\\<\\(if\\|then\\|else\\|elif\\|fi\\|case\\|esac\\|for\\|do\\|done\\|in\\|while\\|exec\\|export\\|set\\|echo\\|eval\\|cd\\)\\>" . font-lock-keyword-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2612 '("\\[.*\\]" . font-lock-type-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2613 '("`.*`" . font-lock-type-face)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2614 ))
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2615 "Additional expressions to highlight in sh-mode.")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2616
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2617
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2618 ;; Install ourselves:
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2619
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2620 (add-hook 'find-file-hooks 'font-lock-set-defaults t)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2621
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2622 ;;;###autoload
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2623 (add-minor-mode 'font-lock-mode " Font")
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2624
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2625 ;; Provide ourselves:
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2626
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2627 (provide 'font-lock)
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2628
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents:
diff changeset
2629 ;;; font-lock.el ends here