]> code.delx.au - gnu-emacs/blob - lisp/hilit-chg.el
(mac_create_cg_image_from_image, image_load_image_io)
[gnu-emacs] / lisp / hilit-chg.el
1 ;;; hilit-chg.el --- minor mode displaying buffer changes with special face
2
3 ;; Copyright (C) 1998, 2000, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
5
6 ;; Author: Richard Sharman <rsharman@pobox.com>
7 ;; Keywords: faces
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 3, or (at your option)
14 ;; any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
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
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02110-1301, USA.
25
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.
40 ;;
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.
44 ;;
45 ;;
46 ;; You can "age" different sets of changes by using
47 ;; `highlight-changes-rotate-faces'. This rotates through a series
48 ;; of different faces, so you can distinguish "new" changes from "older"
49 ;; changes. You can customize these "rotated" faces in two ways. You can
50 ;; either explicitly define each face by customizing
51 ;; `highlight-changes-face-list'. If, however, the faces differ from
52 ;; the `highlight-changes' face only in the foreground color, you can simply set
53 ;; `highlight-changes-colors'. If `highlight-changes-face-list' is nil when
54 ;; the faces are required they will be constructed from
55 ;; `highlight-changes-colors'.
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 ;;
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
65 ;; of the file). The command highlight-compare-buffers can be used to
66 ;; compare two buffers.
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'.)
80 ;;
81 ;;
82 ;;
83 ;; Example usage:
84 ;; (defun my-highlight-changes-enable-hook ()
85 ;; (add-hook 'write-file-functions 'highlight-changes-rotate-faces nil t)
86 ;; )
87 ;;
88 ;; (defun my-highlight-changes-disable-hook ()
89 ;; (remove-hook 'write-file-functions 'highlight-changes-rotate-faces t)
90 ;; )
91 ;;
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
97 ;; Explicit vs. Implicit
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.
104 ;;
105 ;; 1. Most modes have a major-hook, typically called MODE-hook. You
106 ;; can use `add-hook' to call `highlight-changes-mode'.
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):
113 ;; (add-hook 'emacs-lisp-mode-hook
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 ;;
120 ;; 2. You can use the function `global-highlight-changes'
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
124 ;; on Highlight Changes mode in all "suitable" existing buffers and will turn
125 ;; it on in new "suitable" buffers to be created.
126 ;;
127 ;; A buffer's "suitability" is determined by variable
128 ;; `highlight-changes-global-modes', as follows. If the variable is
129 ;; * nil -- then no buffers are suitable;
130 ;; * a function -- this function is called and the result is used. As
131 ;; an example, if the value is `buffer-file-name' then all buffers
132 ;; who are visiting files are suitable, but others (like dired
133 ;; buffers) are not;
134 ;; * a list -- then the buffer is suitable if its mode is in the
135 ;; list, except if the first element is `not', in which case the test
136 ;; is reversed (i.e. it is a list of unsuitable modes).
137 ;; * Otherwise, the buffer is suitable if its name does not begin with
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
151 ;; highlight-compare-with-file
152 ;; highlight-compare-buffers
153
154 ;;
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;
163 ;; they should find the next "real" change, in other words treat
164 ;; consecutive changes as one.
165
166
167 ;;; To do (maybe), notes, ...
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?
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.
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
180 ;; R Sharman (rsharman@pobox.com) Feb 1998:
181 ;; - initial release as change-mode.
182 ;; Jari Aalto <jari.aalto@ntc.nokia.com> Mar 1998
183 ;; - fixes for byte compile errors
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
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
192 ;; - renamed to Highlight Changes mode.
193 ;; Dec 2003
194 ;; - Use require for ediff stuff
195 ;; - Added highlight-compare-buffers
196
197 ;;; Code:
198
199 (require 'wid-edit)
200
201 ;; ====================== Customization =======================
202 (defgroup highlight-changes nil
203 "Highlight Changes mode."
204 :version "20.4"
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.
212 ;; Note: underlining is helpful in that it shows up changes in white space.
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
216 (defface highlight-changes
217 '((((min-colors 88) (class color)) (:foreground "red1"))
218 (((class color)) (:foreground "red" ))
219 (t (:inverse-video t)))
220 "Face used for highlighting changes."
221 :group 'highlight-changes)
222 ;; backward-compatibility alias
223 (put 'highlight-changes-face 'face-alias 'highlight-changes)
224
225 ;; This looks pretty ugly, actually. Maybe the underline should be removed.
226 (defface highlight-changes-delete
227 '((((min-colors 88) (class color)) (:foreground "red1" :underline t))
228 (((class color)) (:foreground "red" :underline t))
229 (t (:inverse-video t)))
230 "Face used for highlighting deletions."
231 :group 'highlight-changes)
232 ;; backward-compatibility alias
233 (put 'highlight-changes-delete-face 'face-alias 'highlight-changes-delete)
234
235
236
237 ;; A (not very good) default list of colors to rotate through.
238 ;;
239 (defcustom highlight-changes-colors
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"))
245 "*Colors used by `highlight-changes-rotate-faces'.
246 The newest rotated change will be displayed in the first element of this list,
247 the next older will be in the second element etc.
248
249 This list is used if `highlight-changes-face-list' is nil, otherwise that
250 variable overrides this list. If you only care about foreground
251 colors then use this, if you want fancier faces then set
252 `highlight-changes-face-list'."
253 :type '(repeat color)
254 :group 'highlight-changes)
255
256 (define-obsolete-variable-alias 'highlight-changes-colours
257 'highlight-changes-colors "22.1")
258
259
260 ;; If you invoke highlight-changes-mode with no argument, should it start in
261 ;; active or passive mode?
262 ;;
263 (defcustom highlight-changes-initial-state 'active
264 "*What state (active or passive) Highlight Changes mode should start in.
265 This is used when `highlight-changes-mode' is called with no argument.
266 This variable must be set to one of the symbols `active' or `passive'."
267 :type '(choice (const :tag "Active" active)
268 (const :tag "Passive" passive))
269 :group 'highlight-changes)
270
271 (defcustom highlight-changes-global-initial-state 'passive
272 "*What state global Highlight Changes mode should start in.
273 This is used if `global-highlight-changes' is called with no argument.
274 This variable must be set to either `active' or `passive'."
275 :type '(choice (const :tag "Active" active)
276 (const :tag "Passive" passive))
277 :group 'highlight-changes)
278
279 ;; The strings displayed in the mode-line for the minor mode:
280 (defcustom highlight-changes-active-string " +Chg"
281 "*The string used when Highlight Changes mode is in the active state.
282 This should be set to nil if no indication is desired, or to
283 a string with a leading space."
284 :type '(choice string
285 (const :tag "None" nil))
286 :group 'highlight-changes)
287
288 (defcustom highlight-changes-passive-string " -Chg"
289 "*The string used when Highlight Changes mode is in the passive state.
290 This should be set to nil if no indication is desired, or to
291 a string with a leading space."
292 :type '(choice string
293 (const :tag "None" nil))
294 :group 'highlight-changes)
295
296 (defcustom highlight-changes-global-modes t
297 "*Determine whether a buffer is suitable for global Highlight Changes mode.
298
299 A function means call that function to decide: if it returns non-nil,
300 the buffer is suitable.
301
302 A list means the elements are major modes suitable for Highlight
303 Changes mode, or a list whose first element is `not' followed by major
304 modes which are not suitable.
305
306 A value of t means the buffer is suitable if it is visiting a file and
307 its name does not begin with ` ' or `*'.
308
309 A value of nil means no buffers are suitable for `global-highlight-changes'
310 \(effectively disabling the mode).
311
312 Example:
313 (c-mode c++-mode)
314 means that Highlight Changes mode is turned on for buffers in C and C++
315 modes only."
316 :type '(choice
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 )
326 :group 'highlight-changes)
327
328 (defvar global-highlight-changes nil)
329
330 (defcustom highlight-changes-global-changes-existing-buffers nil
331 "*If non-nil, toggling global Highlight Changes mode affects existing buffers.
332 Normally, `global-highlight-changes' affects only new buffers (to be
333 created). However, if `highlight-changes-global-changes-existing-buffers'
334 is non-nil, then turning on `global-highlight-changes' will turn on
335 Highlight Changes mode in suitable buffers, and turning the mode off will
336 remove 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
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
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))
358 (setq new-name (intern (format "highlight-changes-%d" n)))
359 (if (eq old-name new-name)
360 nil
361 ;; A new face has been inserted: we don't want to modify the
362 ;; default face so copy it. Better, though, (I think) is to
363 ;; make a new face have the same attributes as
364 ;; the `highlight-changes' face.
365 (if (eq old-name 'default)
366 (copy-face 'highlight-changes new-name)
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
382 (widget-apply parent :notify w event))))
383
384
385 (defcustom highlight-changes-face-list nil
386 "*A list of faces used when rotating changes.
387 Normally the variable is initialized to nil and the list is created from
388 `highlight-changes-colors' when needed. However, you can set this variable
389 to any list of faces. You will have to do this if you want faces which
390 don't just differ from the `highlight-changes' face by the foreground color.
391 Otherwise, this list will be constructed when needed from
392 `highlight-changes-colors'."
393 :type '(choice
394 (repeat
395 :notify hilit-chg-cust-fix-changes-face-list
396 face )
397 (const :tag "Derive from highlight-changes-colors" nil)
398 )
399 :group 'highlight-changes)
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
416 (require 'ediff-init)
417 (require 'ediff-util)
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)))
435 (setq start end))))
436
437
438 (defun hilit-chg-display-changes (&optional beg end)
439 "Display face information for Highlight Changes mode.
440
441 An overlay containing a change face is added from the information
442 in the text property of type `hilit-chg'.
443
444 This is the opposite of `hilit-chg-hide-changes'."
445 (hilit-chg-map-changes 'hilit-chg-make-ov beg end))
446
447
448 (defun hilit-chg-make-ov (prop start end)
449 (or prop
450 (error "hilit-chg-make-ov: prop is nil"))
451 ;; for the region make change overlays corresponding to
452 ;; the text property 'hilit-chg
453 (let ((ov (make-overlay start end))
454 face)
455 (if (eq prop 'hilit-chg-delete)
456 (setq face 'highlight-changes-delete)
457 (setq face (nth 1 (member prop hilit-chg-list))))
458 (if face
459 (progn
460 ;; We must mark the face, that is the purpose of the overlay
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 )
469 (error "hilit-chg-make-ov: no face for prop: %s" prop))))
470
471 (defun hilit-chg-hide-changes (&optional beg end)
472 "Remove face information for Highlight Changes mode.
473
474 The overlay containing the face is removed, but the text property
475 containing the change information is retained.
476
477 This is the opposite of `hilit-chg-display-changes'."
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)))
486 (setq p (cdr p)))))
487
488 (defun hilit-chg-fixup (beg end)
489 "Fix change overlays in region between BEG and END.
490
491 Ensure the overlays agree with the changes as determined from
492 the text properties of type `hilit-chg'."
493 ;; Remove or alter overlays in region beg..end
494 (let (ov-start ov-end props q)
495 ;; temp for debugging:
496 ;; (or (eq highlight-changes-mode 'active)
497 ;; (error "hilit-chg-fixup called but Highlight Changes mode not active"))
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)))))))
513 (if (> ov-end end)
514 (move-overlay ov end ov-end)
515 (delete-overlay ov))))))
516 (hilit-chg-display-changes beg end)))
517
518 ;; Inspired by font-lock. Something like this should be moved to subr.el.
519 (defmacro highlight-save-buffer-state (&rest body)
520 "Bind variables according to VARLIST and eval BODY restoring buffer state."
521 (declare (indent 0) (debug t))
522 (let ((modified (make-symbol "modified")))
523 `(let* ((,modified (buffer-modified-p))
524 (inhibit-modification-hooks t)
525 deactivate-mark
526 ;; So we don't check the file's mtime.
527 buffer-file-name
528 buffer-file-truename)
529 (progn
530 ,@body)
531 (unless ,modified
532 (restore-buffer-modified-p nil)))))
533
534 ;;;###autoload
535 (defun highlight-changes-remove-highlight (beg end)
536 "Remove the change face from the region between BEG and END.
537 This allows you to manually remove highlighting from uninteresting changes."
538 (interactive "r")
539 (highlight-save-buffer-state
540 (remove-text-properties beg end '(hilit-chg nil))
541 (hilit-chg-fixup beg end)))
542
543 (defun hilit-chg-set-face-on-change (beg end leng-before
544 &optional no-property-change)
545 "Record changes and optionally display them in a distinctive face.
546 `hilit-chg-set' adds this function to the `after-change-functions' hook."
547 ;;
548 ;; This function is called by the `after-change-functions' hook, which
549 ;; is how we are notified when text is changed.
550 ;; It is also called from `highlight-compare-with-file'.
551 ;;
552 ;; We do NOT want to simply do this if this is an undo command, because
553 ;; otherwise an undone change shows up as changed. While the properties
554 ;; are automatically restored by undo, we must fix up the overlay.
555 (save-match-data
556 (let ((beg-decr 1) (end-incr 1)
557 (type 'hilit-chg)
558 old)
559 (if undo-in-progress
560 (if (eq highlight-changes-mode 'active)
561 (hilit-chg-fixup beg end))
562 (highlight-save-buffer-state
563 (if (and (= beg end) (> leng-before 0))
564 ;; deletion
565 (progn
566 ;; The eolp and bolp tests are a kludge! But they prevent
567 ;; rather nasty looking displays when deleting text at the end
568 ;; of line, such as normal corrections as one is typing and
569 ;; immediately makes a correction, and when deleting first
570 ;; character of a line.
571 ;; (if (= leng-before 1)
572 ;; (if (eolp)
573 ;; (setq beg-decr 0 end-incr 0)
574 ;; (if (bolp)
575 ;; (setq beg-decr 0))))
576 ;; (setq beg (max (- beg beg-decr) (point-min)))
577 (setq end (min (+ end end-incr) (point-max)))
578 (setq type 'hilit-chg-delete))
579 ;; Not a deletion.
580 ;; Most of the time the following is not necessary, but
581 ;; if the current text was marked as a deletion then
582 ;; the old overlay is still in effect, so if we add some
583 ;; text then remove the deletion marking, but set it to
584 ;; changed otherwise its highlighting disappears.
585 (if (eq (get-text-property end 'hilit-chg) 'hilit-chg-delete)
586 (progn
587 (remove-text-properties end (+ end 1) '(hilit-chg nil))
588 (put-text-property end (+ end 1) 'hilit-chg 'hilit-chg)
589 (if (eq highlight-changes-mode 'active)
590 (hilit-chg-fixup beg (+ end 1))))))
591 (unless no-property-change
592 (put-text-property beg end 'hilit-chg type))
593 (if (or (eq highlight-changes-mode 'active) no-property-change)
594 (hilit-chg-make-ov type beg end)))))))
595
596 (defun hilit-chg-set (value)
597 "Turn on Highlight Changes mode for this buffer."
598 (setq highlight-changes-mode value)
599 (remove-hook 'after-change-functions 'hilit-chg-set-face-on-change t)
600 (hilit-chg-make-list)
601 (if (eq highlight-changes-mode 'active)
602 (progn
603 (setq hilit-chg-string highlight-changes-active-string)
604 (or buffer-read-only
605 (hilit-chg-display-changes)))
606 ;; mode is passive
607 (setq hilit-chg-string highlight-changes-passive-string)
608 (or buffer-read-only
609 (hilit-chg-hide-changes)))
610 (force-mode-line-update)
611 (add-hook 'after-change-functions 'hilit-chg-set-face-on-change nil t))
612
613 (defun hilit-chg-clear ()
614 "Remove Highlight Changes mode for this buffer.
615 This removes all saved change information."
616 (if buffer-read-only
617 ;; We print the buffer name because this function could be called
618 ;; on many buffers from `global-highlight-changes'.
619 (message "Cannot remove highlighting from read-only mode buffer %s"
620 (buffer-name))
621 (remove-hook 'after-change-functions 'hilit-chg-set-face-on-change t)
622 (highlight-save-buffer-state
623 (hilit-chg-hide-changes)
624 (hilit-chg-map-changes
625 (lambda (prop start stop)
626 (remove-text-properties start stop '(hilit-chg nil)))))
627 (setq highlight-changes-mode nil)
628 (force-mode-line-update)
629 ;; If we type: C-u -1 M-x highlight-changes-mode
630 ;; we want to turn it off, but hilit-chg-post-command-hook
631 ;; runs and that turns it back on!
632 (remove-hook 'post-command-hook 'hilit-chg-post-command-hook)))
633
634 ;;;###autoload
635 (defun highlight-changes-mode (&optional arg)
636 "Toggle (or initially set) Highlight Changes mode.
637
638 Without an argument:
639 If Highlight Changes mode is not enabled, then enable it (in either active
640 or passive state as determined by the variable
641 `highlight-changes-initial-state'); otherwise, toggle between active
642 and passive state.
643
644 With an argument ARG:
645 If ARG is positive, set state to active;
646 If ARG is zero, set state to passive;
647 If ARG is negative, disable Highlight Changes mode completely.
648
649 Active state - means changes are shown in a distinctive face.
650 Passive state - means changes are kept and new ones recorded but are
651 not displayed in a different face.
652
653 Functions:
654 \\[highlight-changes-next-change] - move point to beginning of next change
655 \\[highlight-changes-previous-change] - move to beginning of previous change
656 \\[highlight-compare-with-file] - mark text as changed by comparing this
657 buffer with the contents of a file
658 \\[highlight-changes-remove-highlight] - remove the change face from the region
659 \\[highlight-changes-rotate-faces] - rotate different \"ages\" of changes \
660 through
661 various faces
662
663 Hook variables:
664 `highlight-changes-enable-hook' - when enabling Highlight Changes mode
665 `highlight-changes-toggle-hook' - when entering active or passive state
666 `highlight-changes-disable-hook' - when turning off Highlight Changes mode"
667 (interactive "P")
668 (if (or (display-color-p)
669 (and (fboundp 'x-display-grayscale-p) (x-display-grayscale-p)))
670 (let ((was-on highlight-changes-mode)
671 (new-highlight-changes-mode
672 (cond
673 ((null arg)
674 ;; no arg => toggle (or set to active initially)
675 (if highlight-changes-mode
676 (if (eq highlight-changes-mode 'active) 'passive 'active)
677 highlight-changes-initial-state))
678 ;; an argument is given
679 ((eq arg 'active)
680 'active)
681 ((eq arg 'passive)
682 'passive)
683 ((> (prefix-numeric-value arg) 0)
684 'active)
685 ((< (prefix-numeric-value arg) 0)
686 nil)
687 (t
688 'passive))))
689 (if new-highlight-changes-mode
690 ;; mode is turned on -- but may be passive
691 (progn
692 (hilit-chg-set new-highlight-changes-mode)
693 (or was-on
694 ;; run highlight-changes-enable-hook once
695 (run-hooks 'highlight-changes-enable-hook))
696 (run-hooks 'highlight-changes-toggle-hook))
697 ;; mode is turned off
698 (run-hooks 'highlight-changes-disable-hook)
699 (hilit-chg-clear)))
700 (message "Highlight Changes mode requires color or grayscale display")))
701
702 ;;;###autoload
703 (defun highlight-changes-next-change ()
704 "Move to the beginning of the next change, if in Highlight Changes mode."
705 (interactive)
706 (if highlight-changes-mode
707 (let ((start (point))
708 prop)
709 (setq prop (get-text-property (point) 'hilit-chg))
710 (if prop
711 ;; we are in a change
712 (setq start (next-single-property-change (point) 'hilit-chg)))
713 (if start
714 (setq start (next-single-property-change start 'hilit-chg)))
715 (if start
716 (goto-char start)
717 (message "no next change")))
718 (message "This buffer is not in Highlight Changes mode.")))
719
720
721 ;;;###autoload
722 (defun highlight-changes-previous-change ()
723 "Move to the beginning of the previous change, if in Highlight Changes mode."
724 (interactive)
725 (if highlight-changes-mode
726 (let ( (start (point)) (prop nil) )
727 (or (bobp)
728 (setq prop (get-text-property (1- (point)) 'hilit-chg)))
729 (if prop
730 ;; we are in a change
731 (setq start (previous-single-property-change (point) 'hilit-chg)))
732 (if start
733 (setq start (previous-single-property-change start 'hilit-chg)))
734 ;; special handling for the case where (point-min) is a change
735 (if start
736 (setq start (or (previous-single-property-change start 'hilit-chg)
737 (if (get-text-property (point-min) 'hilit-chg)
738 (point-min)))))
739 (if start
740 (goto-char start)
741 (message "no previous change")))
742 (message "This buffer is not in Highlight Changes mode.")))
743
744 ;; ========================================================================
745
746 (defun hilit-chg-make-list (&optional force)
747 "Construct `hilit-chg-list' and `highlight-changes-face-list'."
748 ;; Constructs highlight-changes-face-list if necessary,
749 ;; and hilit-chg-list always:
750 ;; Maybe this should always be called when rotating a face
751 ;; so we pick up any changes?
752 (if (or (null highlight-changes-face-list) ; Don't do it if it
753 force) ; already exists unless FORCE non-nil.
754 (let ((p highlight-changes-colors)
755 (n 1) name)
756 (setq highlight-changes-face-list nil)
757 (while p
758 (setq name (intern (format "highlight-changes-%d" n)))
759 (copy-face 'highlight-changes name)
760 (set-face-foreground name (car p))
761 (setq highlight-changes-face-list
762 (append highlight-changes-face-list (list name)))
763 (setq p (cdr p))
764 (setq n (1+ n)))))
765 (setq hilit-chg-list (list 'hilit-chg 'highlight-changes))
766 (let ((p highlight-changes-face-list)
767 (n 1)
768 last-category last-face)
769 (while p
770 (setq last-category (intern (format "change-%d" n)))
771 ;; (setq last-face (intern (format "highlight-changes-%d" n)))
772 (setq last-face (car p))
773 (setq hilit-chg-list
774 (append hilit-chg-list
775 (list last-category last-face)))
776 (setq p (cdr p))
777 (setq n (1+ n)))
778 (setq hilit-chg-list
779 (append hilit-chg-list
780 (list last-category last-face)))))
781
782 (defun hilit-chg-bump-change (prop start end)
783 "Increment (age) the Highlight Changes mode text property."
784 (let ( new-prop )
785 (if (eq prop 'hilit-chg-delete)
786 (setq new-prop (nth 2 hilit-chg-list))
787 (setq new-prop (nth 2 (member prop hilit-chg-list))))
788 (if prop
789 (put-text-property start end 'hilit-chg new-prop)
790 (message "%d-%d unknown property %s not changed" start end prop))))
791
792 ;;;###autoload
793 (defun highlight-changes-rotate-faces ()
794 "Rotate the faces used by Highlight Changes mode.
795
796 Current changes are displayed in the face described by the first element
797 of `highlight-changes-face-list', one level older changes are shown in
798 face described by the second element, and so on. Very old changes remain
799 shown in the last face in the list.
800
801 You can automatically rotate colors when the buffer is saved by adding
802 this function to `write-file-functions' as a buffer-local value. To do
803 this, eval the following in the buffer to be saved:
804
805 \(add-hook 'write-file-functions 'highlight-changes-rotate-faces nil t)"
806 (interactive)
807 ;; If not in active mode do nothing but don't complain because this
808 ;; may be bound to a hook.
809 (when (eq highlight-changes-mode 'active)
810 (let ((modified (buffer-modified-p))
811 (inhibit-modification-hooks t))
812 ;; The `modified' related code tries to combine two goals: (1) Record the
813 ;; rotation in `buffer-undo-list' and (2) avoid setting the modified flag
814 ;; of the current buffer due to the rotation. We do this by inserting (in
815 ;; `buffer-undo-list') entries restoring buffer-modified-p to nil before
816 ;; and after the entry for the rotation.
817 ;; FIXME: this is no good: we need to test the `modified' state at the
818 ;; time of the undo, not at the time of the "do", otherwise the undo
819 ;; may erroneously clear the modified flag. --Stef
820 ;; (unless modified
821 ;; ;; Install the "before" entry.
822 ;; (push '(apply restore-buffer-modified-p nil) buffer-undo-list))
823 (unwind-protect
824 (progn
825 ;; ensure hilit-chg-list is made and up to date
826 (hilit-chg-make-list)
827 ;; remove our existing overlays
828 (hilit-chg-hide-changes)
829 ;; for each change text property, increment it
830 (hilit-chg-map-changes 'hilit-chg-bump-change)
831 ;; and display them all if active
832 (if (eq highlight-changes-mode 'active)
833 (hilit-chg-display-changes)))
834 (unless modified
835 ;; Install the "after" entry. FIXME: See above.
836 ;; (push '(apply restore-buffer-modified-p nil) buffer-undo-list)
837
838 (restore-buffer-modified-p nil)))))
839 ;; This always returns nil so it is safe to use in write-file-functions
840 nil)
841
842 ;; ========================================================================
843 ;; Comparing buffers/files
844 ;; These use ediff to find the differences.
845
846 (defun highlight-markup-buffers
847 (buf-a file-a buf-b file-b &optional markup-a-only)
848 "Get differences between two buffers and set highlight changes.
849 Both buffers are done unless optional parameter MARKUP-A-ONLY
850 is non-nil."
851 (save-window-excursion
852 (let* (change-info
853 change-a change-b
854 a-start a-end len-a
855 b-start b-end len-b
856 (bufa-modified (buffer-modified-p buf-a))
857 (bufb-modified (buffer-modified-p buf-b))
858 (buf-a-read-only (with-current-buffer buf-a buffer-read-only))
859 (buf-b-read-only (with-current-buffer buf-b buffer-read-only))
860 temp-a temp-b)
861 (if (and file-a bufa-modified)
862 (if (y-or-n-p (format "Save buffer %s? " buf-a))
863 (with-current-buffer buf-a
864 (save-buffer)
865 (setq bufa-modified (buffer-modified-p buf-a)))
866 (setq file-a nil)))
867 (or file-a
868 (setq temp-a (setq file-a (ediff-make-temp-file buf-a nil))))
869
870 (if (and file-b bufb-modified)
871 (if (y-or-n-p (format "Save buffer %s? " buf-b))
872 (with-current-buffer buf-b
873 (save-buffer)
874 (setq bufb-modified (buffer-modified-p buf-b)))
875 (setq file-b nil)))
876 (or file-b
877 (setq temp-b (setq file-b (ediff-make-temp-file buf-b nil))))
878 (set-buffer buf-a)
879 (highlight-changes-mode 'active)
880 (or markup-a-only (with-current-buffer buf-b
881 (highlight-changes-mode 'active)))
882 (setq change-info (hilit-chg-get-diff-info buf-a file-a buf-b file-b))
883
884
885 (setq change-a (car change-info))
886 (setq change-b (car (cdr change-info)))
887
888 (hilit-chg-make-list)
889 (while change-a
890 (setq a-start (nth 0 (car change-a)))
891 (setq a-end (nth 1 (car change-a)))
892 (setq b-start (nth 0 (car change-b)))
893 (setq b-end (nth 1 (car change-b)))
894 (setq len-a (- a-end a-start))
895 (setq len-b (- b-end b-start))
896 (set-buffer buf-a)
897 (hilit-chg-set-face-on-change a-start a-end len-b buf-a-read-only)
898 (or markup-a-only
899 (with-current-buffer buf-b
900 (hilit-chg-set-face-on-change b-start b-end len-a
901 buf-b-read-only)
902 ))
903 (setq change-a (cdr change-a))
904 (setq change-b (cdr change-b)))
905 (or bufa-modified
906 (with-current-buffer buf-a (set-buffer-modified-p nil)))
907 (or bufb-modified
908 (with-current-buffer buf-b (set-buffer-modified-p nil)))
909 (if temp-a
910 (delete-file temp-a))
911 (if temp-b
912 (delete-file temp-b)))
913 ))
914
915 ;;;###autoload
916 (defun highlight-compare-buffers (buf-a buf-b)
917 "Compare two buffers and highlight the differences.
918
919 The default is the current buffer and the one in the next window.
920
921 If either buffer is modified and is visiting a file, you are prompted
922 to save the file.
923
924 Unless the buffer is unmodified and visiting a file, the buffer is
925 written to a temporary file for comparison.
926
927 If a buffer is read-only, differences will be highlighted but no property
928 changes are made, so \\[highlight-changes-next-change] and
929 \\[highlight-changes-previous-change] will not work."
930 (interactive
931 (list
932 (get-buffer (read-buffer "buffer-a " (current-buffer) t))
933 (get-buffer
934 (read-buffer "buffer-b "
935 (window-buffer (next-window (selected-window))) t))))
936 (let ((file-a (buffer-file-name buf-a))
937 (file-b (buffer-file-name buf-b)))
938 (highlight-markup-buffers buf-a file-a buf-b file-b)
939 ))
940
941 ;;;###autoload
942 (defun highlight-compare-with-file (file-b)
943 "Compare this buffer with a file, and highlight differences.
944
945 If the buffer has a backup filename, it is used as the default when
946 this function is called interactively.
947
948 If the current buffer is visiting the file being compared against, it
949 also will have its differences highlighted. Otherwise, the file is
950 read in temporarily but the buffer is deleted.
951
952 If the buffer is read-only, differences will be highlighted but no property
953 changes are made, so \\[highlight-changes-next-change] and
954 \\[highlight-changes-previous-change] will not work."
955 (interactive (list
956 (read-file-name
957 "File to compare with? " ;; prompt
958 "" ;; directory
959 nil ;; default
960 'yes ;; must exist
961 (let ((f (buffer-file-name (current-buffer))))
962 (if f
963 (progn
964 (setq f (make-backup-file-name f))
965 (or (file-exists-p f)
966 (setq f nil)))
967 )
968 f))))
969 (let* ((buf-a (current-buffer))
970 (file-a (buffer-file-name))
971 (existing-buf (get-file-buffer file-b))
972 (buf-b (or existing-buf
973 (find-file-noselect file-b)))
974 (buf-b-read-only (with-current-buffer buf-b buffer-read-only)))
975 (highlight-markup-buffers buf-a file-a buf-b file-b (not existing-buf))
976 (unless existing-buf
977 (kill-buffer buf-b))
978 ))
979
980
981 (defun hilit-chg-get-diff-info (buf-a file-a buf-b file-b)
982 (let ((e nil) x y) ;; e is set by function hilit-chg-get-diff-list-hk
983 (ediff-setup buf-a file-a buf-b file-b
984 nil nil ; buf-c file-C
985 'hilit-chg-get-diff-list-hk
986 (list (cons 'ediff-job-name 'something))
987 )
988 (ediff-with-current-buffer e (ediff-really-quit nil))
989 (list x y)))
990
991
992 (defun hilit-chg-get-diff-list-hk ()
993 ;; x and y are dynamically bound by hilit-chg-get-diff-info
994 ;; which calls this function as a hook
995 (defvar x) ;; placate the byte-compiler
996 (defvar y)
997 (setq e (current-buffer))
998 (let ((n 0) extent p va vb a b)
999 (setq x nil y nil) ;; x and y are bound by hilit-chg-get-diff-info
1000 (while (< n ediff-number-of-differences)
1001 (ediff-make-fine-diffs n)
1002 (setq va (ediff-get-fine-diff-vector n 'A))
1003 ;; va is a vector if there are fine differences
1004 (if va
1005 (setq a (append va nil))
1006 ;; if not, get the unrefined difference
1007 (setq va (ediff-get-difference n 'A))
1008 (setq a (list (elt va 0))))
1009 ;; a list a list
1010 (setq p a)
1011 (while p
1012 (setq extent (list (overlay-start (car p))
1013 (overlay-end (car p))))
1014 (setq p (cdr p))
1015 (setq x (append x (list extent) )));; while p
1016 ;;
1017 (setq vb (ediff-get-fine-diff-vector n 'B))
1018 ;; vb is a vector
1019 (if vb
1020 (setq b (append vb nil))
1021 ;; if not, get the unrefined difference
1022 (setq vb (ediff-get-difference n 'B))
1023 (setq b (list (elt vb 0))))
1024 ;; b list a list
1025 (setq p b)
1026 (while p
1027 (setq extent (list (overlay-start (car p))
1028 (overlay-end (car p))))
1029 (setq p (cdr p))
1030 (setq y (append y (list extent) )))
1031 (setq n (1+ n)));; while
1032 ;; ediff-quit doesn't work here.
1033 ;; No point in returning a value, since this is a hook function.
1034 ))
1035
1036 ;; ======================= automatic stuff ==============
1037
1038 ;; Global Highlight Changes mode is modeled after Global Font-lock mode.
1039 ;; Three hooks are used to gain control. When Global Changes Mode is
1040 ;; enabled, `find-file-hook' and `change-major-mode-hook' are set.
1041 ;; `find-file-hook' is called when visiting a file, the new mode is
1042 ;; known at this time.
1043 ;; `change-major-mode-hook' is called when a buffer is changing mode.
1044 ;; This could be because of finding a file in which case
1045 ;; `find-file-hook' has already been called and has done its work.
1046 ;; However, it also catches the case where a new mode is being set by
1047 ;; the user. However, it is called from `kill-all-variables' and at
1048 ;; this time the mode is the old mode, which is not what we want.
1049 ;; So, our function temporarily sets `post-command-hook' which will
1050 ;; be called after the buffer has been completely set up (with the new
1051 ;; mode). It then removes the `post-command-hook'.
1052 ;; One other wrinkle - every M-x command runs the `change-major-mode-hook'
1053 ;; so we ignore this by examining the buffer name.
1054
1055
1056 (defun hilit-chg-major-mode-hook ()
1057 (add-hook 'post-command-hook 'hilit-chg-post-command-hook))
1058
1059 (defun hilit-chg-post-command-hook ()
1060 ;; This is called after changing a major mode, but also after each
1061 ;; M-x command, in which case the current buffer is a minibuffer.
1062 ;; In that case, do not act on it here, but don't turn it off
1063 ;; either, we will get called here again soon-after.
1064 ;; Also, don't enable it for other special buffers.
1065 (if (string-match "^[ *]" (buffer-name))
1066 nil ;; (message "ignoring this post-command-hook")
1067 (remove-hook 'post-command-hook 'hilit-chg-post-command-hook)
1068 ;; The following check isn't necessary, since
1069 ;; hilit-chg-turn-on-maybe makes this check too.
1070 (or highlight-changes-mode ;; don't turn it on if it already is
1071 (hilit-chg-turn-on-maybe highlight-changes-global-initial-state))))
1072
1073 (defun hilit-chg-check-global ()
1074 ;; This is called from the find file hook.
1075 (hilit-chg-turn-on-maybe highlight-changes-global-initial-state))
1076
1077
1078 ;;;###autoload
1079 (defun global-highlight-changes (&optional arg)
1080 "Turn on or off global Highlight Changes mode.
1081
1082 When called interactively:
1083 - if no prefix, toggle global Highlight Changes mode on or off
1084 - if called with a positive prefix (or just C-u) turn it on in active mode
1085 - if called with a zero prefix turn it on in passive mode
1086 - if called with a negative prefix turn it off
1087
1088 When called from a program:
1089 - if ARG is nil or omitted, turn it off
1090 - if ARG is `active', turn it on in active mode
1091 - if ARG is `passive', turn it on in passive mode
1092 - otherwise just turn it on
1093
1094 When global Highlight Changes mode is enabled, Highlight Changes mode is turned
1095 on for future \"suitable\" buffers (and for \"suitable\" existing buffers if
1096 variable `highlight-changes-global-changes-existing-buffers' is non-nil).
1097 \"Suitability\" is determined by variable `highlight-changes-global-modes'."
1098
1099 (interactive
1100 (list
1101 (cond
1102 ((null current-prefix-arg)
1103 ;; no arg => toggle it on/off
1104 (setq global-highlight-changes (not global-highlight-changes)))
1105 ;; positive interactive arg - turn it on as active
1106 ((> (prefix-numeric-value current-prefix-arg) 0)
1107 (setq global-highlight-changes t)
1108 'active)
1109 ;; zero interactive arg - turn it on as passive
1110 ((= (prefix-numeric-value current-prefix-arg) 0)
1111 (setq global-highlight-changes t)
1112 'passive)
1113 ;; negative interactive arg - turn it off
1114 (t
1115 (setq global-highlight-changes nil)
1116 nil))))
1117
1118 (if arg
1119 (progn
1120 (if (eq arg 'active)
1121 (setq highlight-changes-global-initial-state 'active)
1122 (if (eq arg 'passive)
1123 (setq highlight-changes-global-initial-state 'passive)))
1124 (setq global-highlight-changes t)
1125 (message "Turning ON Global Highlight Changes mode in %s state"
1126 highlight-changes-global-initial-state)
1127 ;; FIXME: Not sure what this was intended to do. --Stef
1128 ;; (add-hook 'hilit-chg-major-mode-hook 'hilit-chg-major-mode-hook)
1129 (add-hook 'find-file-hook 'hilit-chg-check-global)
1130 (if highlight-changes-global-changes-existing-buffers
1131 (hilit-chg-update-all-buffers
1132 highlight-changes-global-initial-state)))
1133
1134 (message "Turning OFF global Highlight Changes mode")
1135 ;; FIXME: Not sure what this was intended to do. --Stef
1136 ;; (remove-hook 'hilit-chg-major-mode-hook 'hilit-chg-major-mode-hook)
1137 (remove-hook 'post-command-hook 'hilit-chg-post-command-hook)
1138 (remove-hook 'find-file-hook 'hilit-chg-check-global)
1139 (if highlight-changes-global-changes-existing-buffers
1140 (hilit-chg-update-all-buffers nil))))
1141
1142
1143 (defun hilit-chg-turn-on-maybe (value)
1144 "Turn on Highlight Changes mode if it is appropriate for this buffer.
1145
1146 A buffer is appropriate for Highlight Changes mode if all these are true:
1147 - the buffer is not a special buffer (one whose name begins with
1148 `*' or ` '),
1149 - the buffer's mode is suitable as per variable
1150 `highlight-changes-global-modes',
1151 - Highlight Changes mode is not already on for this buffer.
1152
1153 This function is called from `hilit-chg-update-all-buffers' or
1154 from `global-highlight-changes' when turning on global Highlight Changes mode."
1155 (or highlight-changes-mode ; do nothing if already on
1156 (if
1157 (cond
1158 ((null highlight-changes-global-modes)
1159 nil)
1160 ((functionp highlight-changes-global-modes)
1161 (funcall highlight-changes-global-modes))
1162 ((listp highlight-changes-global-modes)
1163 (if (eq (car-safe highlight-changes-global-modes) 'not)
1164 (not (memq major-mode (cdr highlight-changes-global-modes)))
1165 (memq major-mode highlight-changes-global-modes)))
1166 (t
1167 (and
1168 (not (string-match "^[ *]" (buffer-name)))
1169 (buffer-file-name))))
1170 (progn
1171 (hilit-chg-set value)
1172 (run-hooks 'highlight-changes-enable-hook)))))
1173
1174
1175 (defun hilit-chg-turn-off-maybe ()
1176 (if highlight-changes-mode
1177 (progn
1178 (run-hooks 'highlight-changes-disable-hook)
1179 (hilit-chg-clear))))
1180
1181
1182 (defun hilit-chg-update-all-buffers (value)
1183 (mapc
1184 (function (lambda (buffer)
1185 (with-current-buffer buffer
1186 (if value
1187 (hilit-chg-turn-on-maybe value)
1188 (hilit-chg-turn-off-maybe))
1189 )))
1190 (buffer-list))
1191 nil)
1192
1193 ;;;; Desktop support.
1194
1195 ;; Called by `desktop-create-buffer' to restore `highlight-changes-mode'.
1196 (defun hilit-chg-desktop-restore (desktop-buffer-locals)
1197 (highlight-changes-mode
1198 (or (cdr (assq 'highlight-changes-mode desktop-buffer-locals)) 1)))
1199
1200 (add-to-list 'desktop-minor-mode-handlers
1201 '(highlight-changes-mode . hilit-chg-desktop-restore))
1202
1203 (add-to-list 'desktop-locals-to-save 'highlight-changes-mode)
1204
1205 ;; ===================== debug ==================
1206 ;; For debug & test use:
1207 ;;
1208 ;; (defun hilit-chg-debug-show (&optional beg end)
1209 ;; (interactive)
1210 ;; (message "--- hilit-chg-debug-show ---")
1211 ;; (hilit-chg-map-changes '(lambda (prop start end)
1212 ;; (message "%d-%d: %s" start end prop)
1213 ;; )
1214 ;; beg end
1215 ;; ))
1216 ;;
1217 ;; ================== end of debug ===============
1218
1219 (provide 'hilit-chg)
1220
1221 ;; arch-tag: de00301d-5bad-44da-aa82-e0e010b0c463
1222 ;;; hilit-chg.el ends here