annotate lisp/font-lock.el @ 8457:c0492d7043b2

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