annotate lisp/font-lock.el @ 931:3508e2f71814

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