Mercurial > emacs
annotate lisp/hilit-chg.el @ 63273:161e3a7552ad
(lazy-lock-mode): Fix spellings in docstrings.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Fri, 10 Jun 2005 14:14:07 +0000 |
parents | f4b47991b594 |
children | 071d62682d14 |
rev | line source |
---|---|
22957 | 1 ;;; hilit-chg.el --- minor mode displaying buffer changes with special face |
2 | |
59601
73b89f6377fc
(highlight-changes-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54009
diff
changeset
|
3 ;; Copyright (C) 1998, 2000, 2005 Free Software Foundation, Inc. |
22957 | 4 |
23614 | 5 ;; Author: Richard Sharman <rsharman@pobox.com> |
22957 | 6 ;; Keywords: faces |
7 | |
23101 | 8 ;; This file is part of GNU Emacs. |
9 | |
38401 | 10 ;; GNU Emacs is free software; you can redistribute it and/or modify |
22957 | 11 ;; it under the terms of the GNU General Public License as published by |
12 ;; the Free Software Foundation; either version 2, or (at your option) | |
13 ;; any later version. | |
14 | |
38401 | 15 ;; GNU Emacs is distributed in the hope that it will be useful, |
22957 | 16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 ;; Boston, MA 02111-1307, USA. | |
24 | |
25 ;;; Commentary: | |
26 | |
27 ;; A minor mode: "Highlight Changes mode". | |
28 ;; | |
29 | |
30 ;; Highlight Changes mode has 2 submodes: active and passive. | |
31 ;; When active, changes to the buffer are displayed in a different face. | |
32 ;; When passive, any existing displayed changes are saved and new ones | |
33 ;; recorded but are not displayed differently. | |
34 ;; Why active and passive? Having the changes visible can be handy when you | |
35 ;; want the information but very distracting otherwise. So, you can keep | |
36 ;; Highlight Changes mode in passive state while you make your changes, toggle | |
37 ;; it on to active mode to see them, then toggle it back off to avoid | |
38 ;; distraction. | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
39 ;; |
63207
fecefbfcd215
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-377
Miles Bader <miles@gnu.org>
parents:
61394
diff
changeset
|
40 ;; When active, changes are displayed in the `highlight-changes' face. |
fecefbfcd215
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-377
Miles Bader <miles@gnu.org>
parents:
61394
diff
changeset
|
41 ;; When text is deleted, the following character is displayed in the |
fecefbfcd215
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-377
Miles Bader <miles@gnu.org>
parents:
61394
diff
changeset
|
42 ;; `highlight-changes-delete' face. |
22957 | 43 ;; |
44 ;; | |
45 ;; You can "age" different sets of changes by using | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
46 ;; `highlight-changes-rotate-faces'. This rotates through a series |
22957 | 47 ;; of different faces, so you can distinguish "new" changes from "older" |
23046 | 48 ;; changes. You can customize these "rotated" faces in two ways. You can |
22957 | 49 ;; either explicitly define each face by customizing |
50 ;; `highlight-changes-face-list'. If, however, the faces differ from | |
63207
fecefbfcd215
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-377
Miles Bader <miles@gnu.org>
parents:
61394
diff
changeset
|
51 ;; the `highlight-changes' face only in the foreground color, you can simply set |
22957 | 52 ;; `highlight-changes-colours'. If `highlight-changes-face-list' is nil when |
53 ;; the faces are required they will be constructed from | |
54 ;; `highlight-changes-colours'. | |
55 ;; | |
56 ;; | |
57 ;; When a Highlight Changes mode is on (either active or passive) you can go | |
58 ;; to the next or previous change with `highlight-changes-next-change' and | |
59 ;; `highlight-changes-previous-change'. | |
60 ;; | |
61 ;; | |
23289 | 62 ;; You can also use the command highlight-compare-with-file to show changes |
63 ;; in this file compared with another file (typically the previous version | |
54009
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
64 ;; of the file). The command highlight-compare-buffers can be used to |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
65 ;; compare two buffers. |
22957 | 66 ;; |
67 ;; | |
68 ;; There are currently three hooks run by `highlight-changes-mode': | |
69 ;; `highlight-changes-enable-hook' - is run when Highlight Changes mode | |
70 ;; is initially enabled for a buffer. | |
71 ;; `highlight-changes-disable-hook' - is run when Highlight Changes mode | |
72 ;; is turned off. | |
73 ;; `highlight-changes-toggle-hook' - is run each time `highlight-changes-mode' | |
74 ;; is called. Typically this is when | |
75 ;; toggling between active and passive | |
76 ;; modes. The variable | |
77 ;; `highlight-changes-mode' contains the new | |
78 ;; state (`active' or `passive'.) | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
79 ;; |
22957 | 80 ;; |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
81 ;; |
22957 | 82 ;; Example usage: |
83 ;; (defun my-highlight-changes-enable-hook () | |
84 ;; (add-hook 'local-write-file-hooks 'highlight-changes-rotate-faces) | |
85 ;; ) | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
86 ;; |
22957 | 87 ;; (defun my-highlight-changes-disable-hook () |
88 ;; (remove-hook 'local-write-file-hooks 'highlight-changes-rotate-faces) | |
89 ;; ) | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
90 ;; |
22957 | 91 ;; (add-hook 'highlight-changes-enable-hook 'my-highlight-changes-enable-hook) |
92 ;; (add-hook 'highlight-changes-disable-hook | |
93 ;; 'my-highlight-changes-disable-hook) | |
94 | |
95 | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
96 ;; Explicit vs. Implicit |
22957 | 97 ;; |
98 | |
99 ;; Normally, Highlight Changes mode is turned on explicitly in a buffer. | |
100 ;; | |
101 ;; If you prefer to have it automatically invoked you can do it as | |
102 ;; follows. | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
103 ;; |
22957 | 104 ;; 1. Most modes have a major-hook, typically called MODE-hook. You |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
105 ;; can use `add-hook' to call `highlight-changes-mode'. |
22957 | 106 ;; |
107 ;; Example: | |
108 ;; (add-hook 'c-mode-hook 'highlight-changes-mode) | |
109 ;; | |
110 ;; If you want to make it start up in passive mode (regardless of the | |
111 ;; setting of highlight-changes-initial-state): | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
112 ;; (add-hook 'emacs-lisp-mode-hook |
22957 | 113 ;; (lambda () |
114 ;; (highlight-changes-mode 'passive))) | |
115 ;; | |
116 ;; However, this cannot be done for Fundamental mode for there is no | |
117 ;; such hook. | |
118 ;; | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
119 ;; 2. You can use the function `global-highlight-changes' |
22957 | 120 ;; |
121 ;; This function, which is fashioned after the way `global-font-lock' works, | |
122 ;; toggles on or off global Highlight Changes mode. When activated, it turns | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
123 ;; on Highlight Changes mode in all "suitable" existing buffers and will turn |
22957 | 124 ;; it on in new "suitable" buffers to be created. |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
125 ;; |
22957 | 126 ;; A buffer's "suitability" is determined by variable |
47259
08b8c2bc2e81
(highlight-changes-colours, highlight-changes-active-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
44740
diff
changeset
|
127 ;; `highlight-changes-global-modes', as follows. If the variable is |
22957 | 128 ;; * nil -- then no buffers are suitable; |
129 ;; * a function -- this function is called and the result is used. As | |
47259
08b8c2bc2e81
(highlight-changes-colours, highlight-changes-active-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
44740
diff
changeset
|
130 ;; an example, if the value is `buffer-file-name' then all buffers |
22957 | 131 ;; who are visiting files are suitable, but others (like dired |
132 ;; buffers) are not; | |
30924 | 133 ;; * a list -- then the buffer is suitable iff its mode is in the |
47259
08b8c2bc2e81
(highlight-changes-colours, highlight-changes-active-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
44740
diff
changeset
|
134 ;; list, except if the first element is `not', in which case the test |
22957 | 135 ;; is reversed (i.e. it is a list of unsuitable modes). |
47259
08b8c2bc2e81
(highlight-changes-colours, highlight-changes-active-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
44740
diff
changeset
|
136 ;; * Otherwise, the buffer is suitable if its name does not begin with |
22957 | 137 ;; ` ' or `*' and if `buffer-file-name' returns true. |
138 ;; | |
139 | |
140 | |
141 | |
142 ;; Possible bindings: | |
143 ;; (global-set-key '[C-right] 'highlight-changes-next-change) | |
144 ;; (global-set-key '[C-left] 'highlight-changes-previous-change) | |
145 ;; | |
146 ;; Other interactive functions (which could be bound if desired): | |
147 ;; highlight-changes-mode | |
148 ;; highlight-changes-remove-highlight | |
149 ;; highlight-changes-rotate-faces | |
23289 | 150 ;; highlight-compare-with-file |
54009
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
151 ;; highlight-compare-buffers |
22957 | 152 |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
153 ;; |
22957 | 154 ;; You can automatically rotate faces when the buffer is saved; |
155 ;; see function `highlight-changes-rotate-faces' for how to do this. | |
156 ;; | |
157 | |
158 | |
159 ;;; Bugs: | |
160 | |
161 ;; - the next-change and previous-change functions are too literal; | |
47259
08b8c2bc2e81
(highlight-changes-colours, highlight-changes-active-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
44740
diff
changeset
|
162 ;; they should find the next "real" change, in other words treat |
22957 | 163 ;; consecutive changes as one. |
164 | |
165 | |
47259
08b8c2bc2e81
(highlight-changes-colours, highlight-changes-active-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
44740
diff
changeset
|
166 ;;; To do (maybe), notes, ... |
22957 | 167 |
168 ;; - having different faces for deletion and non-deletion: is it | |
169 ;; really worth the hassle? | |
170 ;; - should have better hooks: when should they be run? | |
23289 | 171 ;; - highlight-compare-with-file should allow RCS files - e.g. nice to be |
172 ;; able to say show changes compared with version 2.1. | |
22957 | 173 ;; - Maybe we should have compare-with-buffer as well. (When I tried |
174 ;; a while back I ran into a problem with ediff-buffers-internal.) | |
175 | |
176 | |
177 ;;; History: | |
178 | |
54009
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
179 ;; R Sharman (rsharman@pobox.com) Feb 1998: |
22957 | 180 ;; - initial release as change-mode. |
181 ;; Jari Aalto <jari.aalto@ntc.nokia.com> Mar 1998 | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
182 ;; - fixes for byte compile errors |
22957 | 183 ;; - use eval-and-compile for autoload |
184 ;; Marijn Ros <J.M.Ros@fys.ruu.nl> Mar 98 | |
185 ;; - suggested turning it on by default | |
186 ;; Eric Ludlam <zappo@gnu.org> Suggested using overlays. | |
187 ;; July 98 | |
188 ;; - global mode and various stuff added | |
189 ;; - Changed to use overlays | |
190 ;; August 98 | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
191 ;; - renamed to Highlight Changes mode. |
54009
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
192 ;; Dec 2003 |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
193 ;; - Use require for ediff stuff |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
194 ;; - Added highlight-compare-buffers |
22957 | 195 |
196 ;;; Code: | |
197 | |
198 (require 'wid-edit) | |
199 | |
200 ;; ====================== Customization ======================= | |
201 (defgroup highlight-changes nil | |
202 "Highlight Changes mode." | |
24554
9a9a307e9a57
(highlight-changes): Add defgroup :version.
Dave Love <fx@gnu.org>
parents:
23614
diff
changeset
|
203 :version "20.4" |
22957 | 204 :group 'faces) |
205 | |
206 | |
207 ;; Face information: How the changes appear. | |
208 | |
209 ;; Defaults for face: red foreground, no change to background, | |
210 ;; and underlined if a change is because of a deletion. | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
211 ;; Note: underlining is helpful in that it shows up changes in white space. |
22957 | 212 ;; However, having it set for non-delete changes can be annoying because all |
213 ;; indentation on inserts gets underlined (which can look pretty ugly!). | |
214 | |
63207
fecefbfcd215
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-377
Miles Bader <miles@gnu.org>
parents:
61394
diff
changeset
|
215 (defface highlight-changes |
61394
31aa9a390538
* mh-customize.el (mh-speedbar-selected-folder-face): Special case
Dan Nicolaescu <dann@ics.uci.edu>
parents:
60902
diff
changeset
|
216 '((((min-colors 88) (class color)) (:foreground "red1" )) |
31aa9a390538
* mh-customize.el (mh-speedbar-selected-folder-face): Special case
Dan Nicolaescu <dann@ics.uci.edu>
parents:
60902
diff
changeset
|
217 (((class color)) (:foreground "red" )) |
22957 | 218 (t (:inverse-video t))) |
219 "Face used for highlighting changes." | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
220 :group 'highlight-changes) |
63207
fecefbfcd215
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-377
Miles Bader <miles@gnu.org>
parents:
61394
diff
changeset
|
221 ;; backward-compatibility alias |
fecefbfcd215
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-377
Miles Bader <miles@gnu.org>
parents:
61394
diff
changeset
|
222 (put 'highlight-changes-face 'face-alias 'highlight-changes) |
22957 | 223 |
224 ;; This looks pretty ugly, actually. Maybe the underline should be removed. | |
63207
fecefbfcd215
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-377
Miles Bader <miles@gnu.org>
parents:
61394
diff
changeset
|
225 (defface highlight-changes-delete |
61394
31aa9a390538
* mh-customize.el (mh-speedbar-selected-folder-face): Special case
Dan Nicolaescu <dann@ics.uci.edu>
parents:
60902
diff
changeset
|
226 '((((min-colors 88) (class color)) (:foreground "red1" :underline t)) |
31aa9a390538
* mh-customize.el (mh-speedbar-selected-folder-face): Special case
Dan Nicolaescu <dann@ics.uci.edu>
parents:
60902
diff
changeset
|
227 (((class color)) (:foreground "red" :underline t)) |
22957 | 228 (t (:inverse-video t))) |
229 "Face used for highlighting deletions." | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
230 :group 'highlight-changes) |
63207
fecefbfcd215
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-377
Miles Bader <miles@gnu.org>
parents:
61394
diff
changeset
|
231 ;; backward-compatibility alias |
fecefbfcd215
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-377
Miles Bader <miles@gnu.org>
parents:
61394
diff
changeset
|
232 (put 'highlight-changes-delete-face 'face-alias 'highlight-changes-delete) |
22957 | 233 |
234 | |
235 | |
236 ;; A (not very good) default list of colours to rotate through. | |
237 ;; | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
238 (defcustom highlight-changes-colours |
22957 | 239 (if (eq (frame-parameter nil 'background-mode) 'light) |
240 ;; defaults for light background: | |
241 '( "magenta" "blue" "darkgreen" "chocolate" "sienna4" "NavyBlue") | |
242 ;; defaults for dark background: | |
243 '("yellow" "magenta" "blue" "maroon" "firebrick" "green4" "DarkOrchid")) | |
63252
f4b47991b594
(highlight-changes-colours highlight-changes-face-list,
Juanma Barranquero <lekktu@gmail.com>
parents:
63207
diff
changeset
|
244 "*Colors used by `highlight-changes-rotate-faces'. |
47259
08b8c2bc2e81
(highlight-changes-colours, highlight-changes-active-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
44740
diff
changeset
|
245 The newest rotated change will be displayed in the first element of this list, |
22957 | 246 the next older will be in the second element etc. |
247 | |
47259
08b8c2bc2e81
(highlight-changes-colours, highlight-changes-active-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
44740
diff
changeset
|
248 This list is used if `highlight-changes-face-list' is nil, otherwise that |
08b8c2bc2e81
(highlight-changes-colours, highlight-changes-active-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
44740
diff
changeset
|
249 variable overrides this list. If you only care about foreground |
63252
f4b47991b594
(highlight-changes-colours highlight-changes-face-list,
Juanma Barranquero <lekktu@gmail.com>
parents:
63207
diff
changeset
|
250 colors then use this, if you want fancier faces then set |
22957 | 251 `highlight-changes-face-list'." |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
252 :type '(repeat color) |
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
253 :group 'highlight-changes) |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
254 |
22957 | 255 |
47259
08b8c2bc2e81
(highlight-changes-colours, highlight-changes-active-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
44740
diff
changeset
|
256 ;; If you invoke highlight-changes-mode with no argument, should it start in |
22957 | 257 ;; active or passive mode? |
258 ;; | |
259 (defcustom highlight-changes-initial-state 'active | |
260 "*What state (active or passive) `highlight-changes' should start in. | |
261 This is used when `highlight-changes' is called with no argument. | |
262 This variable must be set to one of the symbols `active' or `passive'." | |
263 :type '(choice (const :tag "Active" active) | |
264 (const :tag "Passive" passive)) | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
265 :group 'highlight-changes) |
22957 | 266 |
267 (defcustom highlight-changes-global-initial-state 'passive | |
268 "*What state `global-highlight-changes' should start in. | |
269 This is used if `global-highlight-changes' is called with no argument. | |
270 This variable must be set to either `active' or `passive'" | |
271 :type '(choice (const :tag "Active" active) | |
272 (const :tag "Passive" passive)) | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
273 :group 'highlight-changes) |
22957 | 274 |
275 ;; The strings displayed in the mode-line for the minor mode: | |
43132
0dd2ebecd217
(highlight-changes-active-string): Default to +Chg.
Richard M. Stallman <rms@gnu.org>
parents:
43030
diff
changeset
|
276 (defcustom highlight-changes-active-string " +Chg" |
22957 | 277 "*The string used when Highlight Changes mode is in the active state. |
47259
08b8c2bc2e81
(highlight-changes-colours, highlight-changes-active-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
44740
diff
changeset
|
278 This should be set to nil if no indication is desired, or to |
22957 | 279 a string with a leading space." |
280 :type '(choice string | |
281 (const :tag "None" nil)) | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
282 :group 'highlight-changes) |
22957 | 283 |
43132
0dd2ebecd217
(highlight-changes-active-string): Default to +Chg.
Richard M. Stallman <rms@gnu.org>
parents:
43030
diff
changeset
|
284 (defcustom highlight-changes-passive-string " -Chg" |
22957 | 285 "*The string used when Highlight Changes mode is in the passive state. |
47259
08b8c2bc2e81
(highlight-changes-colours, highlight-changes-active-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
44740
diff
changeset
|
286 This should be set to nil if no indication is desired, or to |
22957 | 287 a string with a leading space." |
288 :type '(choice string | |
289 (const :tag "None" nil)) | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
290 :group 'highlight-changes) |
22957 | 291 |
292 (defcustom highlight-changes-global-modes t | |
293 "*Determine whether a buffer is suitable for global Highlight Changes mode. | |
294 | |
43132
0dd2ebecd217
(highlight-changes-active-string): Default to +Chg.
Richard M. Stallman <rms@gnu.org>
parents:
43030
diff
changeset
|
295 A function means call that function to decide: if it returns non-nil, |
0dd2ebecd217
(highlight-changes-active-string): Default to +Chg.
Richard M. Stallman <rms@gnu.org>
parents:
43030
diff
changeset
|
296 the buffer is suitable. |
22957 | 297 |
43132
0dd2ebecd217
(highlight-changes-active-string): Default to +Chg.
Richard M. Stallman <rms@gnu.org>
parents:
43030
diff
changeset
|
298 A list means the elements are major modes suitable for Highlight |
0dd2ebecd217
(highlight-changes-active-string): Default to +Chg.
Richard M. Stallman <rms@gnu.org>
parents:
43030
diff
changeset
|
299 Changes mode, or a list whose first element is `not' followed by major |
0dd2ebecd217
(highlight-changes-active-string): Default to +Chg.
Richard M. Stallman <rms@gnu.org>
parents:
43030
diff
changeset
|
300 modes which are not suitable. |
22957 | 301 |
43132
0dd2ebecd217
(highlight-changes-active-string): Default to +Chg.
Richard M. Stallman <rms@gnu.org>
parents:
43030
diff
changeset
|
302 t means the buffer is suitable if it is visiting a file and its name |
0dd2ebecd217
(highlight-changes-active-string): Default to +Chg.
Richard M. Stallman <rms@gnu.org>
parents:
43030
diff
changeset
|
303 does not begin with ` ' or `*'. |
22957 | 304 |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
305 A value of nil means no buffers are suitable for `global-highlight-changes' |
41701 | 306 \(effectively disabling the mode). |
22957 | 307 |
308 Examples: | |
309 (c-mode c++-mode) | |
310 means that Highlight Changes mode is turned on for buffers in C and C++ | |
311 modes only." | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
312 :type '(choice |
22957 | 313 (const :tag "all non-special buffers visiting files" t) |
314 (set :menu-tag "specific modes" :tag "modes" | |
315 :value (not) | |
316 (const :tag "All except these" not) | |
317 (repeat :tag "Modes" :inline t (symbol :tag "mode"))) | |
318 (function :menu-tag "determined by function" | |
319 :value buffer-file-name) | |
320 (const :tag "none" nil) | |
321 ) | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
322 :group 'highlight-changes) |
22957 | 323 |
324 (defvar global-highlight-changes nil) | |
325 | |
326 (defcustom highlight-changes-global-changes-existing-buffers nil | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
327 "*If non-nil, toggling global Highlight Changes mode affects existing buffers. |
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
328 Normally, `global-highlight-changes' affects only new buffers (to be |
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
329 created). However, if `highlight-changes-global-changes-existing-buffers' |
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
330 is non-nil, then turning on `global-highlight-changes' will turn on |
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
331 Highlight Changes mode in suitable buffers, and turning the mode off will |
22957 | 332 remove it from existing buffers." |
333 :type 'boolean | |
334 :group 'highlight-changes) | |
335 | |
336 (defun hilit-chg-cust-fix-changes-face-list (w wc &optional event) | |
337 ;; When customization function `highlight-changes-face-list' inserts a new | |
47259
08b8c2bc2e81
(highlight-changes-colours, highlight-changes-active-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
44740
diff
changeset
|
338 ;; face it uses the default face. We don't want the user to modify this |
08b8c2bc2e81
(highlight-changes-colours, highlight-changes-active-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
44740
diff
changeset
|
339 ;; face, so we rename the faces in the list on an insert. The rename is |
22957 | 340 ;; actually done by copying the faces so user-defined faces still remain |
341 ;; in the same order. | |
342 ;; The notifying the parent is needed because without it changes to the | |
343 ;; faces are saved but not to the actual list itself. | |
344 (let ((old-list (widget-value w))) | |
345 (if (member 'default old-list) | |
346 (let | |
347 ((p (reverse old-list)) | |
348 (n (length old-list)) | |
349 new-name old-name | |
350 (new-list nil) | |
351 ) | |
352 (while p | |
353 (setq old-name (car p)) | |
63207
fecefbfcd215
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-377
Miles Bader <miles@gnu.org>
parents:
61394
diff
changeset
|
354 (setq new-name (intern (format "highlight-changes-%d" n))) |
22957 | 355 (if (eq old-name new-name) |
356 nil | |
357 ;; A new face has been inserted: we don't want to modify the | |
47259
08b8c2bc2e81
(highlight-changes-colours, highlight-changes-active-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
44740
diff
changeset
|
358 ;; default face so copy it. Better, though, (I think) is to |
22957 | 359 ;; make a new face have the same attributes as |
63207
fecefbfcd215
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-377
Miles Bader <miles@gnu.org>
parents:
61394
diff
changeset
|
360 ;; the `highlight-changes' face. |
22957 | 361 (if (eq old-name 'default) |
63207
fecefbfcd215
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-377
Miles Bader <miles@gnu.org>
parents:
61394
diff
changeset
|
362 (copy-face 'highlight-changes new-name) |
22957 | 363 (copy-face old-name new-name) |
364 )) | |
365 (setq new-list (append (list new-name) new-list)) | |
366 (setq n (1- n)) | |
367 (setq p (cdr p))) | |
368 (if (equal new-list (widget-value w)) | |
369 nil ;; (message "notify: no change!") | |
370 (widget-value-set w new-list) | |
371 (widget-setup) | |
372 ) | |
373 ) | |
374 ;; (message "notify: no default here!") | |
375 )) | |
376 (let ((parent (widget-get w :parent))) | |
377 (when parent | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
378 (widget-apply parent :notify w event)))) |
22957 | 379 |
380 | |
381 (defcustom highlight-changes-face-list nil | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
382 "*A list of faces used when rotating changes. |
22957 | 383 Normally the variable is initialized to nil and the list is created from |
384 `highlight-changes-colours' when needed. However, you can set this variable | |
385 to any list of faces. You will have to do this if you want faces which | |
63252
f4b47991b594
(highlight-changes-colours highlight-changes-face-list,
Juanma Barranquero <lekktu@gmail.com>
parents:
63207
diff
changeset
|
386 don't just differ from the `highlight-changes' face by the foreground color. |
22957 | 387 Otherwise, this list will be constructed when needed from |
388 `highlight-changes-colours'." | |
389 :type '(choice | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
390 (repeat |
22957 | 391 :notify hilit-chg-cust-fix-changes-face-list |
392 face ) | |
393 (const :tag "Derive from highlight-changes-colours" nil) | |
394 ) | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
395 :group 'highlight-changes) |
22957 | 396 |
397 ;; ======================================================================== | |
398 | |
399 ;; These shouldn't be changed! | |
400 | |
401 (defvar highlight-changes-mode nil) | |
402 (defvar hilit-chg-list nil) | |
403 (defvar hilit-chg-string " ??") | |
404 (or (assq 'highlight-changes-mode minor-mode-alist) | |
405 (setq minor-mode-alist | |
406 (cons '(highlight-changes-mode hilit-chg-string) minor-mode-alist) | |
407 )) | |
408 (make-variable-buffer-local 'highlight-changes-mode) | |
409 (make-variable-buffer-local 'hilit-chg-string) | |
410 | |
411 | |
54009
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
412 (require 'ediff-init) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
413 (require 'ediff-util) |
22957 | 414 |
415 | |
416 ;;; Functions... | |
417 | |
418 (defun hilit-chg-map-changes (func &optional start-position end-position) | |
419 "Call function FUNC for each region used by Highlight Changes mode." | |
420 ;; if start-position is nil, (point-min) is used | |
421 ;; if end-position is nil, (point-max) is used | |
422 ;; FUNC is called with 3 params: property start stop | |
423 (let ((start (or start-position (point-min))) | |
424 (limit (or end-position (point-max))) | |
425 prop end) | |
426 (while (and start (< start limit)) | |
427 (setq prop (get-text-property start 'hilit-chg)) | |
428 (setq end (text-property-not-all start limit 'hilit-chg prop)) | |
429 (if prop | |
430 (funcall func prop start (or end limit))) | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
431 (setq start end)))) |
22957 | 432 |
433 | |
434 (defun hilit-chg-display-changes (&optional beg end) | |
435 "Display face information for Highlight Changes mode. | |
436 | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
437 An overlay containing a change face is added from the information |
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
438 in the text property of type `hilit-chg'. |
22957 | 439 |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
440 This is the opposite of `hilit-chg-hide-changes'." |
22957 | 441 (hilit-chg-map-changes 'hilit-chg-make-ov beg end)) |
442 | |
443 | |
444 (defun hilit-chg-make-ov (prop start end) | |
43030
90bce6424b8b
(hilit-chg-fixup): Don't alter overlay if not ours.
Richard M. Stallman <rms@gnu.org>
parents:
41701
diff
changeset
|
445 (or prop |
90bce6424b8b
(hilit-chg-fixup): Don't alter overlay if not ours.
Richard M. Stallman <rms@gnu.org>
parents:
41701
diff
changeset
|
446 (error "hilit-chg-make-ov: prop is nil")) |
22957 | 447 ;; for the region make change overlays corresponding to |
448 ;; the text property 'hilit-chg | |
449 (let ((ov (make-overlay start end)) | |
450 face) | |
451 (if (eq prop 'hilit-chg-delete) | |
63207
fecefbfcd215
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-377
Miles Bader <miles@gnu.org>
parents:
61394
diff
changeset
|
452 (setq face 'highlight-changes-delete) |
22957 | 453 (setq face (nth 1 (member prop hilit-chg-list)))) |
454 (if face | |
455 (progn | |
47259
08b8c2bc2e81
(highlight-changes-colours, highlight-changes-active-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
44740
diff
changeset
|
456 ;; We must mark the face, that is the purpose of the overlay |
22957 | 457 (overlay-put ov 'face face) |
458 ;; I don't think we need to set evaporate since we should | |
459 ;; be controlling them! | |
460 (overlay-put ov 'evaporate t) | |
461 ;; We set the change property so we can tell this is one | |
462 ;; of our overlays (so we don't delete someone else's). | |
463 (overlay-put ov 'hilit-chg t) | |
464 ) | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
465 (error "hilit-chg-make-ov: no face for prop: %s" prop)))) |
22957 | 466 |
467 (defun hilit-chg-hide-changes (&optional beg end) | |
468 "Remove face information for Highlight Changes mode. | |
469 | |
47259
08b8c2bc2e81
(highlight-changes-colours, highlight-changes-active-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
44740
diff
changeset
|
470 The overlay containing the face is removed, but the text property |
22957 | 471 containing the change information is retained. |
472 | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
473 This is the opposite of `hilit-chg-display-changes'." |
22957 | 474 (let ((start (or beg (point-min))) |
475 (limit (or end (point-max))) | |
476 p ov) | |
477 (setq p (overlays-in start limit)) | |
478 (while p | |
479 ;; don't delete the overlay if it isn't ours! | |
480 (if (overlay-get (car p) 'hilit-chg) | |
481 (delete-overlay (car p))) | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
482 (setq p (cdr p))))) |
22957 | 483 |
484 (defun hilit-chg-fixup (beg end) | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
485 "Fix change overlays in region between BEG and END. |
22957 | 486 |
487 Ensure the overlays agree with the changes as determined from | |
488 the text properties of type `hilit-chg' ." | |
489 ;; Remove or alter overlays in region beg..end | |
43030
90bce6424b8b
(hilit-chg-fixup): Don't alter overlay if not ours.
Richard M. Stallman <rms@gnu.org>
parents:
41701
diff
changeset
|
490 (let (ov-start ov-end props q) |
22957 | 491 ;; temp for debugging: |
492 ;; (or (eq highlight-changes-mode 'active) | |
493 ;; (error "hilit-chg-fixup called but Highlight Changes mode not active")) | |
43030
90bce6424b8b
(hilit-chg-fixup): Don't alter overlay if not ours.
Richard M. Stallman <rms@gnu.org>
parents:
41701
diff
changeset
|
494 (dolist (ov (overlays-in beg end)) |
90bce6424b8b
(hilit-chg-fixup): Don't alter overlay if not ours.
Richard M. Stallman <rms@gnu.org>
parents:
41701
diff
changeset
|
495 ;; Don't alter overlays that are not ours. |
90bce6424b8b
(hilit-chg-fixup): Don't alter overlay if not ours.
Richard M. Stallman <rms@gnu.org>
parents:
41701
diff
changeset
|
496 (when (overlay-get ov 'hilit-chg) |
90bce6424b8b
(hilit-chg-fixup): Don't alter overlay if not ours.
Richard M. Stallman <rms@gnu.org>
parents:
41701
diff
changeset
|
497 (let ((ov-start (overlay-start ov)) |
90bce6424b8b
(hilit-chg-fixup): Don't alter overlay if not ours.
Richard M. Stallman <rms@gnu.org>
parents:
41701
diff
changeset
|
498 (ov-end (overlay-end ov))) |
90bce6424b8b
(hilit-chg-fixup): Don't alter overlay if not ours.
Richard M. Stallman <rms@gnu.org>
parents:
41701
diff
changeset
|
499 (if (< ov-start beg) |
90bce6424b8b
(hilit-chg-fixup): Don't alter overlay if not ours.
Richard M. Stallman <rms@gnu.org>
parents:
41701
diff
changeset
|
500 (progn |
90bce6424b8b
(hilit-chg-fixup): Don't alter overlay if not ours.
Richard M. Stallman <rms@gnu.org>
parents:
41701
diff
changeset
|
501 (move-overlay ov ov-start beg) |
90bce6424b8b
(hilit-chg-fixup): Don't alter overlay if not ours.
Richard M. Stallman <rms@gnu.org>
parents:
41701
diff
changeset
|
502 (if (> ov-end end) |
90bce6424b8b
(hilit-chg-fixup): Don't alter overlay if not ours.
Richard M. Stallman <rms@gnu.org>
parents:
41701
diff
changeset
|
503 (progn |
90bce6424b8b
(hilit-chg-fixup): Don't alter overlay if not ours.
Richard M. Stallman <rms@gnu.org>
parents:
41701
diff
changeset
|
504 (setq props (overlay-properties ov)) |
90bce6424b8b
(hilit-chg-fixup): Don't alter overlay if not ours.
Richard M. Stallman <rms@gnu.org>
parents:
41701
diff
changeset
|
505 (setq ov (make-overlay end ov-end)) |
90bce6424b8b
(hilit-chg-fixup): Don't alter overlay if not ours.
Richard M. Stallman <rms@gnu.org>
parents:
41701
diff
changeset
|
506 (while props |
90bce6424b8b
(hilit-chg-fixup): Don't alter overlay if not ours.
Richard M. Stallman <rms@gnu.org>
parents:
41701
diff
changeset
|
507 (overlay-put ov (car props)(car (cdr props))) |
90bce6424b8b
(hilit-chg-fixup): Don't alter overlay if not ours.
Richard M. Stallman <rms@gnu.org>
parents:
41701
diff
changeset
|
508 (setq props (cdr (cdr props))))))) |
22957 | 509 (if (> ov-end end) |
43030
90bce6424b8b
(hilit-chg-fixup): Don't alter overlay if not ours.
Richard M. Stallman <rms@gnu.org>
parents:
41701
diff
changeset
|
510 (move-overlay ov end ov-end) |
90bce6424b8b
(hilit-chg-fixup): Don't alter overlay if not ours.
Richard M. Stallman <rms@gnu.org>
parents:
41701
diff
changeset
|
511 (delete-overlay ov)))))) |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
512 (hilit-chg-display-changes beg end))) |
22957 | 513 |
514 ;;;###autoload | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
515 (defun highlight-changes-remove-highlight (beg end) |
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
516 "Remove the change face from the region between BEG and END. |
22957 | 517 This allows you to manually remove highlighting from uninteresting changes." |
518 (interactive "r") | |
519 (let ((after-change-functions nil)) | |
520 (remove-text-properties beg end '(hilit-chg nil)) | |
521 (hilit-chg-fixup beg end))) | |
522 | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
523 (defun hilit-chg-set-face-on-change (beg end leng-before |
43030
90bce6424b8b
(hilit-chg-fixup): Don't alter overlay if not ours.
Richard M. Stallman <rms@gnu.org>
parents:
41701
diff
changeset
|
524 &optional no-property-change) |
22957 | 525 "Record changes and optionally display them in a distinctive face. |
526 `hilit-chg-set' adds this function to the `after-change-functions' hook." | |
527 ;; | |
528 ;; This function is called by the `after-change-functions' hook, which | |
529 ;; is how we are notified when text is changed. | |
23289 | 530 ;; It is also called from `highlight-compare-with-file'. |
22957 | 531 ;; |
532 ;; We do NOT want to simply do this if this is an undo command, because | |
533 ;; otherwise an undone change shows up as changed. While the properties | |
47259
08b8c2bc2e81
(highlight-changes-colours, highlight-changes-active-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
44740
diff
changeset
|
534 ;; are automatically restored by undo, we must fix up the overlay. |
22957 | 535 (save-match-data |
536 (let ((beg-decr 1) (end-incr 1) | |
537 (type 'hilit-chg) | |
538 old) | |
539 (if undo-in-progress | |
540 (if (eq highlight-changes-mode 'active) | |
541 (hilit-chg-fixup beg end)) | |
542 (if (and (= beg end) (> leng-before 0)) | |
543 ;; deletion | |
544 (progn | |
545 ;; The eolp and bolp tests are a kludge! But they prevent | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
546 ;; rather nasty looking displays when deleting text at the end |
47259
08b8c2bc2e81
(highlight-changes-colours, highlight-changes-active-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
44740
diff
changeset
|
547 ;; of line, such as normal corrections as one is typing and |
08b8c2bc2e81
(highlight-changes-colours, highlight-changes-active-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
44740
diff
changeset
|
548 ;; immediately makes a correction, and when deleting first |
22957 | 549 ;; character of a line. |
550 ;;; (if (= leng-before 1) | |
551 ;;; (if (eolp) | |
552 ;;; (setq beg-decr 0 end-incr 0) | |
553 ;;; (if (bolp) | |
554 ;;; (setq beg-decr 0)))) | |
555 ;;; (setq beg (max (- beg beg-decr) (point-min))) | |
556 (setq end (min (+ end end-incr) (point-max))) | |
557 (setq type 'hilit-chg-delete)) | |
558 ;; Not a deletion. | |
47259
08b8c2bc2e81
(highlight-changes-colours, highlight-changes-active-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
44740
diff
changeset
|
559 ;; Most of the time the following is not necessary, but |
22957 | 560 ;; if the current text was marked as a deletion then |
561 ;; the old overlay is still in effect, so if we add some | |
47259
08b8c2bc2e81
(highlight-changes-colours, highlight-changes-active-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
44740
diff
changeset
|
562 ;; text then remove the deletion marking, but set it to |
22957 | 563 ;; changed otherwise its highlighting disappears. |
564 (if (eq (get-text-property end 'hilit-chg) 'hilit-chg-delete) | |
565 (progn | |
566 (remove-text-properties end (+ end 1) '(hilit-chg nil)) | |
567 (put-text-property end (+ end 1) 'hilit-chg 'hilit-chg) | |
568 (if (eq highlight-changes-mode 'active) | |
569 (hilit-chg-fixup beg (+ end 1)))))) | |
43030
90bce6424b8b
(hilit-chg-fixup): Don't alter overlay if not ours.
Richard M. Stallman <rms@gnu.org>
parents:
41701
diff
changeset
|
570 (unless no-property-change |
22957 | 571 (put-text-property beg end 'hilit-chg type)) |
43030
90bce6424b8b
(hilit-chg-fixup): Don't alter overlay if not ours.
Richard M. Stallman <rms@gnu.org>
parents:
41701
diff
changeset
|
572 (if (or (eq highlight-changes-mode 'active) no-property-change) |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
573 (hilit-chg-make-ov type beg end)))))) |
22957 | 574 |
575 (defun hilit-chg-set (value) | |
576 "Turn on Highlight Changes mode for this buffer." | |
577 (setq highlight-changes-mode value) | |
578 (remove-hook 'after-change-functions 'hilit-chg-set-face-on-change t) | |
579 (hilit-chg-make-list) | |
580 (if (eq highlight-changes-mode 'active) | |
581 (progn | |
582 (setq hilit-chg-string highlight-changes-active-string) | |
583 (or buffer-read-only | |
584 (hilit-chg-display-changes))) | |
585 ;; mode is passive | |
586 (setq hilit-chg-string highlight-changes-passive-string) | |
587 (or buffer-read-only | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
588 (hilit-chg-hide-changes))) |
22957 | 589 (force-mode-line-update) |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
590 (add-hook 'after-change-functions 'hilit-chg-set-face-on-change nil t)) |
22957 | 591 |
592 (defun hilit-chg-clear () | |
593 "Remove Highlight Changes mode for this buffer. | |
594 This removes all saved change information." | |
595 (if buffer-read-only | |
596 ;; We print the buffer name because this function could be called | |
597 ;; on many buffers from `global-highlight-changes'. | |
598 (message "Cannot remove highlighting from read-only mode buffer %s" | |
599 (buffer-name)) | |
600 (remove-hook 'after-change-functions 'hilit-chg-set-face-on-change t) | |
601 (let ((after-change-functions nil)) | |
602 (hilit-chg-hide-changes) | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
603 (hilit-chg-map-changes |
22957 | 604 '(lambda (prop start stop) |
605 (remove-text-properties start stop '(hilit-chg nil)))) | |
606 ) | |
607 (setq highlight-changes-mode nil) | |
608 (force-mode-line-update) | |
609 ;; If we type: C-u -1 M-x highlight-changes-mode | |
47259
08b8c2bc2e81
(highlight-changes-colours, highlight-changes-active-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
44740
diff
changeset
|
610 ;; we want to turn it off, but hilit-chg-post-command-hook |
22957 | 611 ;; runs and that turns it back on! |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
612 (remove-hook 'post-command-hook 'hilit-chg-post-command-hook))) |
22957 | 613 |
614 ;;;###autoload | |
615 (defun highlight-changes-mode (&optional arg) | |
616 "Toggle (or initially set) Highlight Changes mode. | |
617 | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
618 Without an argument: |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
619 If Highlight Changes mode is not enabled, then enable it (in either active |
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
620 or passive state as determined by the variable |
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
621 `highlight-changes-initial-state'); otherwise, toggle between active |
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
622 and passive state. |
22957 | 623 |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
624 With an argument ARG: |
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
625 If ARG is positive, set state to active; |
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
626 If ARG is zero, set state to passive; |
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
627 If ARG is negative, disable Highlight Changes mode completely. |
22957 | 628 |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
629 Active state - means changes are shown in a distinctive face. |
22957 | 630 Passive state - means changes are kept and new ones recorded but are |
631 not displayed in a different face. | |
632 | |
633 Functions: | |
634 \\[highlight-changes-next-change] - move point to beginning of next change | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
635 \\[highlight-changes-previous-change] - move to beginning of previous change |
23289 | 636 \\[highlight-compare-with-file] - mark text as changed by comparing this |
637 buffer with the contents of a file | |
22957 | 638 \\[highlight-changes-remove-highlight] - remove the change face from the region |
639 \\[highlight-changes-rotate-faces] - rotate different \"ages\" of changes \ | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
640 through |
22957 | 641 various faces. |
642 | |
643 Hook variables: | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
644 `highlight-changes-enable-hook' - when enabling Highlight Changes mode. |
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
645 `highlight-changes-toggle-hook' - when entering active or passive state |
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
646 `highlight-changes-disable-hook' - when turning off Highlight Changes mode." |
22957 | 647 (interactive "P") |
29204
d38a98cddcec
(highlight-changes-mode): Ask about color or
Eli Zaretskii <eliz@gnu.org>
parents:
25533
diff
changeset
|
648 (if (or (display-color-p) |
d38a98cddcec
(highlight-changes-mode): Ask about color or
Eli Zaretskii <eliz@gnu.org>
parents:
25533
diff
changeset
|
649 (and (fboundp 'x-display-grayscale-p) (x-display-grayscale-p))) |
22957 | 650 (let ((was-on highlight-changes-mode) |
651 (new-highlight-changes-mode | |
652 (cond | |
653 ((null arg) | |
654 ;; no arg => toggle (or set to active initially) | |
655 (if highlight-changes-mode | |
656 (if (eq highlight-changes-mode 'active) 'passive 'active) | |
657 highlight-changes-initial-state)) | |
658 ;; an argument is given | |
659 ((eq arg 'active) | |
660 'active) | |
661 ((eq arg 'passive) | |
662 'passive) | |
663 ((> (prefix-numeric-value arg) 0) | |
664 'active) | |
665 ((< (prefix-numeric-value arg) 0) | |
666 nil) | |
667 (t | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
668 'passive)))) |
22957 | 669 (if new-highlight-changes-mode |
670 ;; mode is turned on -- but may be passive | |
671 (progn | |
672 (hilit-chg-set new-highlight-changes-mode) | |
673 (or was-on | |
674 ;; run highlight-changes-enable-hook once | |
675 (run-hooks 'highlight-changes-enable-hook)) | |
676 (run-hooks 'highlight-changes-toggle-hook)) | |
677 ;; mode is turned off | |
678 (run-hooks 'highlight-changes-disable-hook) | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
679 (hilit-chg-clear))) |
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
680 (message "Highlight Changes mode requires color or grayscale display"))) |
22957 | 681 |
682 ;;;###autoload | |
683 (defun highlight-changes-next-change () | |
684 "Move to the beginning of the next change, if in Highlight Changes mode." | |
685 (interactive) | |
686 (if highlight-changes-mode | |
687 (let ((start (point)) | |
688 prop) | |
689 (setq prop (get-text-property (point) 'hilit-chg)) | |
690 (if prop | |
691 ;; we are in a change | |
692 (setq start (next-single-property-change (point) 'hilit-chg))) | |
693 (if start | |
694 (setq start (next-single-property-change start 'hilit-chg))) | |
695 (if start | |
696 (goto-char start) | |
697 (message "no next change"))) | |
698 (message "This buffer is not in Highlight Changes mode."))) | |
699 | |
700 | |
701 ;;;###autoload | |
702 (defun highlight-changes-previous-change () | |
703 "Move to the beginning of the previous change, if in Highlight Changes mode." | |
704 (interactive) | |
705 (if highlight-changes-mode | |
706 (let ( (start (point)) (prop nil) ) | |
707 (or (bobp) | |
708 (setq prop (get-text-property (1- (point)) 'hilit-chg))) | |
709 (if prop | |
710 ;; we are in a change | |
711 (setq start (previous-single-property-change (point) 'hilit-chg))) | |
712 (if start | |
713 (setq start (previous-single-property-change start 'hilit-chg))) | |
714 ;; special handling for the case where (point-min) is a change | |
715 (if start | |
716 (setq start (or (previous-single-property-change start 'hilit-chg) | |
717 (if (get-text-property (point-min) 'hilit-chg) | |
718 (point-min))))) | |
719 (if start | |
720 (goto-char start) | |
721 (message "no previous change"))) | |
722 (message "This buffer is not in Highlight Changes mode."))) | |
723 | |
724 ;; ======================================================================== | |
725 | |
726 (defun hilit-chg-make-list (&optional force) | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
727 "Construct `hilit-chg-list' and `highlight-changes-face-list'." |
47259
08b8c2bc2e81
(highlight-changes-colours, highlight-changes-active-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
44740
diff
changeset
|
728 ;; Constructs highlight-changes-face-list if necessary, |
22957 | 729 ;; and hilit-chg-list always: |
730 ;; Maybe this should always be called when rotating a face | |
731 ;; so we pick up any changes? | |
732 (if (or (null highlight-changes-face-list) ; Don't do it if it | |
733 force) ; already exists unless FORCE non-nil. | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
734 (let ((p highlight-changes-colours) |
22957 | 735 (n 1) name) |
736 (setq highlight-changes-face-list nil) | |
737 (while p | |
63207
fecefbfcd215
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-377
Miles Bader <miles@gnu.org>
parents:
61394
diff
changeset
|
738 (setq name (intern (format "highlight-changes-%d" n))) |
fecefbfcd215
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-377
Miles Bader <miles@gnu.org>
parents:
61394
diff
changeset
|
739 (copy-face 'highlight-changes name) |
22957 | 740 (set-face-foreground name (car p)) |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
741 (setq highlight-changes-face-list |
22957 | 742 (append highlight-changes-face-list (list name))) |
743 (setq p (cdr p)) | |
744 (setq n (1+ n))))) | |
63207
fecefbfcd215
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-377
Miles Bader <miles@gnu.org>
parents:
61394
diff
changeset
|
745 (setq hilit-chg-list (list 'hilit-chg 'highlight-changes)) |
22957 | 746 (let ((p highlight-changes-face-list) |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
747 (n 1) |
22957 | 748 last-category last-face) |
749 (while p | |
750 (setq last-category (intern (format "change-%d" n))) | |
63207
fecefbfcd215
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-377
Miles Bader <miles@gnu.org>
parents:
61394
diff
changeset
|
751 ;; (setq last-face (intern (format "highlight-changes-%d" n))) |
22957 | 752 (setq last-face (car p)) |
753 (setq hilit-chg-list | |
754 (append hilit-chg-list | |
755 (list last-category last-face))) | |
756 (setq p (cdr p)) | |
757 (setq n (1+ n))) | |
758 (setq hilit-chg-list | |
759 (append hilit-chg-list | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
760 (list last-category last-face))))) |
22957 | 761 |
762 (defun hilit-chg-bump-change (prop start end) | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
763 "Increment (age) the Highlight Changes mode text property." |
22957 | 764 (let ( new-prop ) |
765 (if (eq prop 'hilit-chg-delete) | |
766 (setq new-prop (nth 2 hilit-chg-list)) | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
767 (setq new-prop (nth 2 (member prop hilit-chg-list)))) |
22957 | 768 (if prop |
769 (put-text-property start end 'hilit-chg new-prop) | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
770 (message "%d-%d unknown property %s not changed" start end prop)))) |
22957 | 771 |
772 ;;;###autoload | |
773 (defun highlight-changes-rotate-faces () | |
774 "Rotate the faces used by Highlight Changes mode. | |
775 | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
776 Current changes are displayed in the face described by the first element |
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
777 of `highlight-changes-face-list', one level older changes are shown in |
22957 | 778 face described by the second element, and so on. Very old changes remain |
779 shown in the last face in the list. | |
780 | |
63252
f4b47991b594
(highlight-changes-colours highlight-changes-face-list,
Juanma Barranquero <lekktu@gmail.com>
parents:
63207
diff
changeset
|
781 You can automatically rotate colors when the buffer is saved |
47259
08b8c2bc2e81
(highlight-changes-colours, highlight-changes-active-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
44740
diff
changeset
|
782 by adding the following to `local-write-file-hooks', by evaling it in the |
22957 | 783 buffer to be saved): |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
784 |
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
785 \(add-hook 'local-write-file-hooks 'highlight-changes-rotate-faces)" |
22957 | 786 (interactive) |
787 ;; If not in active mode do nothing but don't complain because this | |
788 ;; may be bound to a hook. | |
789 (if (eq highlight-changes-mode 'active) | |
790 (let ((after-change-functions nil)) | |
791 ;; ensure hilit-chg-list is made and up to date | |
792 (hilit-chg-make-list) | |
793 ;; remove our existing overlays | |
794 (hilit-chg-hide-changes) | |
795 ;; for each change text property, increment it | |
796 (hilit-chg-map-changes 'hilit-chg-bump-change) | |
797 ;; and display them all if active | |
798 (if (eq highlight-changes-mode 'active) | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
799 (hilit-chg-display-changes)))) |
22957 | 800 ;; This always returns nil so it is safe to use in |
801 ;; local-write-file-hook | |
802 nil) | |
803 | |
804 ;; ======================================================================== | |
54009
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
805 ;; Comparing buffers/files |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
806 ;; These use ediff to find the differences. |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
807 |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
808 (defun highlight-markup-buffers |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
809 (buf-a file-a buf-b file-b &optional markup-a-only) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
810 "Get differences between two buffers and set highlight changes. |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
811 Both buffers are done unless optional parameter MARKUP-A-ONLY |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
812 is non-nil." |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
813 (save-window-excursion |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
814 (let* (change-info |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
815 change-a change-b |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
816 a-start a-end len-a |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
817 b-start b-end len-b |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
818 (bufa-modified (buffer-modified-p buf-a)) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
819 (bufb-modified (buffer-modified-p buf-b)) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
820 (buf-a-read-only (with-current-buffer buf-a buffer-read-only)) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
821 (buf-b-read-only (with-current-buffer buf-b buffer-read-only)) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
822 temp-a temp-b) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
823 (if (and file-a bufa-modified) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
824 (if (y-or-n-p (format "Save buffer %s? " buf-a)) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
825 (with-current-buffer buf-a |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
826 (save-buffer) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
827 (setq bufa-modified (buffer-modified-p buf-a))) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
828 (setq file-a nil))) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
829 (or file-a |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
830 (setq temp-a (setq file-a (ediff-make-temp-file buf-a nil)))) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
831 |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
832 (if (and file-b bufb-modified) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
833 (if (y-or-n-p (format "Save buffer %s? " buf-b)) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
834 (with-current-buffer buf-b |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
835 (save-buffer) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
836 (setq bufb-modified (buffer-modified-p buf-b))) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
837 (setq file-b nil))) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
838 (or file-b |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
839 (setq temp-b (setq file-b (ediff-make-temp-file buf-b nil)))) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
840 (set-buffer buf-a) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
841 (highlight-changes-mode 'active) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
842 (or markup-a-only (with-current-buffer buf-b |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
843 (highlight-changes-mode 'active))) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
844 (setq change-info (hilit-chg-get-diff-info buf-a file-a buf-b file-b)) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
845 |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
846 |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
847 (setq change-a (car change-info)) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
848 (setq change-b (car (cdr change-info))) |
63252
f4b47991b594
(highlight-changes-colours highlight-changes-face-list,
Juanma Barranquero <lekktu@gmail.com>
parents:
63207
diff
changeset
|
849 |
54009
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
850 (hilit-chg-make-list) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
851 (while change-a |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
852 (setq a-start (nth 0 (car change-a))) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
853 (setq a-end (nth 1 (car change-a))) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
854 (setq b-start (nth 0 (car change-b))) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
855 (setq b-end (nth 1 (car change-b))) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
856 (setq len-a (- a-end a-start)) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
857 (setq len-b (- b-end b-start)) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
858 (set-buffer buf-a) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
859 (hilit-chg-set-face-on-change a-start a-end len-b buf-a-read-only) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
860 (or markup-a-only |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
861 (with-current-buffer buf-b |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
862 (hilit-chg-set-face-on-change b-start b-end len-a |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
863 buf-b-read-only) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
864 )) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
865 (setq change-a (cdr change-a)) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
866 (setq change-b (cdr change-b))) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
867 (or bufa-modified |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
868 (with-current-buffer buf-a (set-buffer-modified-p nil))) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
869 (or bufb-modified |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
870 (with-current-buffer buf-b (set-buffer-modified-p nil))) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
871 (if temp-a |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
872 (delete-file temp-a)) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
873 (if temp-b |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
874 (delete-file temp-b))) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
875 )) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
876 |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
877 ;;;###autoload |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
878 (defun highlight-compare-buffers (buf-a buf-b) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
879 "Compare two buffers and highlight the differences. |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
880 |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
881 The default is the current buffer and the one in the next window. |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
882 |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
883 If either buffer is modified and is visiting a file, you are prompted |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
884 to save the file. |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
885 |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
886 Unless the buffer is unmodified and visiting a file, the buffer is |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
887 written to a temporary file for comparison. |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
888 |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
889 If a buffer is read-only, differences will be highlighted but no property |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
890 changes are made, so \\[highlight-changes-next-change] and |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
891 \\[highlight-changes-previous-change] will not work." |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
892 (interactive |
63252
f4b47991b594
(highlight-changes-colours highlight-changes-face-list,
Juanma Barranquero <lekktu@gmail.com>
parents:
63207
diff
changeset
|
893 (list |
54009
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
894 (get-buffer (read-buffer "buffer-a " (current-buffer) t)) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
895 (get-buffer |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
896 (read-buffer "buffer-b " |
63252
f4b47991b594
(highlight-changes-colours highlight-changes-face-list,
Juanma Barranquero <lekktu@gmail.com>
parents:
63207
diff
changeset
|
897 (window-buffer (next-window (selected-window))) t)))) |
54009
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
898 (let ((file-a (buffer-file-name buf-a)) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
899 (file-b (buffer-file-name buf-b))) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
900 (highlight-markup-buffers buf-a file-a buf-b file-b) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
901 )) |
22957 | 902 |
903 ;;;###autoload | |
23288
17dd9ecf84f1
(highlight-compare-with-file): Renamed from
Karl Heuer <kwzh@gnu.org>
parents:
23101
diff
changeset
|
904 (defun highlight-compare-with-file (file-b) |
17dd9ecf84f1
(highlight-compare-with-file): Renamed from
Karl Heuer <kwzh@gnu.org>
parents:
23101
diff
changeset
|
905 "Compare this buffer with a file, and highlight differences. |
22957 | 906 |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
907 If the buffer has a backup filename, it is used as the default when |
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
908 this function is called interactively. |
22957 | 909 |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
910 If the current buffer is visiting the file being compared against, it |
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
911 also will have its differences highlighted. Otherwise, the file is |
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
912 read in temporarily but the buffer is deleted. |
22957 | 913 |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
914 If the buffer is read-only, differences will be highlighted but no property |
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
915 changes are made, so \\[highlight-changes-next-change] and |
22957 | 916 \\[highlight-changes-previous-change] will not work." |
917 (interactive (list | |
918 (read-file-name | |
919 "File to compare with? " ;; prompt | |
920 "" ;; directory | |
921 nil ;; default | |
922 'yes ;; must exist | |
54009
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
923 (let ((f (buffer-file-name (current-buffer)))) |
63252
f4b47991b594
(highlight-changes-colours highlight-changes-face-list,
Juanma Barranquero <lekktu@gmail.com>
parents:
63207
diff
changeset
|
924 (if f |
54009
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
925 (progn |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
926 (setq f (make-backup-file-name f)) |
63252
f4b47991b594
(highlight-changes-colours highlight-changes-face-list,
Juanma Barranquero <lekktu@gmail.com>
parents:
63207
diff
changeset
|
927 (or (file-exists-p f) |
54009
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
928 (setq f nil))) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
929 ) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
930 f)))) |
22957 | 931 (let* ((buf-a (current-buffer)) |
932 (file-a (buffer-file-name)) | |
933 (existing-buf (get-file-buffer file-b)) | |
934 (buf-b (or existing-buf | |
935 (find-file-noselect file-b))) | |
54009
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
936 (buf-b-read-only (with-current-buffer buf-b buffer-read-only))) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
937 (highlight-markup-buffers buf-a file-a buf-b file-b (not existing-buf)) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
938 (unless existing-buf |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
939 (kill-buffer buf-b)) |
303333d2f1f3
Use require instead of eval-and-compile.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52401
diff
changeset
|
940 )) |
22957 | 941 |
942 | |
943 (defun hilit-chg-get-diff-info (buf-a file-a buf-b file-b) | |
944 (let ((e nil) x y) ;; e is set by function hilit-chg-get-diff-list-hk | |
945 (ediff-setup buf-a file-a buf-b file-b | |
946 nil nil ; buf-c file-C | |
947 'hilit-chg-get-diff-list-hk | |
948 (list (cons 'ediff-job-name 'something)) | |
949 ) | |
950 (ediff-with-current-buffer e (ediff-really-quit nil)) | |
951 (list x y))) | |
952 | |
953 | |
954 (defun hilit-chg-get-diff-list-hk () | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
955 ;; x and y are dynamically bound by hilit-chg-get-diff-info |
22957 | 956 ;; which calls this function as a hook |
957 (defvar x) ;; placate the byte-compiler | |
958 (defvar y) | |
959 (setq e (current-buffer)) | |
960 (let ((n 0) extent p va vb a b) | |
961 (setq x nil y nil) ;; x and y are bound by hilit-chg-get-diff-info | |
962 (while (< n ediff-number-of-differences) | |
963 (ediff-make-fine-diffs n) | |
964 (setq va (ediff-get-fine-diff-vector n 'A)) | |
965 ;; va is a vector if there are fine differences | |
966 (if va | |
967 (setq a (append va nil)) | |
47259
08b8c2bc2e81
(highlight-changes-colours, highlight-changes-active-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
44740
diff
changeset
|
968 ;; if not, get the unrefined difference |
22957 | 969 (setq va (ediff-get-difference n 'A)) |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
970 (setq a (list (elt va 0)))) |
22957 | 971 ;; a list a list |
972 (setq p a) | |
973 (while p | |
974 (setq extent (list (overlay-start (car p)) | |
975 (overlay-end (car p)))) | |
976 (setq p (cdr p)) | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
977 (setq x (append x (list extent) )));; while p |
22957 | 978 ;; |
979 (setq vb (ediff-get-fine-diff-vector n 'B)) | |
980 ;; vb is a vector | |
981 (if vb | |
982 (setq b (append vb nil)) | |
47259
08b8c2bc2e81
(highlight-changes-colours, highlight-changes-active-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
44740
diff
changeset
|
983 ;; if not, get the unrefined difference |
22957 | 984 (setq vb (ediff-get-difference n 'B)) |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
985 (setq b (list (elt vb 0)))) |
22957 | 986 ;; b list a list |
987 (setq p b) | |
988 (while p | |
989 (setq extent (list (overlay-start (car p)) | |
990 (overlay-end (car p)))) | |
991 (setq p (cdr p)) | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
992 (setq y (append y (list extent) ))) |
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
993 (setq n (1+ n)));; while |
22957 | 994 ;; ediff-quit doesn't work here. |
995 ;; No point in returning a value, since this is a hook function. | |
996 )) | |
997 | |
998 ;; ======================= automatic stuff ============== | |
999 | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
1000 ;; Global Highlight Changes mode is modeled after Global Font-lock mode. |
22957 | 1001 ;; Three hooks are used to gain control. When Global Changes Mode is |
60902
7160fe3a7ef1
find-file-hooks -> find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59601
diff
changeset
|
1002 ;; enabled, `find-file-hook' and `change-major-mode-hook' are set. |
7160fe3a7ef1
find-file-hooks -> find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59601
diff
changeset
|
1003 ;; `find-file-hook' is called when visiting a file, the new mode is |
22957 | 1004 ;; known at this time. |
1005 ;; `change-major-mode-hook' is called when a buffer is changing mode. | |
1006 ;; This could be because of finding a file in which case | |
60902
7160fe3a7ef1
find-file-hooks -> find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59601
diff
changeset
|
1007 ;; `find-file-hook' has already been called and has done its work. |
22957 | 1008 ;; However, it also catches the case where a new mode is being set by |
1009 ;; the user. However, it is called from `kill-all-variables' and at | |
47259
08b8c2bc2e81
(highlight-changes-colours, highlight-changes-active-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
44740
diff
changeset
|
1010 ;; this time the mode is the old mode, which is not what we want. |
08b8c2bc2e81
(highlight-changes-colours, highlight-changes-active-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
44740
diff
changeset
|
1011 ;; So, our function temporarily sets `post-command-hook' which will |
22957 | 1012 ;; be called after the buffer has been completely set up (with the new |
1013 ;; mode). It then removes the `post-command-hook'. | |
1014 ;; One other wrinkle - every M-x command runs the `change-major-mode-hook' | |
1015 ;; so we ignore this by examining the buffer name. | |
1016 | |
1017 | |
1018 (defun hilit-chg-major-mode-hook () | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
1019 (add-hook 'post-command-hook 'hilit-chg-post-command-hook)) |
22957 | 1020 |
1021 (defun hilit-chg-post-command-hook () | |
1022 ;; This is called after changing a major mode, but also after each | |
47259
08b8c2bc2e81
(highlight-changes-colours, highlight-changes-active-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
44740
diff
changeset
|
1023 ;; M-x command, in which case the current buffer is a minibuffer. |
08b8c2bc2e81
(highlight-changes-colours, highlight-changes-active-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
44740
diff
changeset
|
1024 ;; In that case, do not act on it here, but don't turn it off |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
1025 ;; either, we will get called here again soon-after. |
47259
08b8c2bc2e81
(highlight-changes-colours, highlight-changes-active-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
44740
diff
changeset
|
1026 ;; Also, don't enable it for other special buffers. |
22957 | 1027 (if (string-match "^[ *]" (buffer-name)) |
1028 nil ;; (message "ignoring this post-command-hook") | |
1029 (remove-hook 'post-command-hook 'hilit-chg-post-command-hook) | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
1030 ;; The following check isn't necessary, since |
22957 | 1031 ;; hilit-chg-turn-on-maybe makes this check too. |
1032 (or highlight-changes-mode ;; don't turn it on if it already is | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
1033 (hilit-chg-turn-on-maybe highlight-changes-global-initial-state)))) |
22957 | 1034 |
1035 (defun hilit-chg-check-global () | |
1036 ;; This is called from the find file hook. | |
1037 (hilit-chg-turn-on-maybe highlight-changes-global-initial-state)) | |
1038 | |
1039 | |
1040 ;;;###autoload | |
1041 (defun global-highlight-changes (&optional arg) | |
1042 "Turn on or off global Highlight Changes mode. | |
1043 | |
1044 When called interactively: | |
1045 - if no prefix, toggle global Highlight Changes mode on or off | |
1046 - if called with a positive prefix (or just C-u) turn it on in active mode | |
1047 - if called with a zero prefix turn it on in passive mode | |
1048 - if called with a negative prefix turn it off | |
1049 | |
1050 When called from a program: | |
1051 - if ARG is nil or omitted, turn it off | |
47259
08b8c2bc2e81
(highlight-changes-colours, highlight-changes-active-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
44740
diff
changeset
|
1052 - if ARG is `active', turn it on in active mode |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
1053 - if ARG is `passive', turn it on in passive mode |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
1054 - otherwise just turn it on |
22957 | 1055 |
1056 When global Highlight Changes mode is enabled, Highlight Changes mode is turned | |
1057 on for future \"suitable\" buffers (and for \"suitable\" existing buffers if | |
1058 variable `highlight-changes-global-changes-existing-buffers' is non-nil). | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
1059 \"Suitability\" is determined by variable `highlight-changes-global-modes'." |
22957 | 1060 |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
1061 (interactive |
22957 | 1062 (list |
1063 (cond | |
1064 ((null current-prefix-arg) | |
1065 ;; no arg => toggle it on/off | |
1066 (setq global-highlight-changes (not global-highlight-changes))) | |
1067 ;; positive interactive arg - turn it on as active | |
1068 ((> (prefix-numeric-value current-prefix-arg) 0) | |
1069 (setq global-highlight-changes t) | |
1070 'active) | |
1071 ;; zero interactive arg - turn it on as passive | |
1072 ((= (prefix-numeric-value current-prefix-arg) 0) | |
1073 (setq global-highlight-changes t) | |
1074 'passive) | |
1075 ;; negative interactive arg - turn it off | |
1076 (t | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
1077 (setq global-highlight-changes nil) |
22957 | 1078 nil)))) |
1079 | |
1080 (if arg | |
1081 (progn | |
1082 (if (eq arg 'active) | |
1083 (setq highlight-changes-global-initial-state 'active) | |
1084 (if (eq arg 'passive) | |
1085 (setq highlight-changes-global-initial-state 'passive))) | |
1086 (setq global-highlight-changes t) | |
44740
385762249723
(global-highlight-changes): Capitalize status texts.
Pavel Janík <Pavel@Janik.cz>
parents:
43132
diff
changeset
|
1087 (message "Turning ON Global Highlight Changes mode in %s state" |
22957 | 1088 highlight-changes-global-initial-state) |
60902
7160fe3a7ef1
find-file-hooks -> find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59601
diff
changeset
|
1089 ;; FIXME: Not sure what this was intended to do. --Stef |
7160fe3a7ef1
find-file-hooks -> find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59601
diff
changeset
|
1090 ;; (add-hook 'hilit-chg-major-mode-hook 'hilit-chg-major-mode-hook) |
7160fe3a7ef1
find-file-hooks -> find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59601
diff
changeset
|
1091 (add-hook 'find-file-hook 'hilit-chg-check-global) |
22957 | 1092 (if highlight-changes-global-changes-existing-buffers |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
1093 (hilit-chg-update-all-buffers |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
1094 highlight-changes-global-initial-state))) |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
1095 |
44740
385762249723
(global-highlight-changes): Capitalize status texts.
Pavel Janík <Pavel@Janik.cz>
parents:
43132
diff
changeset
|
1096 (message "Turning OFF global Highlight Changes mode") |
60902
7160fe3a7ef1
find-file-hooks -> find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59601
diff
changeset
|
1097 ;; FIXME: Not sure what this was intended to do. --Stef |
7160fe3a7ef1
find-file-hooks -> find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59601
diff
changeset
|
1098 ;; (remove-hook 'hilit-chg-major-mode-hook 'hilit-chg-major-mode-hook) |
7160fe3a7ef1
find-file-hooks -> find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59601
diff
changeset
|
1099 (remove-hook 'post-command-hook 'hilit-chg-post-command-hook) |
7160fe3a7ef1
find-file-hooks -> find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59601
diff
changeset
|
1100 (remove-hook 'find-file-hook 'hilit-chg-check-global) |
22957 | 1101 (if highlight-changes-global-changes-existing-buffers |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
1102 (hilit-chg-update-all-buffers nil)))) |
22957 | 1103 |
1104 | |
1105 (defun hilit-chg-turn-on-maybe (value) | |
1106 "Turn on Highlight Changes mode if it is appropriate for this buffer. | |
1107 | |
1108 A buffer is appropriate for Highlight Changes mode if all these are true: | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
1109 - the buffer is not a special buffer (one whose name begins with |
22957 | 1110 `*' or ` ') |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
1111 - the buffer's mode is suitable as per variable |
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
1112 `highlight-changes-global-modes' |
22957 | 1113 - Highlight Changes mode is not already on for this buffer. |
1114 | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
1115 This function is called from `hilit-chg-update-all-buffers' or |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
1116 from `global-highlight-changes' when turning on global Highlight Changes mode." |
22957 | 1117 (or highlight-changes-mode ; do nothing if already on |
1118 (if | |
1119 (cond | |
1120 ((null highlight-changes-global-modes) | |
1121 nil) | |
1122 ((functionp highlight-changes-global-modes) | |
1123 (funcall highlight-changes-global-modes)) | |
1124 ((listp highlight-changes-global-modes) | |
1125 (if (eq (car-safe highlight-changes-global-modes) 'not) | |
1126 (not (memq major-mode (cdr highlight-changes-global-modes))) | |
1127 (memq major-mode highlight-changes-global-modes))) | |
1128 (t | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
1129 (and |
22957 | 1130 (not (string-match "^[ *]" (buffer-name))) |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
1131 (buffer-file-name)))) |
22957 | 1132 (progn |
1133 (hilit-chg-set value) | |
30962
b309b17a6025
General cleanup of doc strings, comments and
Gerd Moellmann <gerd@gnu.org>
parents:
30924
diff
changeset
|
1134 (run-hooks 'highlight-changes-enable-hook))))) |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
1135 |
22957 | 1136 |
1137 (defun hilit-chg-turn-off-maybe () | |
1138 (if highlight-changes-mode | |
1139 (progn | |
1140 (run-hooks 'highlight-changes-disable-hook) | |
1141 (hilit-chg-clear)))) | |
1142 | |
1143 | |
1144 (defun hilit-chg-update-all-buffers (value) | |
1145 (mapcar | |
1146 (function (lambda (buffer) | |
1147 (with-current-buffer buffer | |
1148 (if value | |
1149 (hilit-chg-turn-on-maybe value) | |
1150 (hilit-chg-turn-off-maybe)) | |
1151 ))) | |
1152 (buffer-list))) | |
1153 | |
1154 ;; ===================== debug ================== | |
1155 ;; For debug & test use: | |
1156 ;; | |
1157 ;; (defun hilit-chg-debug-show (&optional beg end) | |
1158 ;; (interactive) | |
1159 ;; (message "--- hilit-chg-debug-show ---") | |
1160 ;; (hilit-chg-map-changes '(lambda (prop start end) | |
1161 ;; (message "%d-%d: %s" start end prop) | |
1162 ;; ) | |
1163 ;; beg end | |
1164 ;; )) | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47259
diff
changeset
|
1165 ;; |
22957 | 1166 ;; ================== end of debug =============== |
1167 | |
1168 (provide 'hilit-chg) | |
22958
cd50dfa70bb2
Delete the undo-in-progress compatibility code.
Richard M. Stallman <rms@gnu.org>
parents:
22957
diff
changeset
|
1169 |
59601
73b89f6377fc
(highlight-changes-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54009
diff
changeset
|
1170 ;; arch-tag: de00301d-5bad-44da-aa82-e0e010b0c463 |
22957 | 1171 ;;; hilit-chg.el ends here |