Use PT, not point.
[bpt/emacs.git] / lisp / font-lock.el
1 ;; Electric Font Lock Mode
2 ;; Copyright (C) 1992, 1993 Free Software Foundation, Inc.
3
4 ;; Author: jwz, then rms
5 ;; Maintainer: FSF
6 ;; Keywords: languages, faces
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
23
24
25 ;;; Commentary:
26
27 ;; Font-lock-mode is a minor mode that causes your comments to be
28 ;; displayed in one face, strings in another, reserved words in another,
29 ;; documentation strings in another, and so on.
30 ;;
31 ;; Comments will be displayed in `font-lock-comment-face'.
32 ;; Strings will be displayed in `font-lock-string-face'.
33 ;; Doc strings will be displayed in `font-lock-doc-string-face'.
34 ;; Function and variable names (in their defining forms) will be
35 ;; displayed in `font-lock-function-name-face'.
36 ;; Reserved words will be displayed in `font-lock-keyword-face'.
37 ;;
38 ;; To make the text you type be fontified, use M-x font-lock-mode.
39 ;; When this minor mode is on, the fonts of the current line are
40 ;; updated with every insertion or deletion.
41 ;;
42 ;; To define new reserved words or other patterns to highlight, use
43 ;; the `font-lock-keywords' variable. This should be mode-local.
44 ;;
45 ;; To turn this on automatically, add this to your .emacs file:
46 ;;
47 ;; (setq emacs-lisp-mode-hook '(lambda () (font-lock-mode 1)))
48 ;;
49 ;; On a Sparc2, the initial fontification takes about 12 seconds for a 120k
50 ;; file of C code, using the default configuration. You can speed this up
51 ;; substantially by removing some of the patterns that are highlighted by
52 ;; default. Fontifying Lisp code is significantly faster, because Lisp has a
53 ;; more regular syntax than C, so the expressions don't have to be as hairy.
54
55 ;;; Code:
56
57 (or window-system
58 (error "Can't fontify on an ASCII terminal"))
59
60 (or (internal-find-face 'underline)
61 (copy-face 'default 'underline))
62 (set-face-underline-p 'underline t)
63
64 (defvar font-lock-comment-face
65 'italic
66 "Face to use for comments.")
67
68 (defvar font-lock-doc-string-face
69 'italic
70 "Face to use for documentation strings.")
71
72 (defvar font-lock-string-face
73 'underline
74 "Face to use for string constants.")
75
76 (defvar font-lock-function-name-face
77 'bold-italic
78 "Face to use for function names.")
79
80 (defvar font-lock-keyword-face
81 'bold
82 "Face to use for keywords.")
83
84 (defvar font-lock-type-face
85 'italic
86 "Face to use for data types.")
87
88 (make-variable-buffer-local 'font-lock-keywords)
89 (defvar font-lock-keywords nil
90 "*The keywords to highlight.
91 If this is a list, then elements may be of the forms:
92
93 \"string\" ; A regexp to highlight in the
94 ; `font-lock-keyword-face'.
95 (\"string\" . N) ; Highlight subexpression N of the regexp.
96 (\"string\" . face-name) ; Use the named face
97 (\"string\" N face-name) ; Both of the above
98 (\"string\" N face-name t) ; This allows highlighting to override
99 ; already-highlighted regions.
100 (\"string\" N face-name keep) ; This allows highlighting to occur
101 ; even if some parts of what STRING matches
102 ; are already highlighted--but does not alter
103 ; the existing highlighting of those parts.
104
105 These regular expressions should not match text which spans lines.
106 While \\[font-lock-fontify-buffer] handles multi-line patterns correctly,
107 updating when you edit the buffer does not,
108 since it considers text one line at a time.
109
110 Be careful composing regexps for this list; the wrong pattern can dramatically
111 slow things down!")
112
113 (defvar font-lock-keywords-case-fold-search nil
114 "*Non-nil means the patterns in `font-lock-keywords' are case-insensitive.")
115
116 (defvar font-lock-verbose t
117 "*Non-nil means `font-lock-fontify-buffer' should print status messages.")
118
119 ;;;###autoload
120 (defvar font-lock-mode-hook nil
121 "Function or functions to run on entry to Font Lock mode.")
122
123 ;;; These variables record, for each buffer,
124 ;;; the parse state at a particular position, always the start of a line.
125 ;;; This is used to make font-lock-fontify-region faster.
126 (defvar font-lock-cache-position nil)
127 (defvar font-lock-cache-state nil)
128 (make-variable-buffer-local 'font-lock-cache-position)
129 (make-variable-buffer-local 'font-lock-cache-state)
130
131 (defun font-lock-fontify-region (start end)
132 "Put proper face on each string and comment between START and END."
133 (save-excursion
134 (goto-char start)
135 (beginning-of-line)
136 (setq end (min end (point-max)))
137 (let ((buffer-read-only nil)
138 state startline prev prevstate
139 (modified (buffer-modified-p)))
140 ;; Find the state at the line-beginning before START.
141 (setq startline (point))
142 (if (eq (point) font-lock-cache-position)
143 (setq state font-lock-cache-state)
144 ;; Find outermost containing sexp.
145 (beginning-of-defun)
146 ;; Find the state at STARTLINE.
147 (while (< (point) startline)
148 (setq state (parse-partial-sexp (point) startline 0)))
149 (setq font-lock-cache-state state
150 font-lock-cache-position (point)))
151 ;; Now find the state precisely at START.
152 (setq state (parse-partial-sexp (point) start nil nil state))
153 ;; If the region starts inside a string, show the extent of it.
154 (if (nth 3 state)
155 (let ((beg (point)))
156 (while (and (re-search-forward "\\s\"" end 'move)
157 (nth 3 (parse-partial-sexp beg (point)
158 nil nil state))))
159 (put-text-property beg (point) 'face font-lock-string-face)
160 (setq state (parse-partial-sexp beg (point) nil nil state))))
161 ;; Likewise for a comment.
162 (if (or (nth 4 state) (nth 7 state))
163 (let ((beg (point)))
164 (while (and (re-search-forward (if comment-end
165 (concat "\\s>\\|"
166 (regexp-quote comment-end))
167 "\\s>")
168 end 'move)
169 (nth 3 (parse-partial-sexp beg (point)
170 nil nil state))))
171 (put-text-property beg (point) 'face font-lock-comment-face)
172 (setq state (parse-partial-sexp beg (point) nil nil state))))
173 ;; Find each interesting place between here and END.
174 (while (and (< (point) end)
175 (setq prev (point) prevstate state)
176 (re-search-forward (if comment-start-skip
177 (concat "\\s\"\\|" comment-start-skip)
178 "\\s\"")
179 end t)
180 ;; Clear out the fonts of what we skip over.
181 (progn (remove-text-properties prev (point) '(face nil)) t)
182 ;; Verify the state at that place
183 ;; so we don't get fooled by \" or \;.
184 (setq state (parse-partial-sexp prev (point)
185 nil nil state)))
186 (let ((here (point)))
187 (if (or (nth 4 state) (nth 7 state))
188 ;; We found a real comment start.
189 (let ((beg (match-beginning 0)))
190 (goto-char beg)
191 (save-restriction
192 (narrow-to-region (point-min) end)
193 (condition-case nil
194 (progn
195 (forward-comment 1)
196 ;; forward-comment skips all whitespace,
197 ;; so go back to the real end of the comment.
198 (skip-chars-backward " \t"))
199 (error (goto-char end))))
200 (put-text-property beg (point) 'face font-lock-comment-face)
201 (setq state (parse-partial-sexp here (point) nil nil state)))
202 (if (nth 3 state)
203 (let ((beg (match-beginning 0)))
204 (while (and (re-search-forward "\\s\"" end 'move)
205 (nth 3 (parse-partial-sexp here (point)
206 nil nil state))))
207 (put-text-property beg (point) 'face font-lock-string-face)
208 (setq state (parse-partial-sexp here (point) nil nil state))))
209 ))
210 ;; Make sure PREV is non-nil after the loop
211 ;; only if it was set on the very last iteration.
212 (setq prev nil))
213 (and prev
214 (remove-text-properties prev end '(face nil)))
215 (set-buffer-modified-p modified))))
216
217 ;; This code used to be used to show a string on reaching the end of it.
218 ;; It is probably not needed due to later changes to handle strings
219 ;; starting before the region in question.
220 ;; (if (and (null (nth 3 state))
221 ;; (eq (char-syntax (preceding-char)) ?\")
222 ;; (save-excursion
223 ;; (nth 3 (parse-partial-sexp prev (1- (point))
224 ;; nil nil prevstate))))
225 ;; ;; We found the end of a string.
226 ;; (save-excursion
227 ;; (setq foo2 (point))
228 ;; (let ((ept (point)))
229 ;; (forward-sexp -1)
230 ;; ;; Highlight the string when we see the end.
231 ;; ;; Doing it at the start leads to trouble:
232 ;; ;; either it fails to handle multiline strings
233 ;; ;; or it can run away when an unmatched " is inserted.
234 ;; (put-text-property (point) ept 'face
235 ;; (if (= (car state) 1)
236 ;; font-lock-doc-string-face
237 ;; font-lock-string-face)))))
238
239 (defun font-lock-unfontify-region (beg end)
240 (let ((modified (buffer-modified-p))
241 (buffer-read-only nil))
242 (remove-text-properties beg end '(face nil))
243 (set-buffer-modified-p modified)))
244
245 ;; Called when any modification is made to buffer text.
246 (defun font-lock-after-change-function (beg end old-len)
247 (save-excursion
248 (save-match-data
249 (goto-char beg)
250 ;; Discard the cache info if text before it has changed.
251 (and font-lock-cache-position
252 (> font-lock-cache-position beg)
253 (setq font-lock-cache-position nil))
254 ;; Rescan till end of line. yes!
255 (goto-char end)
256 (end-of-line)
257 (setq end (point))
258 (goto-char beg)
259 (beginning-of-line)
260 (setq beg (point))
261 ;; First scan for strings and comments.
262 ;; Must scan from line start in case of
263 ;; inserting space into `intfoo () {}'.
264 (font-lock-fontify-region beg (1+ end))
265 ;; Now scan for keywords.
266 (font-lock-hack-keywords beg end))))
267 \f
268 ;;; Fontifying arbitrary patterns
269
270 (defsubst font-lock-any-properties-p (start end)
271 (or (get-text-property start 'face)
272 (let ((next (next-single-property-change start 'face)))
273 (and next (< next end)))))
274
275 (defun font-lock-hack-keywords (start end &optional loudly)
276 (goto-char start)
277 (let ((case-fold-search font-lock-keywords-case-fold-search)
278 (rest font-lock-keywords)
279 (count 0)
280 (buffer-read-only nil)
281 (modified (buffer-modified-p))
282 first str match face s e allow-overlap-p)
283 (while rest
284 (setq first (car rest) rest (cdr rest))
285 (goto-char start)
286 (cond ((consp first)
287 (setq str (car first))
288 (cond ((consp (cdr first))
289 (setq match (nth 1 first)
290 face (eval (nth 2 first))
291 allow-overlap-p (nth 3 first)))
292 ((symbolp (cdr first))
293 (setq match 0 allow-overlap-p nil
294 face (eval (cdr first))))
295 (t
296 (setq match (cdr first)
297 allow-overlap-p nil
298 face font-lock-keyword-face))))
299 (t
300 (setq str first match 0 allow-overlap-p nil
301 face font-lock-keyword-face)))
302 ;(message "regexp: %s" str)
303 (while (re-search-forward str end t)
304 (setq s (match-beginning match)
305 e (match-end match))
306 (or s (error "expression did not match subexpression %d" match))
307 ;; don't fontify this keyword if we're already in some other context.
308 (or (if allow-overlap-p nil (font-lock-any-properties-p s e))
309 (if (not (memq allow-overlap-p '(t nil)))
310 (save-excursion
311 (goto-char s)
312 (save-restriction
313 (narrow-to-region s e)
314 (while (not (eobp))
315 (let ((next (next-single-property-change (point) 'face)))
316 (if (or (null next) (> next (point-max)))
317 (setq next (point-max)))
318 (if (not (get-text-property (point) 'face))
319 (put-text-property (point) next 'face face))
320 (goto-char next)))))
321 (put-text-property s e 'face face))))
322 (if loudly (message "Fontifying %s... (regexps...%s)"
323 (buffer-name)
324 (make-string (setq count (1+ count)) ?.))))
325 (set-buffer-modified-p modified)))
326 \f
327 ;; The user level functions
328
329 (defvar font-lock-mode nil) ; for modeline
330 (or (assq 'font-lock-mode minor-mode-alist)
331 (setq minor-mode-alist
332 (append minor-mode-alist
333 '((font-lock-mode " Font")))))
334
335 (defvar font-lock-fontified nil) ; whether we have hacked this buffer
336 (put 'font-lock-fontified 'permanent-local t)
337
338 ;;;###autoload
339 (defun font-lock-mode (&optional arg)
340 "Toggle Font Lock mode.
341 With arg, turn Font Lock mode on if and only if arg is positive.
342
343 When Font Lock mode is enabled, text is fontified as you type it:
344
345 - comments are displayed in `font-lock-comment-face';
346 (That is a variable whose value should be a face name.)
347 - strings are displayed in `font-lock-string-face';
348 - documentation strings are displayed in `font-lock-doc-string-face';
349 - function and variable names in their defining forms are displayed
350 in `font-lock-function-name-face';
351 - and certain other expressions are displayed in other faces
352 according to the value of the variable `font-lock-keywords'.
353
354 When you turn Font Lock mode on/off, the buffer is fontified/defontified.
355 To fontify a buffer without having newly typed text become fontified, you
356 can use \\[font-lock-fontify-buffer]."
357 (interactive "P")
358 (let ((on-p (if (null arg)
359 (not font-lock-mode)
360 (> (prefix-numeric-value arg) 0))))
361 (if (equal (buffer-name) " *Compiler Input*") ; hack for bytecomp...
362 (setq on-p nil))
363 (or (memq after-change-function
364 '(nil font-lock-after-change-function))
365 (error "after-change-function is %s" after-change-function))
366 (set (make-local-variable 'after-change-function)
367 (if on-p 'font-lock-after-change-function nil))
368 (set (make-local-variable 'font-lock-mode) on-p)
369 (cond (on-p
370 (font-lock-set-defaults)
371 (make-local-variable 'before-revert-hook)
372 (make-local-variable 'after-revert-hook)
373 ;; If buffer is reverted, must clean up the state.
374 (add-hook 'before-revert-hook 'font-lock-revert-setup)
375 (add-hook 'after-revert-hook 'font-lock-revert-cleanup)
376 (run-hooks 'font-lock-mode-hook)
377 (or font-lock-fontified (font-lock-fontify-buffer)))
378 (font-lock-fontified
379 (setq font-lock-fontified nil)
380 (remove-hook 'before-revert-hook 'font-lock-revert-setup)
381 (remove-hook 'after-revert-hook 'font-lock-revert-cleanup)
382 (font-lock-unfontify-region (point-min) (point-max))))
383 (force-mode-line-update)))
384
385 ;; If the buffer is about to be reverted, it won't be fontified.
386 (defun font-lock-revert-setup ()
387 (setq font-lock-fontified nil))
388
389 ;; If the buffer has just been reverted, we might not even be in font-lock
390 ;; mode anymore, and if we are, the buffer may or may not have already been
391 ;; refontified. Refontify here if it looks like we need to.
392 (defun font-lock-revert-cleanup ()
393 (and font-lock-mode
394 (not font-lock-fontified)
395 (font-lock-mode 1)))
396
397 (defun font-lock-fontify-buffer ()
398 "Fontify the current buffer the way `font-lock-mode' would:
399
400 - comments are displayed in `font-lock-comment-face';
401 - strings are displayed in `font-lock-string-face';
402 - documentation strings are displayed in `font-lock-doc-string-face';
403 - function and variable names in their defining forms are displayed
404 in `font-lock-function-name-face';
405 - and certain other expressions are displayed in other faces
406 according to the value of the variable `font-lock-keywords'.
407
408 This can take a while for large buffers."
409 (interactive)
410 (let ((was-on font-lock-mode)
411 (font-lock-verbose (or font-lock-verbose (interactive-p))))
412 (if font-lock-verbose (message "Fontifying %s..." (buffer-name)))
413 ;; Turn it on to run hooks and get the right font-lock-keywords.
414 (or was-on (font-lock-set-defaults))
415 (font-lock-unfontify-region (point-min) (point-max))
416 (if font-lock-verbose (message "Fontifying %s... (syntactically...)"
417 (buffer-name)))
418 ;; (buffer-syntactic-context-flush-cache)
419 (save-excursion
420 (font-lock-fontify-region (point-min) (point-max))
421 (if font-lock-verbose (message "Fontifying %s... (regexps...)"
422 (buffer-name)))
423 (font-lock-hack-keywords (point-min) (point-max) font-lock-verbose))
424 (set (make-local-variable 'font-lock-fontified) t)
425 (if font-lock-verbose (message "Fontifying %s... done." (buffer-name)))
426 ))
427
428 \f
429 ;;; Various mode-specific information.
430
431 (defun font-lock-set-defaults ()
432 "Set `font-lock-keywords' to something appropriate for this mode."
433 (if (not font-lock-keywords) ; if not already set.
434 (setq font-lock-keywords
435 (cond ((eq major-mode 'lisp-mode) lisp-font-lock-keywords)
436 ((eq major-mode 'emacs-lisp-mode) lisp-font-lock-keywords)
437 ((eq major-mode 'c-mode) c-font-lock-keywords)
438 ((eq major-mode 'c++-c-mode) c-font-lock-keywords)
439 ((eq major-mode 'c++-mode) c++-font-lock-keywords)
440 ((eq major-mode 'perl-mode) perl-font-lock-keywords)
441 ((eq major-mode 'tex-mode) tex-font-lock-keywords)
442 ((eq major-mode 'texinfo-mode) texi-font-lock-keywords)
443 ((eq major-mode 'shell-mode) shell-font-lock-keywords)
444 ((eq major-mode 'dired-mode) dired-font-lock-keywords)
445 ((eq major-mode 'rmail-mode) rmail-font-lock-keywords)
446 ((eq major-mode 'compilation-mode)
447 compilation-mode-font-lock-keywords)
448 (t nil)))))
449
450 (defconst lisp-font-lock-keywords-1
451 '(;;
452 ;; highlight defining forms. This doesn't work too nicely for
453 ;; (defun (setf foo) ...) but it does work for (defvar foo) which
454 ;; is more important.
455 ("^(def[-a-z]+\\s +\\([^ \t\n\)]+\\)" 1 font-lock-function-name-face)
456 ;;
457 ;; highlight CL keywords
458 ("\\s :\\(\\(\\sw\\|\\s_\\)+\\)\\>" . 1)
459 ;;
460 ;; this is highlights things like (def* (setf foo) (bar baz)), but may
461 ;; be slower (I haven't really thought about it)
462 ; ("^(def[-a-z]+\\s +\\(\\s(\\S)*\\s)\\|\\S(\\S *\\)"
463 ; 1 font-lock-function-name-face)
464 )
465 "For consideration as a value of `lisp-font-lock-keywords'.
466 This does fairly subdued highlighting.")
467
468 (defconst lisp-font-lock-keywords-2
469 (append
470 lisp-font-lock-keywords-1
471 '(;;
472 ;; Highlight control structures
473 ("(\\(cond\\|if\\|when\\|unless\\|[ec]?\\(type\\)?case\\)[ \t\n]" . 1)
474 ("(\\(while\\|do\\|let\\*?\\|flet\\|labels\\|prog[nv12*]?\\)[ \t\n]" . 1)
475 ("(\\(catch\\|\\throw\\|block\\|return\\|return-from\\)[ \t\n]" . 1)
476 ("(\\(save-restriction\\|save-window-restriction\\)[ \t\n]" . 1)
477 ("(\\(save-excursion\\|unwind-protect\\|condition-case\\)[ \t\n]" . 1)
478 ;;
479 ;; highlight function names in emacs-lisp docstrings (in the syntax
480 ;; that substitute-command-keys understands.)
481 ("\\\\\\\\\\[\\([^]\\\n]+\\)]" 1 font-lock-keyword-face t)
482 ;;
483 ;; highlight words inside `' which tend to be function names
484 ("`\\([-a-zA-Z0-9_][-a-zA-Z0-9_][-a-zA-Z0-9_.]+\\)'"
485 1 font-lock-keyword-face t)
486 ))
487 "For consideration as a value of `lisp-font-lock-keywords'.
488 This does a lot more highlighting.")
489
490 ;; default to the gaudier variety?
491 ;(defvar lisp-font-lock-keywords lisp-font-lock-keywords-2
492 ; "Additional expressions to highlight in Lisp modes.")
493 (defvar lisp-font-lock-keywords lisp-font-lock-keywords-1
494 "Additional expressions to highlight in Lisp modes.")
495
496
497 (defconst c-font-lock-keywords-1 nil
498 "For consideration as a value of `c-font-lock-keywords'.
499 This does fairly subdued highlighting.")
500
501 (defconst c-font-lock-keywords-2 nil
502 "For consideration as a value of `c-font-lock-keywords'.
503 This does a lot more highlighting.")
504
505 (defconst c++-font-lock-keywords-1 nil
506 "For consideration as a value of `c++-font-lock-keywords'.
507 This does fairly subdued highlighting.")
508
509 (defconst c++-font-lock-keywords-2 nil
510 "For consideration as a value of `c++-font-lock-keywords'.
511 This does a lot more highlighting.")
512
513 (let* ((storage "auto\\|extern\\|register\\|static\\|typedef")
514 (struct "struct\\|union\\|enum")
515 (prefixes "signed\\|unsigned\\|short\\|long")
516 (types (concat prefixes "\\|int\\|char\\|float\\|double\\|void"))
517 (ctoken "[a-zA-Z0-9_:~*]+")
518 (c++-things (concat
519 "const\\|class\\|protected:\\|private:\\|public:\\|inline\\|"
520 "new\\|delete")))
521 (setq c-font-lock-keywords-1
522 (list
523 ;; fontify preprocessor directives as comments.
524 '("^#[ \t]*[a-z]+" . font-lock-comment-face)
525 ;;
526 ;; fontify names being defined.
527 '("^#[ \t]*\\(define\\|undef\\)[ \t]+\\(\\(\\sw\\|\\s_\\)+\\)" 2
528 font-lock-function-name-face)
529 ;;
530 ;; fontify other preprocessor lines.
531 '("^#[ \t]*\\(if\\|elif\\|else\\|endif\\)[ \t]+\\([^\n]+\\)"
532 2 font-lock-function-name-face keep)
533 '("^#[ \t]*\\(ifn?def\\)[ \t]+\\([^ \t\n]+\\)"
534 2 font-lock-function-name-face t)
535 ;;
536 ;; fontify the filename in #include <...>
537 ;; don't need to do this for #include "..." because those were
538 ;; already fontified as strings by the syntactic pass.
539 '("^#[ \t]*include[ \t]+\\(<[^>\"\n]+>\\)" 1 font-lock-string-face)
540 ;;
541 ;; fontify the names of functions being defined.
542 (list (concat
543 "^\\(" ctoken "[ \t]+\\)?" ; type specs; there can be no
544 "\\(" ctoken "[ \t]+\\)?" ; more than 3 tokens, right?
545 "\\(" ctoken "[ \t]+\\)?"
546 "\\([*&]+[ \t]*\\)?" ; pointer
547 "\\(" ctoken "\\)[ \t]*(") ; name
548 5 'font-lock-function-name-face)
549 ;;
550 ;;
551 ;; Fontify structure names (in structure definition form).
552 (list (concat "^\\(" storage "\\)?[ \t]*\\<\\(" struct "\\)"
553 "[ \t]+\\(" ctoken "\\)[ \t]*\\(\{\\|$\\)")
554 3 'font-lock-function-name-face)
555 ;;
556 ;; Fontify declarations of simple identifiers (including typedefs).
557 ;; (Should this be in c-font-lock-keywords-2 instead?)
558 (list (concat "^[ \t]*\\(\\(" storage "\\)[ \t]+\\)?\\(\\(\\(" prefixes
559 "\\)\\>[ \t]*\\)*\\(" types "\\)\\)[ \t]+\\(" ctoken
560 "\\)[ \t]*[=;]")
561 7 'font-lock-function-name-face 'keep)
562 ;;
563 ;; And likewise for structs
564 (list (concat "^[ \t]*\\(\\(" storage "\\)[ \t]+\\)?\\(" struct
565 "\\)[ \t]+" ctoken "[ \t]+\\(" ctoken "\\);")
566 4 'font-lock-function-name-face 'keep)
567 ;;
568 ;; Fontify case clauses. This is fast because its anchored on the left.
569 '("case[ \t]+\\(\\(\\sw\\|\\s_\\)+\\):". 1)
570 '("\\<\\(default\\):". 1)
571 ))
572
573 (setq c-font-lock-keywords-2
574 (append c-font-lock-keywords-1
575 (list
576 ;;
577 ;; fontify all storage classes and type specifiers
578 (cons (concat "\\<\\(" storage "\\)\\>") 'font-lock-type-face)
579 (cons (concat "\\<\\(" types "\\)\\>") 'font-lock-type-face)
580 (cons (concat "\\<\\(\\(\\(" prefixes "\\)\\>[ \t]*\\)*\\(" types
581 "\\)\\)\\>")
582 'font-lock-type-face)
583 (list (concat "\\<\\(" struct "\\)[ \t]+" ctoken)
584 0 'font-lock-type-face 'keep)
585 ;;
586 ;; fontify all builtin tokens
587 (cons (concat
588 "[ \t]\\("
589 (mapconcat 'identity
590 '("for" "while" "do" "return" "goto" "case" "break" "switch"
591 "if" "else" "default" "continue" "default")
592 "\\|")
593 "\\)[ \t\n(){};,]")
594 1)
595 ;;
596 ;; fontify case targets and goto-tags. This is slow because the
597 ;; expression is anchored on the right.
598 "\\(\\(\\sw\\|\\s_\\)+\\):"
599 ;;
600 ;; Fontify variables declared with structures, or typedef names.
601 '("}[ \t*]*\\(\\(\\sw\\|\\s_\\)+\\)[ \t]*[,;]"
602 1 font-lock-function-name-face)
603 ;;
604 ;; Fontify global variables without a type.
605 ; '("^\\([_a-zA-Z0-9:~*]+\\)[ \t]*[[;={]" 1 font-lock-function-name-face)
606 )))
607
608 (setq c++-font-lock-keywords-1
609 (cons
610 (concat "\\(" c++-things "\\)[ \t\n]")
611 c-font-lock-keywords-1))
612 (setq c++-font-lock-keywords-2
613 (cons
614 (cons (concat "\\<\\(" c++-things "\\)\\>") 'font-lock-type-face)
615 c-font-lock-keywords-2))
616 )
617
618 ; default to the gaudier variety?
619 (defvar c-font-lock-keywords c-font-lock-keywords-1
620 "Additional expressions to highlight in C mode.")
621
622 (defvar c++-font-lock-keywords c++-font-lock-keywords-1
623 "Additional expressions to highlight in C++ mode.")
624
625
626 (defvar perl-font-lock-keywords
627 (list
628 (cons (concat "[ \n\t{]*\\("
629 (mapconcat 'identity
630 '("if" "until" "while" "elsif" "else" "unless" "for"
631 "foreach" "continue" "exit" "die" "last" "goto" "next"
632 "redo" "return" "local" "exec")
633 "\\|")
634 "\\)[ \n\t;(]") 1)
635 (mapconcat 'identity
636 '("#endif" "#else" "#ifdef" "#ifndef" "#if" "#include"
637 "#define" "#undef")
638 "\\|")
639 '("^[ \n\t]*sub[ \t]+\\([^ \t{]+\\)[ \t]*[{]" 1 font-lock-function-name-face)
640 '("[ \n\t{]*\\(eval\\)[ \n\t(;]" 1 font-lock-function-name-face)
641 '("\\(--- .* ---\\|=== .* ===\\)" . font-lock-doc-string-face)
642 )
643 "Additional expressions to highlight in Perl mode.")
644
645 (defvar tex-font-lock-keywords
646 (list
647 '("\\(\\\\\\w+\\)" 1 font-lock-keyword-face t)
648 '("{\\\\em\\([^}]+\\)}" 1 font-lock-comment-face t)
649 '("{\\\\bf\\([^}]+\\)}" 1 font-lock-keyword-face t)
650 '("^[ \t\n]*\\\\def[\\\\@]\\(\\w+\\)" 1 font-lock-function-name-face t)
651 '("\\\\\\(begin\\|end\\){\\([a-zA-Z0-9\\*]+\\)}"
652 2 font-lock-function-name-face t)
653 '("[^\\\\]\\$\\([^$]*\\)\\$" 1 font-lock-string-face t)
654 ; '("\\$\\([^$]*\\)\\$" 1 font-lock-string-face t)
655 )
656 "Additional expressions to highlight in TeX mode.")
657
658 (defvar texi-font-lock-keywords
659 (list
660 "@\\(@\\|[^}\t \n{]+\\)" ;commands
661 '("^\\(@c\\|@comment\\)[ \t].*$" . font-lock-comment-face) ;comments
662 '("^\\(*.*\\)[\t ]*$" 1 font-lock-function-name-face t) ;menu items
663 '("@\\(emph\\|strong\\|b\\|i\\){\\([^}]+\\)" 2 font-lock-comment-face t)
664 '("@\\(file\\|kbd\\|key\\){\\([^}]+\\)" 2 font-lock-string-face t)
665 '("@\\(samp\\|code\\|var\\){\\([^}]+\\)" 2 font-lock-function-name-face t)
666 '("@\\(xref\\|pxref\\){\\([^}]+\\)" 2 font-lock-keyword-face t)
667 '("@end *\\([a-zA-Z0-9]+\\)[ \t]*$" 1 font-lock-function-name-face t)
668 '("@item \\(.*\\)$" 1 font-lock-function-name-face t)
669 '("\\$\\([^$]*\\)\\$" 1 font-lock-string-face t)
670 )
671 "Additional expressions to highlight in TeXinfo mode.")
672
673 (defvar shell-font-lock-keywords
674 (list (cons shell-prompt-pattern 'font-lock-keyword-face)
675 (list (concat shell-prompt-pattern "\\([^ \t]+\\)")
676 1 'font-lock-function-name-face)
677 '("[ \t]\\([+-][^ \t\n]+\\)" 1 font-lock-comment-face)
678 '("^[^ \t]+:.*$" . font-lock-string-face)
679 '("^\\[[1-9][0-9]*\\]" . font-lock-string-face))
680 "Additional expressions to highlight in Shell mode.")
681
682 (defvar dired-font-lock-keywords
683 '(;; Put directory headers in italics.
684 ("^ \\(/.+\\)$" 1 font-lock-type-face)
685 ;; Put symlinks in bold italics.
686 ("\\([^ ]+\\) -> [^ ]+$" . font-lock-function-name-face)
687 ;; Put marks in bold.
688 ("^\\([^ ]\\).*$" 1 font-lock-keyword-face t)
689 ;; Put files that are subdirectories in bold.
690 ("^..d.* \\([^ ]+\\)$" 1 font-lock-keyword-face))
691 "Additional expressions to highlight in Dired mode.")
692
693 (defvar rmail-font-lock-keywords
694 '(;; Put From field in bold.
695 ("^From: \\(.*\\)$" 1 font-lock-keyword-face)
696 ;; Put subject in bold italics
697 ("^Subject: \\(.*\\)$" 1 font-lock-function-name-face))
698 "Additional expressions to highlight in Rmail mode.")
699
700 (defvar compilation-mode-font-lock-keywords
701 '(("^\\([^\n:]*:\\([0-9]+:\\)+\\)\\(.*\\)$" 1 font-lock-function-name-face))
702 ;;; ("^\\([^\n:]*:\\([0-9]+:\\)+\\)\\(.*\\)$" 0 font-lock-keyword-face keep)
703 "Additional expressions to highlight in Compilation mode.")
704
705 (provide 'font-lock)
706
707 ;;; font-lock.el ends here