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