Mercurial > emacs
annotate lisp/hilit19.el @ 7395:99e9c133a752
(record_delete): Record the old point value only right after a boundary.
(record_delete): Test last_point_position_buffer.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 07 May 1994 08:38:28 +0000 |
parents | c1a962cf4e7a |
children | 298183d131b1 |
rev | line source |
---|---|
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1 ;; hilit19.el (Release 2.19) -- customizable highlighting for Emacs19. |
7300 | 2 ;; Copyright (c) 1993, 1994 Free Software Foundation, Inc. |
4251 | 3 ;; |
4390 | 4 ;; Author: Jonathan Stigelman <Stig@netcom.com> |
4251 | 5 ;; Keywords: faces |
6 ;; | |
7 ;; This program is free software; you can redistribute it and/or modify | |
8 ;; it under the terms of the GNU General Public License as published by | |
9 ;; the Free Software Foundation; either version 2 of the License, or | |
10 ;; (at your option) any later version. | |
11 ;; | |
12 ;; This program is distributed in the hope that it will be useful, | |
13 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 ;; GNU General Public License for more details. | |
16 ;; | |
17 ;; You should have received a copy of the GNU General Public License | |
18 ;; along with this program; if not, write to the Free Software | |
19 ;; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | |
20 ;; | |
21 | |
22 ;;; Commentary: | |
23 | |
4390 | 24 ;; Hilit19.el is a customizable highlighting package for Emacs19. It supports |
25 ;; not only source code highlighting, but also Info, RMAIL, VM, gnus... | |
26 ;; Hilit19 knows (or thinks it knows) how to highlight emacs buffers in | |
27 ;; about 25 different modes. | |
28 ;; | |
29 ;; WHERE TO GET THE LATEST VERSIONS OF HILIT19.EL (beta and release), | |
4251 | 30 ;; PLUS LOTS OF OTHER *WAY COOL* STUFF VIA ANONYMOUS FTP: |
31 ;; | |
4390 | 32 ;; netcom.com:/pub/stig/src/{Beta,Release}/hilit19.el.gz |
4251 | 33 ;; |
34 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
35 ;; | |
36 ;; TO SUBMIT BUG REPORTS (or feedback of any sort)... | |
37 ;; | |
38 ;; M-x hilit-submit-feedback RET | |
39 ;; | |
40 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
41 ;; | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
42 ;; hilit19.el,v 2.19 1993/09/08 18:44:10 stig Release |
4251 | 43 ;; |
44 ;; LCD Archive Entry: | |
4390 | 45 ;; hilit19|Jonathan Stigelman|Stig@netcom.com| |
46 ;; Comprehensive (and comparatively fast) regex-based highlighting for Emacs 19| | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
47 ;; 1993/09/08 18:44:10|Release 2.19|~/packages/hilit19.el.Z| |
4251 | 48 ;; |
49 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
50 ;; | |
51 ;; GENERAL OVERVIEW | |
52 ;; | |
53 ;; This package installs numerous hooks to colorfully highlight your | |
54 ;; source code buffers as well as mail and news buffers. Most | |
55 ;; programming languages have predefined highlighting patterns. | |
56 ;; Just load hilit19 and files will be automatically highlighted as | |
57 ;; they're loaded. | |
58 ;; | |
59 ;; Rehighlight a buffer by typing C-S-l (control-shift-lowercase-L). | |
60 ;; | |
61 ;; If, when you edit the buffer, the coloring gets messed up, just | |
62 ;; redraw and the coloring will be adjusted. If automatic highlighting | |
63 ;; in the current buffer has been turned off, then typing C-u C-S-l will | |
64 ;; force a rehighlight of the entire buffer. | |
65 ;; | |
66 ;; Hilit19 can build faces by examining the names that you give to them | |
67 ;; For example, green/black-bold-italic-underline would be created as | |
68 ;; a face with a green foreground, and a black background, using a | |
69 ;; bold-italic font...with underlining for good measure. | |
70 ;; | |
71 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
72 ;; | |
73 ;; SETUP -- In your .emacs: | |
74 ;; | |
4390 | 75 ;; |
76 ;; (cond (window-system | |
77 ;; (setq hilit-mode-enable-list '(not text-mode) | |
78 ;; hilit-background-mode 'light | |
79 ;; hilit-inhibit-hooks nil | |
80 ;; hilit-inhibit-rebinding nil) | |
81 ;; | |
82 ;; (require 'hilit19) | |
83 ;; )) | |
84 ;; | |
85 ;; If you like font-lock-mode and want to use both packages, then you can | |
86 ;; disable hilit for the modes in which you want to use font-lock by listing | |
87 ;; said modes in hilit-mode-enable-list. | |
88 ;; | |
4251 | 89 ;; (hilit-translate type 'RoyalBlue ; enable highlighting in C/C++ |
90 ;; string nil) ; disable string highlighting | |
91 ;; | |
92 ;; To get 100% of the utility of hilit19, you may also have to apply the | |
93 ;; patches below for info.el and vm5.33L_19/vm-summary.el | |
94 ;; | |
95 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
96 ;; | |
97 ;; SETUP -- Are you using the right font for Emacs? | |
98 ;; | |
99 ;; Emacs cannot properly find bold and italic fonts unless you specify a | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
100 ;; verbose X11 font name. If you specify a font for emacs in your |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
101 ;; .Xdefaults, it *MUST* be specified using the long form of the font name. |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
102 ;; Here's a good font menu: |
4251 | 103 ;; |
104 ;; (setq | |
105 ;; x-fixed-font-alist | |
106 ;; '("Font Menu" | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
107 ;; ("Misc" |
4251 | 108 ;; ("6x12" "-misc-fixed-medium-r-semicondensed--12-110-75-75-c-60-*-1") |
109 ;; ("6x13" "-misc-fixed-medium-r-semicondensed--13-120-75-75-c-60-*-1") | |
110 ;; ("lucida 13" | |
111 ;; "-b&h-lucidatypewriter-medium-r-normal-sans-0-0-0-0-m-0-*-1") | |
112 ;; ("7x13" "-misc-fixed-medium-r-normal--13-120-75-75-c-70-*-1") | |
113 ;; ("7x14" "-misc-fixed-medium-r-normal--14-130-75-75-c-70-*-1") | |
114 ;; ("9x15" "-misc-fixed-medium-r-normal--15-140-*-*-c-*-*-1") | |
115 ;; ("") | |
116 ;; ("clean 8x8" "-schumacher-clean-medium-r-normal--*-80-*-*-c-*-*-1") | |
117 ;; ("clean 8x14" "-schumacher-clean-medium-r-normal--*-140-*-*-c-*-*-1") | |
118 ;; ("clean 8x10" "-schumacher-clean-medium-r-normal--*-100-*-*-c-*-*-1") | |
119 ;; ("clean 8x16" "-schumacher-clean-medium-r-normal--*-160-*-*-c-*-*-1") | |
120 ;; ("") | |
121 ;; ("sony 8x16" "-sony-fixed-medium-r-normal--16-120-100-100-c-80-*-1") | |
122 ;; ("") | |
123 ;; ("-- Courier --") | |
124 ;; ("Courier 10" "-adobe-courier-medium-r-normal--*-100-*-*-m-*-*-1") | |
125 ;; ("Courier 12" "-adobe-courier-medium-r-normal--*-120-*-*-m-*-*-1") | |
126 ;; ("Courier 14" "-adobe-courier-medium-r-normal--*-140-*-*-m-*-*-1") | |
127 ;; ("Courier 18" "-adobe-courier-medium-r-normal--*-180-*-*-m-*-*-1") | |
128 ;; ("Courier 18-b" "-adobe-courier-bold-r-normal--*-180-*-*-m-*-*-1") | |
129 ;; ))) | |
130 ;; | |
131 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
132 ;; | |
133 ;; KNOWN BUGS/TO DO LIST/HELP WANTED/APPLY WITHIN | |
134 ;; | |
4390 | 135 ;; * unbalanced, unescaped double quote characters can confuse hilit19. |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
136 ;; This will be fixed someday, so don't bug me about it. |
4251 | 137 ;; |
4390 | 138 ;; * ALTHOUGH HILIT19 IS FASTER THAN FONT-LOCK-MODE... |
139 ;; For various reasons, the speed of the package could still stand to be | |
140 ;; improved. If you care to do a little profiling and make things tighter... | |
141 ;; | |
142 ;; * hilit-toggle-highlight is flaky when auto-rehighlight is neither t nor nil. | |
143 ;; Does anyone actually USE this? I think I might just remove it. | |
4251 | 144 ;; |
145 ;; PROJECTS THAT YOU CAN TAKE OVER BECAUSE I DON'T MUCH CARE ABOUT THEM... | |
146 ;; | |
147 ;; * Moved hilit-wysiwyg-replace here from my version of man.el, this is not | |
148 ;; a bug. The bug is that I don't have a reverse operation yet...just a | |
149 ;; stub Wysiwyg-anything really belongs in a package of it's own. | |
150 ;; | |
151 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
152 ;; | |
153 ;; Thanks to the following people for their input: | |
4390 | 154 ;; ebert@enpc.enpc.fr (Rolf EBERT), ada, LaTeX & bibtex highlights |
155 ;; Vivek Khera <khera@cs.duke.edu>, gnus hooks + random advice & patches | |
156 ;; brian@athe.WUstl.EDU (Brian Dunford-Shore), prolog highlights | |
157 ;; John Ladwig <jladwig@soils.umn.edu>, 1st pass nroff highlights | |
158 ;; campo@sunthpi3.difi.unipi.it (Massimo Campostrini), fortran highlights | |
159 ;; jayb@laplace.MATH.ColoState.EDU (Jay Bourland), 1st pass dired | |
160 ;; Yoshio Turner <yoshio@CS.UCLA.EDU>, modula 2 highlights | |
161 ;; Fritz Knabe <knabe@ecrc.de>, advice & patches | |
162 ;; Alon Albert <alon@milcse.rtsg.mot.com>, advice & patches | |
163 ;; dana@thumper.bellcore.com (Dana A. Chee), working on the multi-frame bug | |
164 ;; derway@ndc.com (Don Erway), for breaking it... | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
165 ;; moss_r@summer.chem.su.oz.au (Richard Moss), first pass at add-pattern |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
166 ;; Olivier Lecarme <ol@aiguemarine.unice.fr>, Pascal & Icon patterns |
4251 | 167 ;; |
168 ;; With suggestions and minor regex patches from numerous others... | |
169 ;; | |
170 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
171 ;; | |
4390 | 172 ;; hilit19.el,v |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
173 ;; Revision 2.19 1993/09/08 18:44:10 stig |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
174 ;; installed patch for elusive bug in hilit-rehighlight-region that caused |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
175 ;; hilit-unhighlight-region to hang in an infinite loop. |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
176 ;; |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
177 ;; Revision 2.18 1993/08/27 03:51:00 stig |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
178 ;; minor mods to lisp-mode and c/c++ mode patterns |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
179 ;; |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
180 ;; Revision 2.17 1993/08/25 02:19:17 stig |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
181 ;; work-around for bug in next-overlay-change that caused dired and jargon-mode |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
182 ;; to hang in an endless loop. Perhaps other modes were doing this too. |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
183 ;; |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
184 ;; Revision 2.16 1993/08/22 19:46:00 stig |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
185 ;; bug fix for next-overlay-change and accompanying change to |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
186 ;; hilit-unhighlight-region |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
187 ;; |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
188 ;; Revision 2.15 1993/08/20 12:16:22 stig |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
189 ;; minor change to fortran patterns |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
190 ;; |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
191 ;; Revision 2.14 1993/08/17 14:12:10 stig |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
192 ;; added default face mapping for 'formula' which is needed for new latex |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
193 ;; patterns. |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
194 ;; |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
195 ;; twiddled the calendar-mode patterns a bit. |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
196 ;; |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
197 ;; Revision 2.13 1993/08/16 04:33:54 stig |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
198 ;; hilit-set-mode-patterns was screwing up two part patterns. it doesn't now. |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
199 ;; |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
200 ;; Revision 2.12 1993/08/16 00:16:41 stig |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
201 ;; changed references to default-bold-italic to just bold-italic because the |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
202 ;; font for that face is maintained by emacs. |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
203 ;; |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
204 ;; the pattern matcher now starts it's searches from the end of the most |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
205 ;; recently highlighted region (which is not necessarily the end of the most |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
206 ;; recently matched regex). |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
207 ;; |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
208 ;; multiple errors in pattern matcher now just give an error instead of lots of |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
209 ;; annoying messages and dings. |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
210 ;; |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
211 ;; no longer use vm-summary-mode-hooks. |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
212 ;; |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
213 ;; some code moved from hilit-highlight-region to hilit-set-mode-patterns. |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
214 ;; This will affect you if you pass your patterns directly to |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
215 ;; hilit-highlight-region....use a pseudo-mode instead. |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
216 ;; |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
217 ;; pattern changes to C/C++, latex, texinfo, fortran, nroff, etc. |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
218 ;; |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
219 ;; Revision 2.11 1993/08/13 12:12:37 stig |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
220 ;; removed some crufty commented-out code |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
221 ;; |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
222 ;; diverged lisp-mode and emacs-lisp-mode...also added lisp keywords. |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
223 ;; |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
224 ;; Revision 2.10 1993/08/13 09:47:06 stig |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
225 ;; added calendar-mode, icon-mode and pascal-mode patterns |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
226 ;; |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
227 ;; commented out hilit-toggle-highlight because I want to phase it out entirely |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
228 ;; |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
229 ;; Revision 2.9 1993/08/13 08:44:22 stig |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
230 ;; added optional case-fold argument to hilit-set-mode-patterns, this case-fold |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
231 ;; parameter is now stored in hilit-patterns-alist. |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
232 ;; |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
233 ;; Revision 2.8 1993/08/12 22:05:03 stig |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
234 ;; fixed some typos in documentation |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
235 ;; |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
236 ;; twiddled some of the color defaults for dark backgrounds |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
237 ;; |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
238 ;; always get 'mono color defaults if (not (x-display-color-p)) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
239 ;; |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
240 ;; added hilit-rehighlight-buffer-quietly to dired-after-readin-hook |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
241 ;; |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
242 ;; fixed bug in hilit-string-find that mishandled strings of the form: "\\" |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
243 ;; |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
244 ;; NEW FUNCTION: hilit-add-mode-pattern... kinda like add-hook for patterns |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
245 ;; |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
246 ;; fixed minor pattern bugs for latex-mode and emacs-lisp-mode |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
247 ;; |
4390 | 248 ;; Revision 2.7 1993/07/30 02:43:01 stig |
249 ;; added const to the list of modifiers for C/C++ types | |
250 ;; | |
251 ;; Revision 2.6 1993/07/30 00:30:54 stig | |
252 ;; now permit selection of arbitrary subexpressions for highlighting... | |
253 ;; fixed keyword patterns for C/C++ using this technique. | |
254 ;; | |
255 ;; Revision 2.5 1993/07/28 05:02:56 stig | |
256 ;; improvements to makefile regular expressions | |
257 ;; removed about 130 lines just by compacting the big defconst for | |
258 ;; hilit-face-translation-table into a mapcar and defining a separate table | |
259 ;; of default faces. | |
260 ;; | |
261 ;; Revision 2.4 1993/07/27 14:09:05 stig | |
262 ;; documented another "known problem" to "head off gripe mail at the pass." | |
263 ;; | |
264 ;; Revision 2.3 1993/07/27 02:15:49 stig | |
265 ;; (hilit-lookup-face-create) incorporated patch which improves it's behavior | |
266 ;; with more than one frame... Still can't have bold on the same face in two | |
267 ;; differrent fonts sizes at the same time... | |
4251 | 268 ;; |
4390 | 269 ;; Revision 2.2 1993/07/27 02:02:59 stig |
270 ;; vastly improved the makefile patterns | |
271 ;; added hook for mh-show-mode | |
272 ;; | |
273 ;; Revision 2.1 1993/07/24 17:46:21 stig | |
274 ;; Phasing out Info-select-hook... Version 19.18 will use Info-selection-hook. | |
275 ;; | |
276 ;; Revision 2.0 1993/07/24 13:50:10 stig | |
277 ;; better documentation and added the function hilit-submit-feedback. | |
278 ;; C-S-l (control shift l) repaints the buffer. Other bindings are optional. | |
279 ;; multi-line highlights no longer cause problems when | |
280 ;; hilit-auto-rehighlight is 'visible | |
281 ;; added hilit-predefined-face-list... | |
282 ;; changed name of hilit-mode-alist to hilit-patterns-alist | |
283 ;; added hilit-message-quietly to mail-setup-hook | |
284 ;; added hilit-parser-alist which can be used to apply different patterns to | |
285 ;; different parts of a buffer. This could be integrated in a far more | |
286 ;; elegant manner, but it presently serves the purpose of not applying | |
287 ;; message header patterns to message bodies in mail-mode and it's kin. | |
288 ;; hilit-set-mode-patterns now takes a list of modes and an optional parse-fn | |
289 ;; | |
4251 | 290 |
291 ;;;;;; AND THIS CAN BE APPLIED TO VM 5.33L_19 | |
292 ;; | |
293 ;; *** ../site/vm5.33L_19/vm-summary.el Fri Jun 4 22:17:11 1993 | |
294 ;; --- ./vm-summary.el Tue Jun 22 16:39:30 1993 | |
295 ;; *************** | |
296 ;; *** 152,158 **** | |
297 ;; (insert "->") | |
298 ;; (delete-char 2) | |
299 ;; (forward-char -2) | |
300 ;; ! (and w vm-auto-center-summary (vm-auto-center-summary)))) | |
301 ;; (and old-window (select-window old-window))))))) | |
302 ;; | |
303 ;; (defun vm-mark-for-display-update (message) | |
304 ;; --- 152,159 ---- | |
305 ;; (insert "->") | |
306 ;; (delete-char 2) | |
307 ;; (forward-char -2) | |
308 ;; ! (and w vm-auto-center-summary (vm-auto-center-summary)) | |
309 ;; ! (run-hooks 'vm-summary-pointer-hook))) | |
310 ;; (and old-window (select-window old-window))))))) | |
311 ;; | |
312 ;; (defun vm-mark-for-display-update (message) | |
313 ;; | |
314 ;;;;;; | |
315 | |
4252 | 316 ;;; Code: |
4251 | 317 |
318 ;; User Options: | |
319 | |
320 (defvar hilit-quietly nil | |
321 "* If non-nil, this inhibits progress indicators during highlighting") | |
322 | |
323 (defvar hilit-auto-highlight t | |
324 "* T if we should highlight all buffers as we find 'em, nil to disable | |
325 automatic highlighting by the find-file hook.") | |
326 | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
327 (defvar hilit-auto-highlight-maxout 60000 ; hilit19 keeps getting bigger... |
4251 | 328 "* auto-highlight is disabled in buffers larger than this") |
329 | |
330 (defvar hilit-auto-rehighlight t | |
331 "* If this is non-nil, then hilit-redraw and hilit-recenter will also | |
4390 | 332 rehighlight part or all of the current buffer. T will rehighlight the |
333 whole buffer, a NUMBER will rehighlight that many lines before and after | |
334 the cursor, and the symbol 'visible' will rehighlight only the visible | |
335 portion of the current buffer. This variable is buffer-local.") | |
4251 | 336 |
337 (make-variable-buffer-local 'hilit-auto-rehighlight) | |
338 | |
339 (defvar hilit-auto-rehighlight-fallback '(20000 . 100) | |
340 "* Cons of the form (THRESHOLD . FALLBACK), where FALLBACK is assigned to | |
4390 | 341 hilit-auto-rehighlight if the size of a newly opened buffer is larger than |
342 THRESHOLD.") | |
4251 | 343 |
344 (defvar hilit-face-check t | |
345 "* T slows down highlighting but permits the user to change fonts without | |
4390 | 346 losing bold and italic faces... T causes hilit-lookup-face-create to dig |
347 through the frame parameters for the current window every time it's called. | |
348 If you never change fonts in emacs, set this to NIL.") | |
349 | |
350 ;; Variables which must be set before loading hilit19. | |
351 | |
352 (defvar hilit-inhibit-rebinding nil | |
353 "If non-nil, this inhibits replacement of recenter, yank, and yank-pop.") | |
354 | |
355 (defvar hilit-inhibit-hooks nil | |
356 "If non-nil, this inhibits installation of hooks for Info, gnus, & vm.") | |
357 | |
358 (defvar hilit-background-mode 'light | |
359 "'mono inhibits color, 'dark or 'light indicate the background brightness.") | |
360 | |
361 (defvar hilit-mode-enable-list nil | |
362 "If a list of modes to exclusively enable or specifically disable. | |
363 The sense of the list is negated if it begins with the symbol 'not'. | |
364 Set this variable before you load hilit19. | |
365 | |
366 Ex: (perl-mode jargon-mode c-mode) ; just perl, C, and jargon modes | |
367 (not text-mode) ; all modes except text mode") | |
4251 | 368 |
369 ;; Variables that are not generally modified directly | |
370 | |
371 (defvar hilit-parser-alist nil | |
372 "alist of major-mode values and parsers called by hilit-rehighlight-buffer. | |
373 | |
374 Parsers for a given mode are IGNORED for partial rehighlights...maybe you'd | |
375 like to make this more universal?") | |
376 | |
377 (defvar hilit-patterns-alist nil | |
378 "alist of major-mode values and default highlighting patterns | |
379 | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
380 A highlighting pattern is a list of the form (start end face), where |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
381 start is a regex, end is either a regex or a match number for start, and face |
4251 | 382 is the name of an entry in hilit-face-translation-table, the name of a face, |
383 or nil (which disables the pattern). | |
384 | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
385 Each entry in the alist is of the form: |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
386 (mode . (case-fold pattern [pattern ...])) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
387 |
4251 | 388 See the hilit-lookup-face-create documentation for valid face names.") |
389 | |
390 (defvar hilit-predefined-face-list (face-list) | |
4390 | 391 "List of faces with which hilit-lookup-face-create will NOT tamper. |
4251 | 392 |
393 If hilit19 is dumped into emacs at your site, you may have to set this in | |
394 your init file.") | |
395 | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
396 (eval-when-compile (setq byte-optimize t)) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
397 |
4251 | 398 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
399 ;; Use this to report bugs: | |
400 | |
4390 | 401 (eval-when-compile (require 'reporter)) ; no compilation gripes |
402 | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
403 (defun hilit-submit-feedback () |
4390 | 404 "Submit feedback on hilit19 to the author: Stig@netcom.com" |
4251 | 405 (interactive) |
406 (require 'reporter) | |
407 (and (y-or-n-p "Do you really want to submit a report on hilit19? ") | |
408 (reporter-submit-bug-report | |
409 "Jonathan Stigelman <Stig@netcom.com>" | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
410 "hilit19.el (Release 2.19)" |
4251 | 411 (and (y-or-n-p "Do you need to include a dump hilit variables? ") |
412 (append | |
413 '( | |
414 hilit-quietly hilit-inhibit-hooks | |
415 hilit-background-mode hilit-mode-enable-list | |
416 hilit-auto-highlight hilit-auto-highlight-maxout | |
417 hilit-auto-rehighlight hilit-auto-rehighlight-fallback | |
418 hilit-face-check | |
419 ) | |
420 (and (y-or-n-p "Have you modified the standard patterns? ") | |
421 (yes-or-no-p "Are your patterns *REALLY* relevant? ") | |
422 '(hilit-parser-alist | |
423 hilit-patterns-alist | |
424 hilit-predefined-face-list | |
425 )))) | |
426 (function | |
427 (lambda () | |
4390 | 428 (and (y-or-n-p "Is this a problem with font display? ") |
429 (insert "\nFrame Configuration:\n====================\n" | |
430 (prin1-to-string (frame-configuration-to-register ?F)) | |
431 "\n" | |
432 )))) | |
4251 | 433 nil |
434 (concat | |
4390 | 435 "This is (check all that apply, and delete what's irrelevant):\n" |
4251 | 436 " [ ] a _MASSIVE_THANK_YOU_ for writing hilit19.el\n" |
4390 | 437 " [ ] An invitation to attend the next Hackers Conference\n" |
4251 | 438 " [ ] You're a RIGHTEOUS HACKER, what are your rates?\n" |
439 " [ ] I've used the force and read the source, but I'M CONFUSED\n" | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
440 " [ ] a PATCH. (output of 'diff -uw old.el new.el' or 'diff -cw')\n" |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
441 " [ ] a SERIOUS AND REPRODUCABLE BUG that is not an EMACS bug\n" |
4251 | 442 " - I *swear* that it's not already mentioned in the KNOWN BUGS\n" |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
443 " - I HAVE CHECKED netcom.com:/pub/stig/src/Beta/hilit19.el.gz\n" |
4251 | 444 " for a newer release that fixes the problem.\n" |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
445 " >> I HAVE ALSO CHECKED netcom.com:/pub/stig/src/Beta/hl319.el.gz\n" |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
446 " This is the alpha version...what will become hilit19 (Beta 3.0).\n" |
4251 | 447 "\n" |
4390 | 448 "Hey Stig, I *know* you're busy but...\n")))) |
4251 | 449 |
450 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
451 ;; | |
452 ;; These faces are either a valid face name, or nil | |
453 ;; if you want to change them, you must do so AFTER hilit19 is loaded | |
454 | |
4390 | 455 (defconst hilit-default-face-table |
456 '( | |
457 ;; used for C/C++ and elisp and perl | |
458 (comment firebrick-italic moccasin italic) | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
459 (include purple Plum1 bold-italic) |
4390 | 460 (define ForestGreen-bold green bold) |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
461 (defun blue-bold cyan-bold bold-italic) |
4390 | 462 (decl RoyalBlue cyan bold) |
463 (type nil yellow nil) | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
464 (keyword RoyalBlue cyan bold-italic) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
465 (label red-underline orange-underlined underline) |
4390 | 466 (string grey40 orange underline) |
467 | |
468 ;; some further faces for Ada | |
469 (struct black-bold white-bold bold) | |
470 (glob-struct magenta Plum1 default-bold-underline) | |
471 (named-param DarkGoldenrod Goldenrod underline) | |
4251 | 472 |
4390 | 473 ;; and anotherone for LaTeX |
474 (crossref DarkGoldenrod Goldenrod underline) | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
475 (formula Goldenrod DarkGoldenrod underline) |
4390 | 476 |
477 ;; compilation buffers | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
478 (active-error default/pink-bold default/DeepPink-bold default-underline) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
479 (error red-bold yellow bold) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
480 (warning blue-italic green italic) |
4251 | 481 |
4390 | 482 ;; Makefiles (some faces borrowed from C/C++ too) |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
483 (rule blue-bold-underline cyan-underline default-bold-underline) |
4390 | 484 |
485 ;; VM, GNUS and Text mode | |
486 (msg-subject blue-bold yellow bold) | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
487 (msg-from purple-bold green bold) |
4390 | 488 (msg-header firebrick-bold cyan italic) |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
489 (msg-separator black/tan-bold black/lightblue nil) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
490 (msg-quote ForestGreen pink italic) |
4251 | 491 |
4390 | 492 (summary-seen grey40 white nil) |
493 (summary-killed grey50 white nil) | |
494 (summary-Xed OliveDrab2 green nil) | |
495 (summary-deleted firebrick white italic) | |
496 (summary-unread RoyalBlue yellow bold) | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
497 (summary-new blue-bold yellow-bold bold-italic) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
498 (summary-current default/skyblue-bold green/dimgrey-bold reverse-default) |
4251 | 499 |
4390 | 500 (gnus-group-unsubscribed grey50 white nil) |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
501 (gnus-group-empty nil nil nil) |
4390 | 502 (gnus-group-full ForestGreen green italic) |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
503 (gnus-group-overflowing firebrick red bold-italic) |
4251 | 504 |
4390 | 505 ;; dired mode |
506 (dired-directory blue-bold cyan bold) | |
507 (dired-link firebrick-italic green italic) | |
508 (dired-ignored ForestGreen moccasin nil) | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
509 (dired-deleted red-bold-italic orange bold-italic) |
4390 | 510 (dired-marked purple Plum1 nil) |
511 | |
512 ;; Info-mode, and jargon-mode.el and prep.ai.mit.edu:/pub/gnu/jargon* | |
513 (jargon-entry blue-bold cyan bold) | |
514 (jargon-xref purple-bold Plum1 italic) | |
515 (jargon-keyword firebrick-underline yellow underline) | |
516 ) | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
517 "alist of default faces (face . (light-default dark-default mono-default)) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
518 |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
519 There is no way for the user to modify this table such that it will have any |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
520 effect upon the translations used by hilit19. Instead, use the function |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
521 hilit-translate AFTER hilit19 has been loaded. |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
522 |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
523 See also the documentation for hilit-lookup-face-create.") |
4251 | 524 |
4390 | 525 (defconst hilit-face-translation-table |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
526 (let ((index (or (and (x-display-color-p) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
527 (cdr (assq hilit-background-mode |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
528 '((light . 1) (dark . 2))))) |
4390 | 529 3))) |
530 (mapcar (function (lambda (x) (cons (car x) (nth index x)))) | |
531 hilit-default-face-table)) | |
532 "alist that maps symbolic face-names to real face names") | |
4251 | 533 |
534 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
535 ;; To translate one face to another... | |
536 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
537 | |
538 (defmacro hilit-translate (&rest args) | |
539 "(hilit-translate FROM TO FROM TO ...): translate each face FROM to the | |
540 value of its TO face. This is like setq for faces. | |
541 | |
542 The function hilit-lookup-face-create will repeatedly translate until no more | |
543 translations for the face exist in the translation table. | |
544 | |
4390 | 545 See the documentation for hilit-lookup-face-create for names of valid faces." |
4251 | 546 (or (zerop (% (length args) 2)) |
547 (error "wrong number of args")) | |
548 (let (cmdl from to) | |
549 (while args | |
550 (setq from (car args) to (nth 1 args) args (nthcdr 2 args) | |
551 cmdl (cons (list 'hilit-associate ''hilit-face-translation-table | |
4390 | 552 (list 'quote from) to) |
4251 | 553 cmdl))) |
554 (cons 'progn cmdl))) | |
555 | |
556 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
557 ;; This function actually translates and then creates the faces... | |
558 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
559 | |
560 (defun hilit-lookup-face-create (face &optional force) | |
561 "Get a FACE, or create it if it doesn't exist. In order for it to | |
562 properly create the face, the followwing naming convention must be used: | |
563 [reverse-](fgcolor[/bgcolor])[-bold][-italic][-underline] | |
564 Example: (hilit-lookup-face-create 'comment-face) might create and return 'red | |
565 | |
566 Each color is either the name of an X color (see .../X11/lib/X11/rgb.txt), | |
567 a hexadecimal specification of the form \"hex-[0-9A-Fa-f]+\", or \"default\". | |
568 | |
569 An optional argument, FORCE, will cause the face to be recopied from the | |
570 default...which is probably of use only if you've changed fonts. | |
571 | |
572 See the documentation for hilit-translate and hilit-face-translation-table." | |
573 | |
574 ;; translate the face ... | |
575 (let ((trec t) visited) | |
576 (while trec | |
577 (cond ((memq face visited) (error "face translation loop: %S" visited)) | |
578 (t (setq visited (cons face visited) | |
579 trec (assq face hilit-face-translation-table)) | |
580 (and trec (setq face (cdr trec))))))) | |
581 | |
582 ;; make the face if we need to... | |
583 (let* ((fn (symbol-name face)) | |
584 (frame (selected-frame)) | |
585 (basefont (cdr (assq 'font (frame-parameters frame)))) | |
586 error fgcolor bgcolor) | |
587 (cond | |
588 ((or (null face) | |
589 (memq face hilit-predefined-face-list)) | |
590 ;; do nothing if the face is nil or if it's predefined. | |
591 ) | |
592 ((or force | |
593 (not (memq face (face-list))) | |
594 (and hilit-face-check | |
595 (not (string= (get face 'basefont) basefont)))) | |
596 (copy-face 'default 'scratch-face) | |
597 (if (string-match "^reverse-?" fn) | |
598 (progn (invert-face 'scratch-face) | |
599 (setq fn (substring fn (match-end 0))))) | |
600 | |
601 ;; parse foreground color | |
602 (if (string-match "^\\(hex-\\)?\\([A-Za-z0-9]+\\)" fn) | |
603 (setq fgcolor (concat | |
604 (if (match-beginning 1) "#") | |
605 (substring fn (match-beginning 2) (match-end 2))) | |
606 fn (substring fn (match-end 0))) | |
607 (error "bad face name %S" face)) | |
608 | |
609 ;; parse background color | |
610 (if (string-match "^/\\(hex-\\)?\\([A-Za-z0-9]+\\)" fn) | |
611 (setq bgcolor (concat | |
612 (and (match-beginning 1) "#") | |
613 (substring fn (match-beginning 2) (match-end 2))) | |
614 fn (substring fn (match-end 0)))) | |
615 | |
616 (and (string= "default" fgcolor) (setq fgcolor nil)) | |
617 (and (string= "default" bgcolor) (setq bgcolor nil)) | |
618 | |
619 ;; catch errors if we can't allocate the color(s) | |
620 (condition-case nil | |
621 (progn (set-face-foreground 'scratch-face fgcolor) | |
622 (set-face-background 'scratch-face bgcolor) | |
623 (copy-face 'scratch-face face) | |
624 (put face 'basefont basefont)) | |
625 (error (message "couldn't allocate color for '%s'" | |
626 (symbol-name face)) | |
627 (setq face 'default) | |
628 (setq error t))) | |
629 (or error | |
630 ;; don't bother w/ bold or italic if we didn't get the color | |
631 ;; we wanted, but ignore errors making the face bold or italic | |
632 ;; if the font isn't available, there's nothing to do about it... | |
633 (progn | |
634 (set-face-font face nil frame) | |
635 (set-face-underline-p face (string-match "underline" fn)) | |
636 (if (string-match ".*bold" fn) | |
7349
c1a962cf4e7a
(hilit-lookup-face-create): Don't put string values into the global face-font
Karl Heuer <kwzh@gnu.org>
parents:
7300
diff
changeset
|
637 ;; make face bold in all frames |
c1a962cf4e7a
(hilit-lookup-face-create): Don't put string values into the global face-font
Karl Heuer <kwzh@gnu.org>
parents:
7300
diff
changeset
|
638 (make-face-bold face nil 'noerr)) |
4251 | 639 (if (string-match ".*italic" fn) |
7349
c1a962cf4e7a
(hilit-lookup-face-create): Don't put string values into the global face-font
Karl Heuer <kwzh@gnu.org>
parents:
7300
diff
changeset
|
640 ;; make face italic in all frames |
c1a962cf4e7a
(hilit-lookup-face-create): Don't put string values into the global face-font
Karl Heuer <kwzh@gnu.org>
parents:
7300
diff
changeset
|
641 (make-face-italic face nil 'noerr)) |
4251 | 642 )) |
643 ))) | |
644 face) | |
645 | |
646 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
647 ;; Region Highlight/Unhighlight code (Both overlay and text-property versions) | |
648 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
649 | |
650 (defsubst hilit-region-set-face (start end face-name &optional prio prop) | |
651 "Highlight region from START to END using FACE and, optionally, PRIO. | |
652 The optional 5th arg, PROP is a property to set instead of 'hilit." | |
653 (let ((overlay (make-overlay start end))) | |
654 (overlay-put overlay 'face face-name) | |
655 (overlay-put overlay (or prop 'hilit) t) | |
656 (and prio (overlay-put overlay 'priority prio)))) | |
657 | |
658 (defun hilit-unhighlight-region (start end &optional quietly) | |
659 "Unhighlights the region from START to END, optionally in a QUIET way" | |
660 (interactive "r") | |
661 (or quietly hilit-quietly (message "Unhighlighting")) | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
662 (let ((lstart 0)) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
663 (while (and start (> start lstart) (< start end)) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
664 (mapcar (function (lambda (ovr) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
665 (and (overlay-get ovr 'hilit) (delete-overlay ovr)))) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
666 (overlays-at start)) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
667 (setq lstart start start (next-overlay-change start)))) |
4251 | 668 (or quietly hilit-quietly (message "Done unhighlighting"))) |
669 | |
670 ;;;; These functions use text properties instead of overlays. Text properties | |
671 ;;;; are copied through kill and yank...which might be convenient, but is not | |
672 ;;;; terribly efficient as of 19.12, ERGO it's been disabled | |
673 ;; | |
674 ;;(defsubst hilit-region-set-face (start end face-name &optional prio prop) | |
675 ;; "Highlight region from START to END using FACE and, optionally, PRIO. | |
676 ;;The optional 5th arg, PROP is a property to set instead of 'hilit." | |
677 ;; (put-text-property start end 'face face-name) | |
678 ;; ) | |
679 ;; | |
680 ;;(defun hilit-unhighlight-region (start end &optional quietly) | |
681 ;; "Unhighlights the region from START to END, optionally in a QUIET way" | |
682 ;; (interactive "r") | |
683 ;; (let ((buffer-read-only nil) | |
684 ;; (bm (buffer-modified-p))) | |
685 ;; (remove-text-properties start end '(face)) | |
686 ;; (set-buffer-modified-p bm))) | |
687 ;;;; | |
688 | |
689 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
690 ;; Pattern Application code and user functions | |
691 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
692 | |
693 (defun hilit-highlight-region (start end &optional patterns quietly) | |
694 "Highlights the area of the buffer between START and END (the region when | |
695 interactive). Without the optional PATTERNS argument, the pattern for | |
696 major-mode is used. If PATTERNS is a symbol, then the patterns associated | |
697 with that symbol are used. QUIETLY suppresses progress messages if | |
698 non-nil." | |
699 (interactive "r") | |
700 (cond ((null patterns) | |
701 (setq patterns (cdr (assq major-mode hilit-patterns-alist)))) | |
702 ((symbolp patterns) | |
703 (setq patterns (cdr (assq patterns hilit-patterns-alist))))) | |
704 ;; txt prop: (setq patterns (reverse patterns)) | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
705 (let ((case-fold-search (car patterns)) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
706 (prio (1- (length patterns))) |
4251 | 707 ;; txt prop: (buffer-read-only nil) |
708 ;; txt prop: (bm (buffer-modified-p)) | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
709 p pstart pend face mstart (puke-count 0)) |
4251 | 710 ;; txt prop: (unwind-protect |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
711 (setq patterns (cdr patterns)) ; remove case-fold from head of pattern |
4251 | 712 (save-excursion |
713 (save-restriction | |
714 (narrow-to-region start end) | |
715 (while patterns | |
716 (setq p (car patterns)) | |
717 (setq pstart (car p) | |
718 pend (nth 1 p) | |
719 face (hilit-lookup-face-create (nth 2 p))) | |
720 (if (not face) ; skipped if nil | |
721 nil | |
722 (or quietly hilit-quietly | |
723 (message "highlighting %d: %s%s" prio pstart | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
724 (if (stringp pend) (concat " ... " pend) ""))) |
4251 | 725 (goto-char (point-min)) |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
726 (condition-case msg |
4251 | 727 (cond |
728 ((symbolp pstart) | |
729 ;; inner loop -- special function to find pattern | |
730 (let (region) | |
731 (while (setq region (funcall pstart pend)) | |
732 (hilit-region-set-face (car region) (cdr region) | |
733 face prio)))) | |
4390 | 734 ((stringp pend) |
4251 | 735 ;; inner loop -- regex-start ... regex-end |
736 (while (re-search-forward pstart nil t nil) | |
737 (goto-char (setq mstart (match-beginning 0))) | |
738 (if (re-search-forward pend nil t nil) | |
739 (hilit-region-set-face mstart (match-end 0) | |
740 face prio) | |
741 (forward-char 1)))) | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
742 ((numberp pend) |
4251 | 743 ;; inner loop -- just one regex to match whole pattern |
744 (while (re-search-forward pstart nil t nil) | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
745 (goto-char (match-end pend)) |
4390 | 746 (hilit-region-set-face (match-beginning pend) |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
747 (match-end pend) face prio))) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
748 (t (error "malformed pattern"))) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
749 (error (if (> (setq puke-count (1+ puke-count)) 1) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
750 (error msg) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
751 (message "Error: '%s'" msg) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
752 (ding) (sit-for 4))))) |
4251 | 753 (setq prio (1- prio) |
754 patterns (cdr patterns))) | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
755 )) |
4251 | 756 (or quietly hilit-quietly (message "")) ; "Done highlighting" |
757 ;; txt prop: (set-buffer-modified-p bm)) ; unwind protection | |
758 )) | |
759 | |
760 (defun hilit-rehighlight-region (start end &optional quietly) | |
761 "Re-highlights the region, optionally in a QUIET way" | |
762 (interactive "r") | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
763 (save-restriction |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
764 (widen) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
765 (setq start (apply 'min start (mapcar 'overlay-start (overlays-at start))) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
766 end (apply 'max end (mapcar 'overlay-end (overlays-at end)))) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
767 (hilit-unhighlight-region start end quietly) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
768 (hilit-highlight-region start end nil quietly))) |
4251 | 769 |
770 (defun hilit-rehighlight-buffer (&optional quietly) | |
771 "Re-highlights the buffer, optionally in a QUIET way" | |
772 (interactive "") | |
773 (let ((parse-fn (cdr (assq major-mode hilit-parser-alist)))) | |
774 (if parse-fn | |
775 (funcall parse-fn quietly) | |
776 (hilit-rehighlight-region (point-min) (point-max) quietly))) | |
777 nil) | |
778 | |
779 (defun hilit-rehighlight-buffer-quietly () | |
780 (hilit-rehighlight-buffer t)) | |
781 | |
782 (defun hilit-rehighlight-message (quietly) | |
783 "Highlight a buffer containing a news article or mail message." | |
784 (save-excursion | |
785 (goto-char (point-min)) | |
786 (re-search-forward "^$" nil 'noerr) | |
787 (hilit-unhighlight-region (point-min) (point-max) quietly) | |
788 (hilit-highlight-region (point-min) (point) 'msg-header quietly) | |
789 (hilit-highlight-region (point) (point-max) 'msg-body quietly))) | |
790 | |
791 (defalias 'hilit-highlight-buffer 'hilit-rehighlight-buffer) | |
792 | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
793 ;; Well, I want to remove this function...there's one sure way to find out if |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
794 ;; anyone uses it or not...and that's to comment it out. |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
795 ;; |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
796 ;; (defun hilit-toggle-highlight (arg) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
797 ;; "Locally toggle highlighting. With arg, forces highlighting off." |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
798 ;; (interactive "P") |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
799 ;; ;; FIXME -- this loses numeric information in hilit-auto-rehighlight |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
800 ;; (setq hilit-auto-rehighlight |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
801 ;; (and (not arg) (not hilit-auto-rehighlight))) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
802 ;; (if hilit-auto-rehighlight |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
803 ;; (hilit-rehighlight-buffer) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
804 ;; (hilit-unhighlight-region (point-min) (point-max))) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
805 ;; (message "Rehighlighting is set to %s" hilit-auto-rehighlight)) |
4251 | 806 |
807 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
808 ;; HOOKS | |
809 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
810 | |
811 (defun hilit-find-file-hook () | |
812 "Find-file hook for hilit package. See the variable hilit-auto-highlight." | |
813 (cond ((and hilit-auto-highlight | |
814 (assq major-mode hilit-patterns-alist)) | |
815 (if (> buffer-saved-size (car hilit-auto-rehighlight-fallback)) | |
816 (setq hilit-auto-rehighlight | |
817 (cdr hilit-auto-rehighlight-fallback))) | |
818 (if (> buffer-saved-size hilit-auto-highlight-maxout) nil | |
819 (hilit-rehighlight-buffer) | |
820 (set-buffer-modified-p nil))))) | |
821 | |
822 (defun hilit-repaint-command (arg) | |
823 "Rehighlights according to the value of hilit-auto-rehighlight, or the | |
824 prefix argument if that is specified. | |
825 \t\\[hilit-repaint-command]\t\trepaint according to hilit-auto-rehighlight | |
826 \t^U \\[hilit-repaint-command]\trepaint entire buffer | |
827 \t^U - \\[hilit-repaint-command]\trepaint visible portion of buffer | |
828 \t^U n \\[hilit-repaint-command]\trepaint n lines to either side of point" | |
829 (interactive "P") | |
830 (let (st en quietly) | |
831 (or arg (setq arg hilit-auto-rehighlight)) | |
832 (cond ((or (eq arg 'visible) (eq arg '-)) | |
833 (setq st (window-start) en (window-end) quietly t)) | |
834 ((numberp arg) | |
835 (setq st (save-excursion (forward-line (- arg)) (point)) | |
836 en (save-excursion (forward-line arg) (point)))) | |
837 (arg | |
838 (hilit-rehighlight-buffer))) | |
839 (if st | |
840 (hilit-rehighlight-region st en quietly)))) | |
841 | |
842 (defun hilit-recenter (arg) | |
843 "Recenter, then rehighlight according to hilit-auto-rehighlight. If called | |
844 with an unspecified prefix argument (^U but no number), then a rehighlight of | |
845 the entire buffer is forced." | |
846 (interactive "P") | |
847 (recenter arg) | |
848 ;; force display update | |
849 (sit-for 0) | |
850 (hilit-repaint-command (consp arg))) | |
851 | |
852 (defun hilit-yank (arg) | |
853 "Yank with rehighlighting" | |
854 (interactive "*P") | |
855 (let ((transient-mark-mode nil)) | |
856 (yank arg) | |
4390 | 857 (and hilit-auto-rehighlight |
858 (hilit-rehighlight-region (region-beginning) (region-end) t)) | |
4251 | 859 (setq this-command 'yank))) |
860 | |
861 (defun hilit-yank-pop (arg) | |
862 "Yank-pop with rehighlighting" | |
863 (interactive "*p") | |
864 (let ((transient-mark-mode nil)) | |
865 (yank-pop arg) | |
4390 | 866 (and hilit-auto-rehighlight |
867 (hilit-rehighlight-region (region-beginning) (region-end) t)) | |
4251 | 868 (setq this-command 'yank))) |
869 | |
870 ;;; this line highlighting stuff is untested. play with it only if you feel | |
871 ;;; adventurous...don't ask me to fix it...though you're welcome to. -- Stig | |
872 ;; | |
873 ;; (defun hilit-rehighlight-line-quietly (&rest args) | |
874 ;; "Quietly rehighlight just this line. | |
875 ;; Useful as an after change hook in VM/gnus summary buffers and dired buffers. | |
876 ;; If only there were an after-change-function, that is..." | |
877 ;; (save-excursion | |
878 ;; (push-mark nil t) | |
879 ;; (hilit-rehighlight-yank-region) | |
880 ;; (and orig-achange-function (apply orig-achange-function args)))) | |
881 ;; | |
882 ;; (defun hilit-install-line-hooks () | |
883 ;; (make-variable-buffer-local 'after-change-function) | |
884 ;; (make-local-variable 'orig-achange-function) | |
885 ;; (setq orig-achange-function after-change-function) | |
886 ;; (setq after-change-function 'hilit-rehighlight-line-quietly)) | |
887 | |
888 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
889 ;; Wysiwyg Stuff... take it away and build a whole package around it! | |
890 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
891 ;; | |
892 ;; ; For the Jargon-impaired, WYSIWYG === What You See Is What You Get | |
893 ;; ; Sure, it sucks to type. Oh, well. | |
894 ;; (defun hilit-wysiwyg-replace () | |
895 ;; "Replace overstruck text with normal text that's been overlayed with the | |
896 ;; appropriate text attribute. Suitable for a find-file hook." | |
897 ;; (save-excursion | |
898 ;; (goto-char (point-min)) | |
899 ;; (let ((wysb (hilit-lookup-face-create 'wysiwyg-bold)) | |
900 ;; (wysu (hilit-lookup-face-create 'wysiwyg-underline)) | |
901 ;; (bmod (buffer-modified-p))) | |
902 ;; (while (re-search-forward "\\(.\b.\\)+" nil t) | |
903 ;; (let ((st (match-beginning 0)) (en (match-end 0))) | |
904 ;; (goto-char st) | |
905 ;; (if (looking-at "_") | |
906 ;; (hilit-region-set-face st en wysu 100 'wysiwyg) | |
907 ;; (hilit-region-set-face st en wysb 100 'wysiwyg)) | |
908 ;; (while (and (< (point) en) (looking-at ".\b")) | |
909 ;; (replace-match "") (forward-char)) | |
910 ;; )) | |
911 ;; (set-buffer-modified-p bmod)))) | |
912 ;; | |
913 ;; ; is this more appropriate as a write-file-hook or a write-contents-hook? | |
914 ;; (defun hilit-wysiwyg-write-repair () | |
915 ;; "Replace wysiwyg overlays with overstrike text." | |
916 ;; (message "*sigh* hilit-wysiwyg-write-repair not implemented yet") | |
917 ;; | |
918 ;; For efficiency, this hook should copy the current buffer to a scratch | |
919 ;; buffer and do it's overstriking there. Overlays are not copied, so it'll | |
920 ;; be necessary to hop back and forth. This is OK since you're not fiddling | |
921 ;; with--making or deleting--any overlays. THEN write the new buffer, | |
922 ;; delete it, and RETURN T. << important | |
923 ;; | |
924 ;; Just so you know...there is already an emacs function called | |
925 ;; underline-region that does underlining. I think that the thing to do is | |
926 ;; extend that to do overstriking as well. | |
927 ;; | |
928 ;; (while (< start end) | |
929 ;; (mapcar (function (lambda (ovr) | |
930 ;; (and (overlay-get ovr 'hilit) (delete-overlay ovr)))) | |
931 ;; (overlays-at start)) | |
932 ;; (setq start (next-overlay-change start))) | |
933 ;; nil) | |
934 | |
935 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
936 ;; Initialization. | |
937 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
938 | |
4390 | 939 (and (not hilit-inhibit-rebinding) |
940 window-system | |
941 (progn | |
942 (substitute-key-definition 'yank 'hilit-yank | |
943 (current-global-map)) | |
944 (substitute-key-definition 'yank-pop 'hilit-yank-pop | |
945 (current-global-map)) | |
946 (substitute-key-definition 'recenter 'hilit-recenter | |
947 (current-global-map)))) | |
4251 | 948 |
949 (global-set-key [?\C-\S-l] 'hilit-repaint-command) | |
950 | |
951 (and window-system | |
952 (add-hook 'find-file-hooks 'hilit-find-file-hook t)) | |
953 | |
4390 | 954 (eval-when-compile (require 'gnus)) ; no compilation gripes |
955 | |
4251 | 956 (and (not hilit-inhibit-hooks) |
957 window-system | |
958 (condition-case c | |
959 (progn | |
960 | |
961 ;; BUFFER highlights... | |
962 (mapcar (function | |
963 (lambda (hook) | |
964 (add-hook hook 'hilit-rehighlight-buffer-quietly))) | |
965 '( | |
4390 | 966 Info-selection-hook |
967 | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
968 ;; runs too early vm-summary-mode-hooks |
4251 | 969 vm-summary-pointer-hook |
4390 | 970 vm-preview-message-hook |
971 vm-show-message-hook | |
972 | |
973 gnus-article-prepare-hook | |
4251 | 974 gnus-summary-prepare-hook |
975 gnus-group-prepare-hook | |
976 | |
977 rmail-show-message-hook | |
978 mail-setup-hook | |
4390 | 979 mh-show-mode-hook |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
980 |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
981 dired-after-readin-hook |
4251 | 982 )) |
983 | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
984 ;; rehighlight only visible part of summary buffer for speed. |
4251 | 985 (add-hook 'gnus-mark-article-hook |
986 (function | |
987 (lambda () | |
988 (or (memq gnus-current-article gnus-newsgroup-marked) | |
989 (gnus-summary-mark-as-read gnus-current-article)) | |
990 (gnus-summary-set-current-mark) | |
991 (save-excursion | |
992 (set-buffer gnus-summary-buffer) | |
993 (hilit-rehighlight-region (window-start) | |
994 (window-end) t) | |
995 )))) | |
996 ;; only need prepare article hook | |
997 ;; | |
998 ;; (add-hook 'gnus-select-article-hook | |
999 ;; '(lambda () (save-excursion | |
1000 ;; (set-buffer gnus-article-buffer) | |
1001 ;; (hilit-rehighlight-buffer)))) | |
1002 ) | |
1003 (error (message "Error loading highlight hooks: %s" c) | |
1004 (ding) (sit-for 1)))) | |
1005 | |
1006 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
1007 ;; Default patterns for various modes. | |
1008 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
1009 | |
1010 ;;; do I need this? I changed the defconst to a defvar because defconst is | |
1011 ;;; inappropriate, but I don't know why I wanted hilit-patterns-alist to be | |
1012 ;;; reset on every reload... | |
1013 | |
1014 (setq hilit-patterns-alist nil) | |
1015 | |
1016 (defun hilit-associate (alist key val) | |
1017 "creates, or destructively replaces, the pair (key . val) in alist" | |
1018 (let ((oldentry (assq key (eval alist)))) | |
1019 (if oldentry | |
1020 (setcdr oldentry val) | |
1021 (set alist (cons (cons key val) (eval alist)))))) | |
1022 | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1023 (defun hilit-set-mode-patterns (modelist patterns |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1024 &optional parse-fn case-fold) |
4390 | 1025 "Sets the default highlighting patterns for MODE to PATTERNS. |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1026 See the variable hilit-mode-enable-list. |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1027 |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1028 Takes optional arguments PARSE-FN and CASE-FOLD." |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1029 ;; change pattern |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1030 (mapcar (function (lambda (p) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1031 (and (stringp (car p)) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1032 (null (nth 1 p)) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1033 (setcar (cdr p) 0)))) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1034 patterns) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1035 (setq patterns (cons case-fold patterns)) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1036 |
4251 | 1037 (or (consp modelist) (setq modelist (list modelist))) |
1038 (let (ok (flip (eq (car hilit-mode-enable-list) 'not))) | |
1039 (mapcar (function | |
1040 (lambda (m) | |
1041 (setq ok (or (null hilit-mode-enable-list) | |
1042 (memq m hilit-mode-enable-list))) | |
1043 (and flip (setq ok (not ok))) | |
1044 (and ok | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1045 (progn |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1046 (and parse-fn |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1047 (hilit-associate 'hilit-parser-alist m parse-fn)) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1048 (hilit-associate 'hilit-patterns-alist m patterns))))) |
4251 | 1049 modelist))) |
1050 | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1051 (defun hilit-add-pattern (pstart pend face &optional mode first) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1052 "Highlight pstart with face for the current major-mode. |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1053 Optionally, place the new pattern first in the pattern list" |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1054 (interactive "sPattern start regex: \nsPattern end regex (default none): \nxFace: ") |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1055 |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1056 (and (equal pstart "") (error "Must specify starting regex")) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1057 (cond ((equal pend "") (setq pend 0)) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1058 ((string-match "^[0-9]+$" pend) (setq pend (string-to-int pend)))) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1059 (or mode (setq mode major-mode)) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1060 (let ((old-patterns (cdr (assq mode hilit-patterns-alist))) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1061 (new-pat (list pstart pend face))) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1062 (cond ((not old-patterns) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1063 (hilit-set-mode-patterns mode (list new-pat))) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1064 (first |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1065 (setcdr old-patterns (cons new-pat (cdr old-patterns)))) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1066 (t |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1067 (nconc old-patterns (list new-pat))))) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1068 (and (interactive-p) (hilit-rehighlight-buffer))) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1069 |
4251 | 1070 (defun hilit-string-find (qchar) |
1071 "looks for a string and returns (start . end) or NIL. The argument QCHAR | |
1072 is the character that would precede a character constant double quote. | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1073 Finds strings delimited by double quotes. The first double quote may not be |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1074 preceded by QCHAR and the closing double quote may not be preceded by an odd |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1075 number of backslashes." |
4251 | 1076 (let (st en) |
1077 (while (and (search-forward "\"" nil t) | |
1078 (eq qchar (char-after (1- (setq st (match-beginning 0))))))) | |
1079 (while (and (search-forward "\"" nil t) | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1080 (save-excursion |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1081 (setq en (point)) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1082 (forward-char -1) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1083 (skip-chars-backward "\\\\") |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1084 (forward-char 1) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1085 (not (zerop (% (- en (point)) 2)))))) |
4251 | 1086 (and en (cons st en)))) |
1087 | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1088 ;; return types on same line... |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1089 ;; ("^[a-zA-z].*\\(\\w\\|[$_]\\)+\\s *\\(\\(\\w\\|[$_]\\)+\\s *((\\|(\\)[^)]*)+" nil defun) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1090 |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1091 ;; On another note, a working pattern for grabbing function definitions for C is |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1092 ;; |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1093 ;; ("^[a-zA-Z_]+.*[;{]$" nil ForestGreen) ; global defns ( start at col 1 ) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1094 ;; ("^[a-zA-Z_]+.*(" ")" defun) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1095 ;; ; defuns assumed to start at col 1, not with # or { |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1096 ;; |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1097 ;; this will make external declarations/definitions green, and function |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1098 ;; definitions the defun face. Hmmm - seems to work for me anyway. |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1099 |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1100 (let ((comments '(("/\\*" "\\*/" comment))) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1101 (c++-comments '(("//.*$" nil comment) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1102 ("^/.*$" nil comment))) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1103 (strings '((hilit-string-find ?' string))) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1104 (preprocessor '(("^#[ \t]*\\(undef\\|define\\).*$" "[^\\]$" define) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1105 ("^#.*$" nil include)))) |
4251 | 1106 |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1107 (hilit-set-mode-patterns |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1108 '(c-mode c++-c-mode elec-c-mode) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1109 (append |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1110 comments strings preprocessor |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1111 '( |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1112 ;; function decls are expected to have types on the previous line |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1113 ("^\\(\\w\\|[$_]\\)+\\s *\\(\\(\\w\\|[$_]\\)+\\s *((\\|(\\)[^)]*)+" nil defun) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1114 ("^\\(typedef\\|struct\\|union\\|enum\\).*$" nil decl) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1115 ;; datatype -- black magic regular expression |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1116 ("[ \n\t({]\\(\\(const\\|register\\|volatile\\|unsigned\\|extern\\|static\\)\\s +\\)*\\(\\(\\w\\|[$_]\\)+_t\\|float\\|double\\|void\\|char\\|short\\|int\\|long\\|FILE\\|\\(\\(struct\\|union\\|enum\\)\\([ \t]+\\(\\w\\|[$_]\\)*\\)\\)\\)\\(\\s +\\*+)?\\|[ \n\t;()]\\)" nil type) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1117 ;; key words |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1118 ("[^_]\\<\\(return\\|goto\\|if\\|else\\|case\\|default\\|switch\\|break\\|continue\\|while\\|do\\|for\\)\\>[^_]" 1 keyword) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1119 ))) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1120 |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1121 (hilit-set-mode-patterns |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1122 'c++-mode |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1123 (append |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1124 comments c++-comments strings preprocessor |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1125 '( |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1126 ;; function decls are expected to have types on the previous line |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1127 ("^\\(\\(\\w\\|[$_]\\)+::\\)?\\(\\w\\|[$_]\\)+\\s *\\(\\(\\w\\|[$_]\\)+\\s *((\\|(\\)[^)]*)+" nil defun) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1128 ("^\\(\\(\\w\\|[$_]\\)+[ \t]*::[ \t]*\\)?\\(\\(\\w\\|[$_]\\)+\\|operator.*\\)\\s *\\(\\(\\w\\|[$_]\\)+\\s *((\\|(\\)[^)]*)+" nil defun) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1129 ("^\\(template\\|typedef\\|struct\\|union\\|class\\|enum\\|public\\|private\\|protected\\).*$" nil decl) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1130 ;; datatype -- black magic regular expression |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1131 ("[ \n\t({]\\(\\(const\\|register\\|volatile\\|unsigned\\|extern\\|static\\)\\s +\\)*\\(\\(\\w\\|[$_]\\)+_t\\|float\\|double\\|void\\|char\\|short\\|int\\|long\\|FILE\\|\\(\\(struct\\|union\\|enum\\|class\\)\\([ \t]+\\(\\w\\|[$_]\\)*\\)\\)\\)\\(\\s +\\*+)?\\|[ \n\t;()]\\)" nil type) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1132 ;; key words |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1133 ("[^_]\\<\\(return\\|goto\\|if\\|else\\|case\\|default\\|switch\\|break\\|continue\\|while\\|do\\|for\\|public\\|protected\\|private\\|delete\\|new\\)\\>[^_]" |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1134 1 keyword))))) |
4251 | 1135 |
1136 (hilit-set-mode-patterns | |
1137 'perl-mode | |
1138 '(("\\s #.*$" nil comment) | |
1139 ("^#.*$" nil comment) | |
1140 ("\"[^\\\"]*\\(\\\\\\(.\\|\n\\)[^\\\"]*\\)*\"" nil string) | |
1141 ("^\\(__....?__\\|\\s *\\sw+:\\)" nil label) | |
1142 ("^require.*$" nil include) | |
1143 ("^package.*$" nil decl) | |
1144 ("^\\s *sub\\s +\\(\\w\\|[_']\\)+" nil defun) | |
1145 ("\\b\\(do\\|if\\|unless\\|while\\|until\\|else\\|elsif\\|for\\|foreach\\|continue\\|next\\|redo\\|last\\|goto\\|return\\|die\\|exit\\)\\b" nil keyword))) | |
1146 | |
1147 (hilit-set-mode-patterns | |
1148 'ada-mode | |
1149 '(;; comments | |
1150 ("--.*$" nil comment) | |
1151 ;; main structure | |
1152 ("[ \t\n]procedure[ \t]" "\\([ \t]\\(is\\|renames\\)\\|);\\)" glob-struct) | |
1153 ("[ \t\n]task[ \t]" "[ \t]is" glob-struct) | |
1154 ("[ \t\n]function[ \t]" "return[ \t]+[A-Za-z_0-9]+[ \t]*\\(is\\|;\\|renames\\)" glob-struct) | |
1155 ("[ \t\n]package[ \t]" "[ \t]\\(is\\|renames\\)" glob-struct) | |
1156 ;; if there is nothing before "private", it is part of the structure | |
1157 ("^[ \t]*private[ \t\n]" nil glob-struct) | |
1158 ;; if there is no indentation before the "end", then it is most | |
1159 ;; probably the end of the package | |
1160 ("^end.*$" ";" glob-struct) | |
1161 ;; program structure -- "null", "delay" and "terminate" omitted | |
1162 ("[ \n\t]\\(in\\|out\\|select\\|if\\|else\\|case\\|when\\|and\\|or\\|not\\|accept\\|loop\\|do\\|then\\|elsif\\|else\\|for\\|while\\|exit\\)[ \n\t;]" nil struct) | |
1163 ;; block structure | |
1164 ("[ \n\t]\\(begin\\|end\\|declare\\|exception\\|generic\\|raise\\|return\\|package\\|body\\)[ \n\t;]" nil struct) | |
1165 ;; type declaration | |
1166 ("^[ \t]*\\(type\\|subtype\\).*$" ";" decl) | |
1167 ("[ \t]+is record.*$" "end record;" decl) | |
1168 ;; "pragma", "with", and "use" are close to C cpp directives | |
1169 ("^[ \t]*\\(with\\|pragma\\|use\\)" ";" include) | |
1170 ;; nice for named parameters, but not so beautiful in case statements | |
1171 ("[A-Za-z_0-9.]+[ \t]*=>" nil named-param) | |
1172 ;; string constants probably not everybody likes this one | |
1173 ("\"" ".*\"" string))) | |
1174 | |
1175 (hilit-set-mode-patterns | |
1176 'fortran-mode | |
1177 '(("^[*Cc].*$" nil comment) | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1178 ("'[^'\n]*'" nil string) |
4251 | 1179 ("\\(^[ \t]*[0-9]+\\|[ \t]continue[ \t\n]\\|format\\)" nil define) |
1180 ("[ \t]\\(do\\|do[ \t]*[0-9]+\\|go[ \t]*to[ \t]*[0-9]+\\|end[ \t]*do\\|if\\|else[ \t]*if\\|then\\|else\\|end[ \t]*if\\)[ \t\n(]" nil define) | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1181 ("[ \t]\\(call\\|program\\|subroutine\\|function\\|stop\\|return\\|end\\|include\\)[ \t\n]" nil include) |
4251 | 1182 ("[ \t]\\(parameter[\t\n ]*([^)]*)\\|data\\|save\\|common[ \t\n]*/[^/]*/\\)" |
1183 nil decl) | |
1184 ("^ ." nil type) | |
1185 ("implicit[ \t]*none" nil decl) | |
1186 ("\\([ \t]\\|implicit[ \t]*\\)\\(dimension\\|integer\\|real\\|double[ \t]*precision\\|character\\|logical\\|complex\\|double[ \t]*complex\\)\\([*][0-9]*\\|[ \t\n]\\)" nil keyword) | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1187 ) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1188 nil 'case-insensitive) |
4251 | 1189 |
1190 (hilit-set-mode-patterns | |
1191 '(m2-mode modula-2-mode) | |
1192 '(("(\\*" "\\*)" comment) | |
1193 (hilit-string-find ?\\ string) | |
1194 ("^[ \t]*PROCEDURE[ \t]+\\w+[^ \t(;]*" nil defun) | |
1195 ("\\<\\(RECORD\\|ARRAY\\|OF\\|POINTER\\|TO\\|BEGIN\\|END\\|FOR\\|IF\\|THEN\\|ELSE\\|ELSIF\\|CASE\\|WHILE\\|DO\\|MODULE\\|FROM\\|RETURN\\|IMPORT\\|EXPORT\\|VAR\\|LOOP\\|UNTIL\\|\\DEFINITION\\|IMPLEMENTATION\\|AND\\|OR\\|NOT\\|CONST\\|TYPE\\|QUALIFIED\\)\\>" nil keyword) | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1196 ) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1197 nil 'case-insensitive) |
4251 | 1198 |
1199 (hilit-set-mode-patterns 'prolog-mode | |
1200 '(("/\\*" "\\*/" comment) | |
1201 ("%.*$" nil comment) | |
1202 (":-" nil defun) | |
1203 ("!" nil label) | |
1204 ("\"[^\\\"]*\\(\\\\\\(.\\|\n\\)[^\\\"]*\\)*\"" nil string) | |
1205 ("\\b\\(is\\|mod\\)\\b" nil keyword) | |
1206 ("\\(->\\|-->\\|;\\|==\\|\\\\==\\|=<\\|>=\\|<\\|>\\|=\\|\\\\=\\|=:=\\|=\\\.\\\.\\|\\\\\\\+\\)" nil decl) | |
1207 ("\\(\\\[\\||\\|\\\]\\)" nil include))) | |
1208 | |
1209 (hilit-set-mode-patterns | |
1210 '( | |
1211 LaTeX-mode japanese-LaTeX-mode SliTeX-mode | |
1212 japanese-SliTeX-mode FoilTeX-mode latex-mode | |
1213 ) | |
1214 '( | |
1215 ;; comments | |
1216 ("[^\\]%.*$" nil comment) | |
1217 | |
1218 ;; the following two match \foo[xx]{xx} or \foo*{xx} or \foo{xx} | |
1219 ("\\\\\\(sub\\)*\\(paragraph\\|section\\)\\(\*\\|\\[.*\\]\\)?{" "}" | |
1220 keyword) | |
1221 ("\\\\\\(chapter\\|part\\)\\(\*\\|\\[.*\\]\\)?{" "}" keyword) | |
1222 ("\\\\footnote\\(mark\\|text\\)?{" "}" keyword) | |
1223 ("\\\\[a-z]+box" nil keyword) | |
1224 ("\\\\\\(v\\|h\\)space\\(\*\\)?{" "}" keyword) | |
1225 | |
1226 ;; (re-)define new commands/environments/counters | |
1227 ("\\\\\\(re\\)?new\\(environment\\|command\\){" "}" defun) | |
1228 ("\\\\new\\(length\\|theorem\\|counter\\){" "}" defun) | |
1229 | |
1230 ;; various declarations/definitions | |
1231 ("\\\\\\(setlength\\|settowidth\\|addtolength\\|setcounter\\|addtocounter\\)" nil define) | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1232 ("\\\\\\(title\\|author\\|date\\|thanks\\){" "}" define) |
4251 | 1233 |
1234 ("\\\\documentstyle\\(\\[.*\\]\\)?{" "}" decl) | |
1235 ("\\\\\\(begin\\|end\\|nofiles\\|includeonly\\){" "}" decl) | |
1236 ("\\\\\\(raggedright\\|makeindex\\|makeglossary\\|maketitle\\)\\b" nil | |
1237 decl) | |
1238 ("\\\\\\(pagestyle\\|thispagestyle\\|pagenumbering\\){" "}" decl) | |
1239 ("\\\\\\(normalsize\\|small\\|footnotesize\\|scriptsize\\|tiny\\|large\\|Large\\|LARGE\\|huge\\|Huge\\)\\b" nil decl) | |
1240 ("\\\\\\(appendix\\|tableofcontents\\|listoffigures\\|listoftables\\)\\b" | |
1241 nil decl) | |
1242 ("\\\\\\(bf\\|em\\|it\\|rm\\|sf\\|sl\\|ss\\|tt\\)\\b" nil decl) | |
1243 | |
1244 ;; label-like things | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1245 ("\\\\item\\(\\[[^]]*\\]\\)?" nil label) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1246 ("\\\\caption\\(\\[[^]]*\\]\\)?{" "}" label) |
4251 | 1247 |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1248 ;; formulas |
6364
59663885e8c7
(LaTeX patterns): Don't match \( and \[ following a \.
Richard M. Stallman <rms@gnu.org>
parents:
4739
diff
changeset
|
1249 ("[^\\]\\\\(" "\\\\)" formula) ; \( \) |
59663885e8c7
(LaTeX patterns): Don't match \( and \[ following a \.
Richard M. Stallman <rms@gnu.org>
parents:
4739
diff
changeset
|
1250 ("[^\\]\\\\\\[" "\\\\\\]" formula) ; \[ \] |
7027
1b662238db6f
Don't treat $ as special if escaped.
Karl Heuer <kwzh@gnu.org>
parents:
6364
diff
changeset
|
1251 ("[^\\$]\\($\\($[^$]*\\$\\|[^$]*\\)\\$\\)" 1 formula) ; '$...$' or '$$...$$' |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1252 |
4251 | 1253 ;; things that bring in external files |
1254 ("\\\\\\(include\\|input\\|bibliography\\){" "}" include) | |
1255 | |
4390 | 1256 ;; "wysiwyg" emphasis -- these don't work with nested expressions |
1257 ;; ("{\\\\\\(em\\|it\\|sl\\)" "}" italic) | |
1258 ;; ("{\\\\bf" "}" bold) | |
4251 | 1259 |
1260 ("``" "''" string) | |
1261 | |
1262 ;; things that do some sort of cross-reference | |
1263 ("\\\\\\(\\(no\\)?cite\\|\\(page\\)?ref\\|label\\|index\\|glossary\\){" "}" crossref) | |
1264 )) | |
1265 | |
1266 (hilit-set-mode-patterns | |
1267 'bibtex-mode | |
1268 '(;;(";.*$" nil comment) | |
1269 ("%.*$" nil comment) | |
1270 ("@[a-zA-Z]+" nil keyword) | |
1271 ("{[ \t]*[-a-z:_A-Z0-9]+," nil label) ; is wrong sometimes | |
1272 ("^[ \t]*[a-zA-Z]+[ \t]*=" nil define))) | |
1273 | |
1274 (hilit-set-mode-patterns | |
1275 'compilation-mode | |
4390 | 1276 '( |
1277 ("^[-_.\"A-Za-z0-9]+\\(:\\|, line \\)[0-9]+: warning:.*$" nil warning) | |
1278 ("^[-_.\"A-Za-z0-9]+\\(:\\|, line \\)[0-9]+:.*$" nil error) | |
1279 )) | |
4251 | 1280 |
1281 (hilit-set-mode-patterns | |
1282 'makefile-mode | |
1283 '(("^#.*$" nil comment) | |
1284 ("[^$]#.*$" nil comment) | |
1285 ;; rules | |
4390 | 1286 ("^[^ \t\n]*%[^ \t\n]*[ \t]*::?[ \t]*[^ \t\n]*[ \t]*\\(#.*\\)?$" nil rule) |
4251 | 1287 ("^[.][A-Za-z][A-Za-z]?\..*$" nil rule) |
1288 ;; variable definition | |
4390 | 1289 ("^[_A-Za-z0-9]+[ \t]*\+?=" nil define) |
1290 ("\\( \\|:=\\)[_A-Za-z0-9]+[ \t]*\\+=" nil define) | |
4251 | 1291 ;; variable references |
4390 | 1292 ("\\$\\([^ \t\n{(]\\|[{(]@?[_A-Za-z0-9:.,%/=]+[)}]\\)" nil keyword) |
1293 ("^[A-Za-z0-9.,/_-]+[ \t]*:.*$" nil defun) | |
4251 | 1294 ("^include " nil include))) |
1295 | |
1296 (let* ((header-patterns '(("^Subject:.*$" nil msg-subject) | |
1297 ("^From:.*$" nil msg-from) | |
1298 ("^--text follows this line--$" nil msg-separator) | |
1299 ("^[A-Za-z][A-Za-z0-9-]+:" nil msg-header))) | |
4390 | 1300 (body-patterns '(("^\\(In article\\|[ \t]*\\w*[]<>}|]\\).*$" |
4251 | 1301 nil msg-quote))) |
1302 (message-patterns (append header-patterns body-patterns))) | |
1303 (hilit-set-mode-patterns 'msg-header header-patterns) | |
1304 (hilit-set-mode-patterns 'msg-body body-patterns) | |
4390 | 1305 (hilit-set-mode-patterns '(vm-mode text-mode mail-mode rmail-mode |
1306 gnus-article-mode news-reply-mode mh-show-mode) | |
1307 message-patterns | |
1308 'hilit-rehighlight-message)) | |
4251 | 1309 |
1310 (hilit-set-mode-patterns | |
1311 'gnus-group-mode | |
1312 '(("^U.*$" nil gnus-group-unsubscribed) | |
1313 ("^ +[01]?[0-9]:.*$" nil gnus-group-empty) | |
1314 ("^ +[2-9][0-9]:.*$" nil gnus-group-full) | |
1315 ("^ +[0-9][0-9][0-9]+:.*$" nil gnus-group-overflowing))) | |
1316 | |
1317 (hilit-set-mode-patterns | |
1318 'gnus-summary-mode | |
1319 '(("^D +[0-9]+: \\[.*$" nil summary-seen) | |
1320 ("^K +[0-9]+: \\[.*$" nil summary-killed) | |
1321 ("^X +[0-9]+: \\[.*$" nil summary-Xed) | |
1322 ("^- +[0-9]+: \\[.*$" nil summary-unread) | |
1323 ("^. +[0-9]+:\\+\\[.*$" nil summary-current) | |
1324 ("^ +[0-9]+: \\[.*$" nil summary-new) | |
1325 )) | |
1326 | |
1327 (hilit-set-mode-patterns | |
1328 'vm-summary-mode | |
1329 '(("^ .*$" nil summary-seen) | |
1330 ("^->.*$" nil summary-current) | |
1331 ("^ D.*$" nil summary-deleted) | |
1332 ("^ U.*$" nil summary-unread) | |
1333 ("^ N.*$" nil summary-new))) | |
1334 | |
1335 | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1336 ;;; this will match only comments w/ an even (zero is even) number of quotes... |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1337 ;;; which is still inadequate because it matches comments in multi-line strings |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1338 ;;; how anal do you want to get about never highlighting comments in strings? |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1339 ;;; I could twiddle with this forever and still it wouldn't be perfect. |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1340 ;;; (";\\([^\"\n]*\"[^\"\n]*\"\\)*[^\"\n]*$" nil comment) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1341 |
4251 | 1342 (hilit-set-mode-patterns |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1343 '(emacs-lisp-mode lisp-interaction-mode) |
4251 | 1344 '( |
1345 (";.*" nil comment) | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1346 |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1347 ;;; This almost works...but I think I'll stick with the parser function |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1348 ;;;("[^?]\\(\"\\(\"\\||\\([^\"]+\\|[\\]\\([\\][\\]\\)*\"\\)*\"\\)\\)" 1 string) |
4251 | 1349 (hilit-string-find ?\\ string) |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1350 |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1351 ("^\\s *(def\\(un\\|macro\\|advice\\|alias\\|subst\\)[ \t\n]" |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1352 "\\()\\|nil\\)" defun) |
4251 | 1353 ("^\\s *(defvar\\s +\\S +" nil decl) |
1354 ("^\\s *(defconst\\s +\\S +" nil define) | |
1355 ("^\\s *(\\(provide\\|require\\|\\(auto\\)?load\\).*$" nil include) | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1356 ("\\s *\\&\\(rest\\|optional\\)\\s *" nil keyword) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1357 ("(\\(let\\*?\\|cond\\|if\\|or\\|and\\|map\\(car\\|concat\\)\\|prog[n1*]?\\|while\\|lambda\\|function\\|set\\([qf]\\|car\\|cdr\\)?\\|nconc\\|eval-when-compile\\|condition-case\\|unwind-protect\\|catch\\|throw\\|error\\)[ \t\n]" 1 keyword) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1358 )) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1359 |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1360 (hilit-set-mode-patterns |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1361 '(lisp-mode ilisp-mode) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1362 '( |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1363 (";.*" nil comment) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1364 ("#|" "|#" comment) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1365 ;;; This almost works...but I think I'll stick with the parser function |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1366 ;;;("[^?]\\(\"\\(\"\\||\\([^\"]+\\|[\\]\\([\\][\\]\\)*\"\\)*\"\\)\\)" 1 string) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1367 (hilit-string-find ?\\ string) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1368 |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1369 ;; this is waaaaaaaay too slow |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1370 ;; ("^\\s *(def\\(un\\|macro\\|advice\\|alias\\|method\\|subst\\)\\s \\S +[ \t\n]+\\(nil\\|(\\(([^()]*)\\|[^()]+\\)*)\\)" nil defun) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1371 ("^\\s *(def\\(un\\|macro\\|advice\\|subst\\|method\\)\\s " "\\()\\|nil\\)" defun) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1372 |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1373 ("^\\s *(\\(def\\(var\\|type\\|parameter\\)\\|declare\\)\\s +\\S +" nil decl) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1374 ("^\\s *(def\\(const\\(ant\\)?\\|class\\|struct\\)\\s \\S +[ \t\n]+\\((\\(([^()]*)\\|[^()]+\\)*)\\)?" nil define) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1375 ("^\\s *(\\(provide\\|require\\|\\(auto\\)?load\\).*$" nil include) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1376 ("[ \t]\\&\\(key\\|rest\\|optional\\|aux\\)\\s *" nil keyword) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1377 ("(\\(let\\*?\\|locally\\|cond\\|if\\*?\\|or\\|and\\|map\\(car\\|c[ao]n\\)?\\|prog[nv1*]?\\|while\\|when\\|unless\\|do\\(\\*\\|list\\|times\\)\\|lambda\\|function\\|values\\|set\\([qf]\\|car\\|cdr\\)?\\|rplac[ad]\\|nconc\\|block\\|go\\|return\\(-from\\)?\\|[ec]?\\(type\\)?case\\|multiple-value-\\(bind\\|setq\\|list\\|call\\|prog1\\)\\|unwind-protect\\|handler-case\\|catch\\|throw\\|eval-when\\(-compile\\)?\\)[ \t\n]" 1 keyword) |
4251 | 1378 )) |
1379 | |
1380 | |
1381 (hilit-set-mode-patterns | |
1382 'plain-tex-mode | |
1383 '(("^%%.*$" nil comment) | |
1384 ("{\\\\em\\([^}]+\\)}" nil comment) | |
1385 ("\\(\\\\\\w+\\)" nil keyword) | |
1386 ("{\\\\bf\\([^}]+\\)}" nil keyword) | |
1387 ("^[ \t\n]*\\\\def[\\\\@]\\(\\w+\\)" nil defun) | |
1388 ("\\\\\\(begin\\|end\\){\\([A-Za-z0-9\\*]+\\)}" nil defun) | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1389 ;; ("[^\\\\]\\$\\([^$]*\\)\\$" nil string) |
4251 | 1390 ("\\$\\([^$]*\\)\\$" nil string) |
1391 )) | |
1392 | |
1393 ;; Reasonable extensions would include smarter parameter handling for such | |
1394 ;; things as the .IX and .I macros, which alternate the handling of following | |
1395 ;; arguments. | |
1396 | |
1397 (hilit-set-mode-patterns | |
1398 'nroff-mode | |
1399 '(("^\\.[\\\][\\\"].*$" nil comment) | |
1400 ("^\\.so .*$" nil include) | |
1401 ("^\\.[ST]H.*$" nil defun) | |
1402 ;; ("^[^\\.].*\"[^\\\"]*\\(\\\\\\(.\\)[^\\\"]*\\)*\"" nil string) | |
1403 ("\"" "[^\\]\"" string) | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1404 ("^\\.[A-Z12\\\\].*$" nil define) |
4251 | 1405 ("\\([\\\][^ ]*\\)" nil keyword) |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1406 ("^\\.[A-Z].*$" nil keyword)) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1407 nil 'case-insensitive) |
4251 | 1408 |
1409 (hilit-set-mode-patterns | |
1410 'texinfo-mode | |
1411 '(("^\\(@c\\|@comment\\)\\>.*$" nil comment) | |
1412 ("@\\(emph\\|strong\\|b\\|i\\){[^}]+}" nil comment) | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1413 ;; seems broken |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1414 ;; ("\\$[^$]*\\$" nil string) |
4251 | 1415 ("@\\(file\\|kbd\\|key\\){[^}]+}" nil string) |
1416 ("^\\*.*$" nil defun) | |
1417 ("@\\(if\\w+\\|format\\|item\\)\\b.*$" nil defun) | |
1418 ("@end +[A-Za-z0-9]+[ \t]*$" nil defun) | |
1419 ("@\\(samp\\|code\\|var\\){[^}]+}" nil defun) | |
1420 ("@\\w+\\({[^}]+}\\)?" nil keyword) | |
1421 )) | |
1422 | |
1423 (hilit-set-mode-patterns | |
1424 'dired-mode | |
1425 (append | |
1426 '(("^D.*$" nil dired-deleted) | |
1427 ("^\\*.*$" nil dired-marked) | |
1428 ("^ d.*$" nil dired-directory) | |
1429 ("^ l.*$" nil dired-link) | |
1430 ("^ -.*#.*#$" nil dired-ignored)) | |
1431 (list (cons | |
1432 (concat "^ .*\\(" | |
1433 (mapconcat 'regexp-quote completion-ignored-extensions "\\|") | |
1434 "\\)$") | |
1435 '(nil dired-ignored))))) | |
1436 | |
1437 (hilit-set-mode-patterns | |
1438 'jargon-mode | |
1439 '(("^:[^:]*:" nil jargon-entry) | |
1440 ("{[^}]*}+" nil jargon-xref))) | |
1441 | |
1442 (hilit-set-mode-patterns | |
1443 'Info-mode | |
1444 '(("^\\* [^:]+:+" nil jargon-entry) | |
1445 ("\\*[Nn]ote\\b[^:]+:+" nil jargon-xref) | |
1446 (" \\(Next\\|Prev\\|Up\\):" nil jargon-xref) | |
1447 ("- \\(Variable\\|Function\\|Macro\\|Command\\|Special Form\\|User Option\\):.*$" | |
1448 nil jargon-keyword))) ; lisp manual | |
1449 | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1450 (hilit-set-mode-patterns |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1451 'calendar-mode |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1452 '(("[A-Z][a-z]+ [0-9]+" nil define) ; month and year |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1453 ("S M Tu W Th F S" nil label) ; week days |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1454 ("[0-9]+\\*" nil defun) ; holidays |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1455 ("[0-9]+\\+" nil comment) ; diary days |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1456 )) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1457 |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1458 (hilit-set-mode-patterns |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1459 'pascal-mode |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1460 '(("(\\*" "\\*)" comment) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1461 ("{" "}" comment) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1462 ;; Doesn't work when there are strings in comments.... |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1463 ;; ("'[^']*'" nil string) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1464 ("^#.*$" nil include) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1465 ("^[ \t]*\\(procedure\\|function\\)[ \t]+\\w+[^ \t(;]*" nil defun) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1466 ("\\<\\(program\\|begin\\|end\\)\\>" nil defun) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1467 ("\\<\\(external\\|forward\\)\\>" nil include) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1468 ("\\<\\(label\\|const\\|type\\|var\\)\\>" nil define) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1469 ("\\<\\(record\\|array\\|file\\)\\>" nil type) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1470 ("\\<\\(of\\|to\\|for\\|if\\|then\\|else\\|case\\|while\\|do\\|until\\|and\\|or\\|not\\|with\\|repeat\\)\\>" nil keyword) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1471 ) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1472 nil 'case-insensitive) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1473 |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1474 (hilit-set-mode-patterns |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1475 'icon-mode |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1476 '(("#.*$" nil comment) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1477 ("\"[^\\\"]*\\(\\\\.[^\\\"]*\\)*\"" nil string) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1478 ;; charsets: these do not work because of a conflict with strings |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1479 ;; ("'[^\\']*\\(\\\\.[^\\']*\\)*'" nil string) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1480 ("^[ \t]*procedure[ \t]+\\w+[ \t]*(" ")" defun) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1481 ("^[ \t]*record.*(" ")" include) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1482 ("^[ \t]*\\(global\\|link\\)[ \t\n]+[A-Za-z_0-9]+\\([ \t\n]*,[ \t\n]*[A-Za-z_0-9]+\\)*" nil include) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1483 ("^[ \t]*\\(local\\|static\\)[ \t\n]+[A-Za-z_0-9]+\\([ \t\n]*,[ \t\n]*[A-Za-z_0-9]+\\)*" nil decl) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1484 ("\\<\\(initial\\|end\\)\\>" nil glob-struct) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1485 ("\\<\\(while\\|until\\|return\\|every\\|if\\|then\\|else\\|to\\|case\\|of\\|suspend\\|create\\|do\\|repeat\\|break\\)\\>" nil keyword) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1486 )) |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1487 |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1488 ;; as you can see, I had two similar problems for Pascal and Icon. In |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1489 ;; Pascal, strings are delimited with ' and an embedded quote is doubled, |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1490 ;; thus string syntax would be extremely simple. However, if a string |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1491 ;; occurs within a comment, the following text is considered a string. |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1492 ;; |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1493 ;; In Icon, strings are similar to C ones, but there are also charsets, |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1494 ;; delimited with simple quotes. I could not manage to use both regexps at |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1495 ;; the same time. |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1496 |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1497 ;; The problem I have with my patterns for Icon is that this language has a |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1498 ;; string similar constant to the C one (but a string can be cut on several |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1499 ;; lines, if terminated by a dash and continued with initial blanks, like |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1500 ;; this: |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1501 ;; "This is a somewhat long - |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1502 ;; string, written on three - |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1503 ;; succesive lines" |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1504 ;; in order to insert a double quote in a string, you have to escape it |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1505 ;; with a \), bu also a character set constant (named a charset), which |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1506 ;; uses single quotes instead of double ones. It would seem intuitive to |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1507 ;; highlight both constants in the same way. |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1508 |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1509 |
4251 | 1510 (provide 'hilit19) |
1511 | |
1512 ;;; hilit19 ends here. | |
4739
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1513 |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1514 |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1515 ;; __________________________________________________________________________ |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1516 ;; Stig@netcom.com netcom.com:/pub/stig/00-PGP-KEY |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1517 ;; It's hard to be cutting-edge at your own pace... 32 DF B9 19 AE 28 D1 7A |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1518 ;; Bullet-proof code cannot stand up to teflon bugs. A3 9D 0B 1A 33 13 4D 7F |
e248ce46bca8
- (hilit-rehighlight-region): added (save-restriction (widen))
Richard M. Stallman <rms@gnu.org>
parents:
4390
diff
changeset
|
1519 |