new version
[emacs.git] / lisp / ediff-init.el
blobdb06f27771bb0878750e57449195d09a8a51fec8
1 ;;; ediff-init.el --- Macros, variables, and defsubsts used by Ediff
3 ;; Copyright (C) 1994, 1995, 1996, 1997 Free Software Foundation, Inc.
5 ;; Author: Michael Kifer <kifer@cs.sunysb.edu>
7 ;; This file is part of GNU Emacs.
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation; either version 2, or (at your option)
12 ;; any later version.
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 ;; GNU General Public License for more details.
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs; see the file COPYING. If not, write to the
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 ;; Boston, MA 02111-1307, USA.
24 ;;; Code:
26 ;; Start compiler pacifier
27 (defvar ediff-metajob-name)
28 (defvar ediff-meta-buffer)
29 (defvar pm-color-alist)
30 (defvar ediff-grab-mouse)
31 (defvar ediff-mouse-pixel-position)
32 (defvar ediff-mouse-pixel-threshold)
33 (defvar ediff-whitespace)
34 (defvar ediff-multiframe)
36 (and noninteractive
37 (eval-when-compile
38 (load "ange-ftp" 'noerror)))
39 ;; end pacifier
41 ;; Is it XEmacs?
42 (defconst ediff-xemacs-p (string-match "XEmacs" emacs-version))
43 ;; Is it Emacs?
44 (defconst ediff-emacs-p (not ediff-xemacs-p))
46 (defvar ediff-force-faces nil
47 "If t, Ediff will think that it is running on a display that supports faces.
48 This is provided as a temporary relief for users of face-capable displays
49 that Ediff doesn't know about.")
51 ;; Are we running as a window application or on a TTY?
52 (defsubst ediff-device-type ()
53 (if ediff-emacs-p
54 window-system
55 (device-type (selected-device))))
57 ;; in XEmacs: device-type is tty on tty and stream in batch.
58 (defun ediff-window-display-p ()
59 (and (ediff-device-type) (not (memq (ediff-device-type) '(tty pc stream)))))
61 ;; test if supports faces
62 ;; ediff-force-faces is for those devices that support faces, but we don't know
63 ;; this yet
64 (defun ediff-has-face-support-p ()
65 (cond ((ediff-window-display-p))
66 (ediff-force-faces)
67 (ediff-emacs-p (memq (ediff-device-type) '(pc)))
68 (ediff-xemacs-p (memq (ediff-device-type) '(tty pc)))))
71 ;; Defines SYMBOL as an advertised local variable.
72 ;; Performs a defvar, then executes `make-variable-buffer-local' on
73 ;; the variable. Also sets the `permanent-local' property,
74 ;; so that `kill-all-local-variables' (called by major-mode setting
75 ;; commands) won't destroy Ediff control variables.
76 ;;
77 ;; Plagiarised from `emerge-defvar-local' for XEmacs.
78 (defmacro ediff-defvar-local (var value doc)
79 (` (progn
80 (defvar (, var) (, value) (, doc))
81 (make-variable-buffer-local '(, var))
82 (put '(, var) 'permanent-local t))))
86 ;; Variables that control each Ediff session---local to the control buffer.
88 ;; Mode variables
89 ;; The buffer in which the A variant is stored.
90 (ediff-defvar-local ediff-buffer-A nil "")
91 ;; The buffer in which the B variant is stored.
92 (ediff-defvar-local ediff-buffer-B nil "")
93 ;; The buffer in which the C variant is stored.
94 (ediff-defvar-local ediff-buffer-C nil "")
95 ;; Ancestor buffer
96 (ediff-defvar-local ediff-ancestor-buffer nil "")
97 ;; The Ediff control buffer
98 (ediff-defvar-local ediff-control-buffer nil "")
101 ;; Association between buff-type and ediff-buffer-*
102 (defconst ediff-buffer-alist
103 '((?A . ediff-buffer-A)
104 (?B . ediff-buffer-B)
105 (?C . ediff-buffer-C)))
107 ;;; Macros
108 (defmacro ediff-odd-p (arg)
109 (` (eq (logand (, arg) 1) 1)))
111 (defmacro ediff-buffer-live-p (buf)
112 (` (and (, buf) (get-buffer (, buf)) (buffer-name (get-buffer (, buf))))))
114 (defmacro ediff-get-buffer (arg)
115 (` (cond ((eq (, arg) 'A) ediff-buffer-A)
116 ((eq (, arg) 'B) ediff-buffer-B)
117 ((eq (, arg) 'C) ediff-buffer-C)
118 ((eq (, arg) 'Ancestor) ediff-ancestor-buffer)
122 (defmacro ediff-get-value-according-to-buffer-type (buf-type list)
123 (` (cond ((eq (, buf-type) 'A) (nth 0 (, list)))
124 ((eq (, buf-type) 'B) (nth 1 (, list)))
125 ((eq (, buf-type) 'C) (nth 2 (, list))))))
127 (defmacro ediff-char-to-buftype (arg)
128 (` (cond ((memq (, arg) '(?a ?A)) 'A)
129 ((memq (, arg) '(?b ?B)) 'B)
130 ((memq (, arg) '(?c ?C)) 'C)
135 ;; A-list is supposed to be of the form (A . symb) (B . symb)...)
136 ;; where the first part of any association is a buffer type and the second is
137 ;; an appropriate symbol. Given buffer-type, this function returns the
138 ;; symbol. This is used to avoid using `intern'
139 (defsubst ediff-get-symbol-from-alist (buf-type alist)
140 (cdr (assoc buf-type alist)))
142 (defconst ediff-difference-vector-alist
143 '((A . ediff-difference-vector-A)
144 (B . ediff-difference-vector-B)
145 (C . ediff-difference-vector-C)
146 (Ancestor . ediff-difference-vector-Ancestor)))
148 (defmacro ediff-get-difference (n buf-type)
149 (` (aref
150 (symbol-value
151 (ediff-get-symbol-from-alist
152 (, buf-type) ediff-difference-vector-alist))
153 (, n))))
155 ;; Tell if it has been previously determined that the region has
156 ;; no diffs other than the white space and newlines
157 ;; The argument, N, is the diff region number used by Ediff to index the
158 ;; diff vector. It is 1 less than the number seen by the user.
159 ;; Returns:
160 ;; t if the diffs are whitespace in all buffers
161 ;; 'A (in 3-buf comparison only) if there are only whitespace
162 ;; diffs in bufs B and C
163 ;; 'B (in 3-buf comparison only) if there are only whitespace
164 ;; diffs in bufs A and C
165 ;; 'C (in 3-buf comparison only) if there are only whitespace
166 ;; diffs in bufs A and B
168 ;; A difference vector has the form:
169 ;; [diff diff diff ...]
170 ;; where each diff has the form:
171 ;; [overlay fine-diff-vector no-fine-diffs-flag]
172 ;; fine-diff-vector is a vector [fine-diff fine-diff fine-diff ...]
173 (defmacro ediff-no-fine-diffs-p (n)
174 (` (aref (ediff-get-difference (, n) 'A) 2)))
176 (defmacro ediff-get-diff-overlay-from-diff-record (diff-rec)
177 (` (aref (, diff-rec) 0)))
179 (defmacro ediff-get-diff-overlay (n buf-type)
180 (` (ediff-get-diff-overlay-from-diff-record
181 (ediff-get-difference (, n) (, buf-type)))))
183 (defmacro ediff-get-fine-diff-vector-from-diff-record (diff-rec)
184 (` (aref (, diff-rec) 1)))
186 (defmacro ediff-set-fine-diff-vector (n buf-type fine-vec)
187 (` (aset (ediff-get-difference (, n) (, buf-type)) 1 (, fine-vec))))
189 (defmacro ediff-get-state-of-diff (n buf-type)
190 (` (if (ediff-buffer-live-p ediff-buffer-C)
191 (aref (ediff-get-difference (, n) (, buf-type)) 3))))
192 (defmacro ediff-set-state-of-diff (n buf-type val)
193 (` (aset (ediff-get-difference (, n) (, buf-type)) 3 (, val))))
194 (defmacro ediff-get-state-of-merge (n)
195 (` (if ediff-state-of-merge
196 (aref (aref ediff-state-of-merge (, n)) 0))))
197 (defmacro ediff-get-state-of-ancestor (n)
198 (` (if ediff-state-of-merge
199 (aref (aref ediff-state-of-merge (, n)) 1))))
200 (defmacro ediff-set-state-of-merge (n val)
201 (` (if ediff-state-of-merge
202 (aset (aref ediff-state-of-merge (, n)) 0 (, val)))))
204 ;; if flag is t, puts a mark on diff region saying that
205 ;; the differences are in white space only. If flag is nil,
206 ;; the region is marked as essential (i.e., differences are
207 ;; not just in the white space and newlines.)
208 (defmacro ediff-mark-diff-as-space-only (n flag)
209 (` (aset (ediff-get-difference (, n) 'A) 2 (, flag))))
211 (defmacro ediff-get-fine-diff-vector (n buf-type)
212 (` (ediff-get-fine-diff-vector-from-diff-record
213 (ediff-get-difference (, n) (, buf-type)))))
215 ;; Macro to switch to BUFFER, evaluate BODY, returns to original buffer.
216 ;; Doesn't save the point and mark.
217 ;; This is `with-current-buffer' with the added test for live buffers."
218 (defmacro ediff-with-current-buffer (buffer &rest body)
219 (` (if (ediff-buffer-live-p (, buffer))
220 (save-current-buffer
221 (set-buffer (, buffer))
222 (,@ body))
223 (or (eq this-command 'ediff-quit)
224 (error ediff-KILLED-VITAL-BUFFER))
228 (defsubst ediff-multiframe-setup-p ()
229 (and (ediff-window-display-p) ediff-multiframe))
231 (defmacro ediff-narrow-control-frame-p ()
232 (` (and (ediff-multiframe-setup-p)
233 (equal ediff-help-message ediff-brief-message-string))))
235 (defmacro ediff-3way-comparison-job ()
236 (` (memq
237 ediff-job-name
238 '(ediff-files3 ediff-buffers3))))
239 (ediff-defvar-local ediff-3way-comparison-job nil "")
241 (defmacro ediff-merge-job ()
242 (` (memq
243 ediff-job-name
244 '(ediff-merge-files
245 ediff-merge-buffers
246 ediff-merge-files-with-ancestor
247 ediff-merge-buffers-with-ancestor
248 ediff-merge-revisions
249 ediff-merge-revisions-with-ancestor))))
250 (ediff-defvar-local ediff-merge-job nil "")
252 (defmacro ediff-merge-with-ancestor-job ()
253 (` (memq
254 ediff-job-name
255 '(ediff-merge-files-with-ancestor
256 ediff-merge-buffers-with-ancestor
257 ediff-merge-revisions-with-ancestor))))
258 (ediff-defvar-local ediff-merge-with-ancestor-job nil "")
260 (defmacro ediff-3way-job ()
261 (` (or ediff-3way-comparison-job ediff-merge-job)))
262 (ediff-defvar-local ediff-3way-job nil "")
264 ;; A diff3 job is like a 3way job, but ediff-merge doesn't require the use
265 ;; of diff3.
266 (defmacro ediff-diff3-job ()
267 (` (or ediff-3way-comparison-job
268 ediff-merge-with-ancestor-job)))
269 (ediff-defvar-local ediff-diff3-job nil "")
271 (defmacro ediff-windows-job ()
272 (` (memq ediff-job-name '(ediff-windows-wordwise ediff-windows-linewise))))
273 (ediff-defvar-local ediff-windows-job nil "")
275 (defmacro ediff-word-mode-job ()
276 (` (memq ediff-job-name '(ediff-windows-wordwise ediff-regions-wordwise))))
277 (ediff-defvar-local ediff-word-mode-job nil "")
279 (defmacro ediff-narrow-job ()
280 (` (memq ediff-job-name '(ediff-windows-wordwise
281 ediff-regions-wordwise
282 ediff-windows-linewise
283 ediff-regions-linewise))))
284 (ediff-defvar-local ediff-narrow-job nil "")
286 ;; Note: ediff-merge-directory-revisions-with-ancestor is not treated as an
287 ;; ancestor metajob, since it behaves differently.
288 (defsubst ediff-ancestor-metajob (&optional metajob)
289 (memq (or metajob ediff-metajob-name)
290 '(ediff-merge-directories-with-ancestor
291 ediff-merge-filegroups-with-ancestor)))
292 (defsubst ediff-revision-metajob (&optional metajob)
293 (memq (or metajob ediff-metajob-name)
294 '(ediff-directory-revisions
295 ediff-merge-directory-revisions
296 ediff-merge-directory-revisions-with-ancestor)))
297 (defsubst ediff-patch-metajob (&optional metajob)
298 (memq (or metajob ediff-metajob-name)
299 '(ediff-multifile-patch)))
300 ;; metajob involving only one group of files, such as multipatch or directory
301 ;; revision
302 (defsubst ediff-one-filegroup-metajob (&optional metajob)
303 (or (ediff-revision-metajob metajob)
304 (ediff-patch-metajob metajob)
305 ;; add more here
307 (defsubst ediff-collect-diffs-metajob (&optional metajob)
308 (memq (or metajob ediff-metajob-name)
309 '(ediff-directories
310 ediff-directory-revisions
311 ediff-merge-directories
312 ediff-merge-directories-with-ancestor
313 ediff-merge-directory-revisions
314 ediff-merge-directory-revisions-with-ancestor
315 ;; add more here
317 (defsubst ediff-merge-metajob (&optional metajob)
318 (memq (or metajob ediff-metajob-name)
319 '(ediff-merge-directories
320 ediff-merge-directories-with-ancestor
321 ediff-merge-directory-revisions
322 ediff-merge-directory-revisions-with-ancestor
323 ediff-merge-filegroups-with-ancestor
324 ;; add more here
327 (defsubst ediff-metajob3 (&optional metajob)
328 (memq (or metajob ediff-metajob-name)
329 '(ediff-merge-directories-with-ancestor
330 ediff-merge-filegroups-with-ancestor
331 ediff-directories3
332 ediff-filegroups3)))
333 (defsubst ediff-comparison-metajob3 (&optional metajob)
334 (memq (or metajob ediff-metajob-name)
335 '(ediff-directories3 ediff-filegroups3)))
337 ;; with no argument, checks if we are in ediff-control-buffer
338 ;; with argument, checks if we are in ediff-meta-buffer
339 (defun ediff-in-control-buffer-p (&optional meta-buf-p)
340 (and (boundp 'ediff-control-buffer)
341 (eq (if meta-buf-p ediff-meta-buffer ediff-control-buffer)
342 (current-buffer))))
344 (defsubst ediff-barf-if-not-control-buffer (&optional meta-buf-p)
345 (or (ediff-in-control-buffer-p meta-buf-p)
346 (error "%S: This command runs in Ediff Control Buffer only!"
347 this-command)))
349 (defgroup ediff-highlighting nil
350 "Hilighting of difference regions in Ediff"
351 :prefix "ediff-"
352 :group 'ediff)
354 (defgroup ediff-merge nil
355 "Merging utilities"
356 :prefix "ediff-"
357 :group 'ediff)
359 (defgroup ediff-hook nil
360 "Hooks called by Ediff"
361 :prefix "ediff-"
362 :group 'ediff)
364 ;; Hook variables
366 (defcustom ediff-before-setup-windows-hook nil
367 "*Hooks to run before Ediff sets its window configuration.
368 This can be used to save the previous window config, which can be restored
369 on ediff-quit or ediff-suspend."
370 :type 'hook
371 :group 'ediff-hook)
372 (defcustom ediff-after-setup-windows-hook nil
373 "*Hooks to run after Ediff sets its window configuration.
374 This can be used to set up control window or icon in a desired place."
375 :type 'hook
376 :group 'ediff-hook)
377 (defcustom ediff-before-setup-control-frame-hook nil
378 "*Hooks run before setting up the frame to display Ediff Control Panel.
379 Can be used to change control frame parameters to position it where it
380 is desirable."
381 :type 'hook
382 :group 'ediff-hook)
383 (defcustom ediff-after-setup-control-frame-hook nil
384 "*Hooks run after setting up the frame to display Ediff Control Panel.
385 Can be used to move the frame where it is desired."
386 :type 'hook
387 :group 'ediff-hook)
388 (defcustom ediff-startup-hook nil
389 "*Hooks to run in the control buffer after Ediff has been set up."
390 :type 'hook
391 :group 'ediff-hook)
392 (defcustom ediff-select-hook nil
393 "*Hooks to run after a difference has been selected."
394 :type 'hook
395 :group 'ediff-hook)
396 (defcustom ediff-unselect-hook nil
397 "*Hooks to run after a difference has been unselected."
398 :type 'hook
399 :group 'ediff-hook)
400 (defcustom ediff-prepare-buffer-hook nil
401 "*Hooks called after buffers A, B, and C are set up."
402 :type 'hook
403 :group 'ediff-hook)
404 (defcustom ediff-load-hook nil
405 "*Hook run after Ediff is loaded. Can be used to change defaults."
406 :type 'hook
407 :group 'ediff-hook)
409 (defcustom ediff-mode-hook nil
410 "*Hook run just after ediff-mode is set up in the control buffer.
411 This is done before any windows or frames are created. One can use it to
412 set local variables that determine how the display looks like."
413 :type 'hook
414 :group 'ediff-hook)
415 (defcustom ediff-keymap-setup-hook nil
416 "*Hook run just after the default bindings in Ediff keymap are set up."
417 :type 'hook
418 :group 'ediff-hook)
420 (defcustom ediff-display-help-hook nil
421 "*Hooks run after preparing the help message."
422 :type 'hook
423 :group 'ediff-hook)
425 (defcustom ediff-suspend-hook (list 'ediff-default-suspend-function)
426 "*Hooks to run in the Ediff control buffer when Ediff is suspended."
427 :type 'hook
428 :group 'ediff-hook)
429 (defcustom ediff-quit-hook (list 'ediff-cleanup-mess)
430 "*Hooks to run in the Ediff control buffer after finishing Ediff."
431 :type 'hook
432 :group 'ediff-hook)
433 (defcustom ediff-cleanup-hook nil
434 "*Hooks to run on exiting Ediff but before killing the control buffer.
435 This is a place to do various cleanups, such as deleting the variant buffers.
436 Ediff provides a function, `ediff-janitor', as one such possible hook."
437 :type 'hook
438 :group 'ediff-hook)
440 ;; Error messages
441 (defconst ediff-KILLED-VITAL-BUFFER
442 "You have killed a vital Ediff buffer---you must leave Ediff now!")
443 (defconst ediff-NO-DIFFERENCES
444 "Sorry, comparison of identical variants is not what I am made for...")
445 (defconst ediff-BAD-DIFF-NUMBER
446 ;; %S stands for this-command, %d - diff number, %d - max diff
447 "%S: Bad diff region number, %d. Valid numbers are 1 to %d")
448 (defconst ediff-BAD-INFO (format "
449 *** The Info file for Ediff, a part of the standard distribution
450 *** of %sEmacs, does not seem to be properly installed.
451 ***
452 *** Please contact your system administrator. "
453 (if ediff-xemacs-p "X" "")))
455 ;; Selective browsing
457 (ediff-defvar-local ediff-skip-diff-region-function 'ediff-show-all-diffs
458 "Function that determines the next/previous diff region to show.
459 Should return t for regions to be ignored and nil otherwise.
460 This function gets a region number as an argument. The region number
461 is the one used internally by Ediff. It is 1 less than the number seen
462 by the user.")
464 (ediff-defvar-local ediff-hide-regexp-matches-function
465 'ediff-hide-regexp-matches
466 "Function to use in determining which regions to hide.
467 See the documentation string of `ediff-hide-regexp-matches' for details.")
468 (ediff-defvar-local ediff-focus-on-regexp-matches-function
469 'ediff-focus-on-regexp-matches
470 "Function to use in determining which regions to focus on.
471 See the documentation string of `ediff-focus-on-regexp-matches' for details.")
473 ;; Regexp that determines buf A regions to focus on when skipping to diff
474 (ediff-defvar-local ediff-regexp-focus-A "" "")
475 ;; Regexp that determines buf B regions to focus on when skipping to diff
476 (ediff-defvar-local ediff-regexp-focus-B "" "")
477 ;; Regexp that determines buf C regions to focus on when skipping to diff
478 (ediff-defvar-local ediff-regexp-focus-C "" "")
479 ;; connective that determines whether to focus regions that match both or
480 ;; one of the regexps
481 (ediff-defvar-local ediff-focus-regexp-connective 'and "")
483 ;; Regexp that determines buf A regions to ignore when skipping to diff
484 (ediff-defvar-local ediff-regexp-hide-A "" "")
485 ;; Regexp that determines buf B regions to ignore when skipping to diff
486 (ediff-defvar-local ediff-regexp-hide-B "" "")
487 ;; Regexp that determines buf C regions to ignore when skipping to diff
488 (ediff-defvar-local ediff-regexp-hide-C "" "")
489 ;; connective that determines whether to hide regions that match both or
490 ;; one of the regexps
491 (ediff-defvar-local ediff-hide-regexp-connective 'and "")
494 ;;; Copying difference regions between buffers.
496 ;; A list of killed diffs.
497 ;; A diff is saved here if it is replaced by a diff
498 ;; from another buffer. This alist has the form:
499 ;; \((num (buff-object . diff) (buff-object . diff) (buff-object . diff)) ...),
500 ;; where some buffer-objects may be missing.
501 (ediff-defvar-local ediff-killed-diffs-alist nil "")
504 ;; Highlighting
505 (defcustom ediff-before-flag-bol (if ediff-xemacs-p (make-glyph "->>") "->>")
506 "*Flag placed before a highlighted block of differences, if block starts at beginning of a line."
507 :type 'string
508 :tag "Region before-flag at beginning of line"
509 :group 'ediff)
511 (defcustom ediff-after-flag-eol (if ediff-xemacs-p (make-glyph "<<-") "<<-")
512 "*Flag placed after a highlighted block of differences, if block ends at end of a line."
513 :type 'string
514 :tag "Region after-flag at end of line"
515 :group 'ediff)
517 (defcustom ediff-before-flag-mol (if ediff-xemacs-p (make-glyph "->>") "->>")
518 "*Flag placed before a highlighted block of differences, if block starts in mid-line."
519 :type 'string
520 :tag "Region before-flag in the middle of line"
521 :group 'ediff)
522 (defcustom ediff-after-flag-mol (if ediff-xemacs-p (make-glyph "<<-") "<<-")
523 "*Flag placed after a highlighted block of differences, if block ends in mid-line."
524 :type 'string
525 :tag "Region after-flag in the middle of line"
526 :group 'ediff)
529 (ediff-defvar-local ediff-use-faces t
530 "If t, differences are highlighted using faces, if device supports faces.
531 If nil, differences are highlighted using ASCII flags, ediff-before-flag
532 and ediff-after-flag. On a non-window system, differences are always
533 highlighted using ASCII flags.
534 This variable can be set either in .emacs or toggled interactively.
535 Use `setq-default' if setting it in .emacs")
537 ;; this indicates that diff regions are word-size, so fine diffs are
538 ;; permanently nixed; used in ediff-windows-wordwise and ediff-regions-wordwise
539 (ediff-defvar-local ediff-word-mode nil "")
540 ;; Name of the job (ediff-files, ediff-windows, etc.)
541 (ediff-defvar-local ediff-job-name nil "")
543 ;; Narrowing and ediff-region/windows support
544 ;; This is a list (overlay-A overlay-B overlay-C)
545 ;; If set, Ediff compares only those parts of buffers A/B/C that lie within
546 ;; the bounds of these overlays.
547 (ediff-defvar-local ediff-narrow-bounds nil "")
549 ;; List (overlay-A overlay-B overlay-C), where each overlay spans the
550 ;; entire corresponding buffer.
551 (ediff-defvar-local ediff-wide-bounds nil "")
553 ;; Current visibility boundaries in buffers A, B, and C.
554 ;; This is also a list of overlays. When the user toggles narrow/widen,
555 ;; this list changes from ediff-wide-bounds to ediff-narrow-bounds.
556 ;; and back.
557 (ediff-defvar-local ediff-visible-bounds nil "")
559 (ediff-defvar-local ediff-start-narrowed t
560 "Non-nil means start narrowed, if doing ediff-windows-* or ediff-regions-*")
561 (ediff-defvar-local ediff-quit-widened t
562 "*Non-nil means: when finished, Ediff widens buffers A/B.
563 Actually, Ediff restores the scope of visibility that existed at startup.")
565 (defcustom ediff-keep-variants t
566 "*Nil means that non-modified variant buffers should be removed at the end of the session after some interrogation.
567 Supplying a prefix argument to the quit command `q' temporarily reverses the
568 meaning of this variable."
569 :type 'boolean
570 :group 'ediff)
572 (ediff-defvar-local ediff-highlight-all-diffs t
573 "If nil, only the selected differences are highlighted.
574 This variable can be set either in .emacs or toggled interactively, using
575 ediff-toggle-hilit. Use `setq-default' to set it.")
577 ;; A var local to each control panel buffer. Indicates highlighting style
578 ;; in effect for this buffer: `face', `ascii', nil -- temporarily
579 ;; unhighlighted, `off' -- turned off \(on a dumb terminal only\).
580 (ediff-defvar-local ediff-highlighting-style nil "")
583 ;; The suffix of the control buffer name.
584 (ediff-defvar-local ediff-control-buffer-suffix nil "")
585 ;; Same as ediff-control-buffer-suffix, but without <,>.
586 ;; It's a number rather than string.
587 (ediff-defvar-local ediff-control-buffer-number nil "")
590 ;; The original values of ediff-protected-variables for buffer A
591 (ediff-defvar-local ediff-buffer-values-orig-A nil "")
592 ;; The original values of ediff-protected-variables for buffer B
593 (ediff-defvar-local ediff-buffer-values-orig-B nil "")
594 ;; The original values of ediff-protected-variables for buffer C
595 (ediff-defvar-local ediff-buffer-values-orig-C nil "")
596 ;; The original values of ediff-protected-variables for buffer Ancestor
597 (ediff-defvar-local ediff-buffer-values-orig-Ancestor nil "")
599 ;; association between buff-type and ediff-buffer-values-orig-*
600 (defconst ediff-buffer-values-orig-alist
601 '((A . ediff-buffer-values-orig-A)
602 (B . ediff-buffer-values-orig-B)
603 (C . ediff-buffer-values-orig-C)
604 (Ancestor . ediff-buffer-values-orig-Ancestor)))
606 ;; Buffer-local variables to be saved then restored during Ediff sessions
607 (defconst ediff-protected-variables '(
608 ;;buffer-read-only
609 mode-line-format))
611 ;; Vector of differences between the variants. Each difference is
612 ;; represented by a vector of two overlays plus a vector of fine diffs,
613 ;; plus a no-fine-diffs flag. The first overlay spans the
614 ;; difference region in the A buffer and the second overlays the diff in
615 ;; the B buffer. If a difference section is empty, the corresponding
616 ;; overlay's endpoints coincide.
618 ;; The precise form of a difference vector for one buffer is:
619 ;; [diff diff diff ...]
620 ;; where each diff has the form:
621 ;; [diff-overlay fine-diff-vector no-fine-diffs-flag state-of-difference]
622 ;; fine-diff-vector is a vector [fine-diff-overlay fine-diff-overlay ...]
623 ;; no-fine-diffs-flag says if there are fine differences.
624 ;; state-of-difference is A, B, C, or nil, indicating which buffer is
625 ;; different from the other two (used only in 3-way jobs.
626 (ediff-defvar-local ediff-difference-vector-A nil "")
627 (ediff-defvar-local ediff-difference-vector-B nil "")
628 (ediff-defvar-local ediff-difference-vector-C nil "")
629 (ediff-defvar-local ediff-difference-vector-Ancestor nil "")
630 ;; A-list of diff vector types associated with buffer types
631 (defconst ediff-difference-vector-alist
632 '((A . ediff-difference-vector-A)
633 (B . ediff-difference-vector-B)
634 (C . ediff-difference-vector-C)
635 (Ancestor . ediff-difference-vector-Ancestor)))
637 ;; [ status status status ...]
638 ;; Each status: [state-of-merge state-of-ancestor]
639 ;; state-of-merge is default-A, default-B, prefer-A, or prefer-B. It
640 ;; indicates the way a diff region was created in buffer C.
641 ;; state-of-ancestor says if the corresponding region in ancestor buffer is
642 ;; empty.
643 (ediff-defvar-local ediff-state-of-merge nil "")
645 ;; The difference that is currently selected.
646 (ediff-defvar-local ediff-current-difference -1 "")
647 ;; Number of differences found.
648 (ediff-defvar-local ediff-number-of-differences nil "")
650 ;; Buffer containing the output of diff, which is used by Ediff to step
651 ;; through files.
652 (ediff-defvar-local ediff-diff-buffer nil "")
653 ;; Like ediff-diff-buffer, but contains context diff. It is not used by
654 ;; Ediff, but it is saved in a file, if user requests so.
655 (ediff-defvar-local ediff-custom-diff-buffer nil "")
656 ;; Buffer used for diff-style fine differences between regions.
657 (ediff-defvar-local ediff-fine-diff-buffer nil "")
658 ;; Temporary buffer used for computing fine differences.
659 (defconst ediff-tmp-buffer " *ediff-tmp*" "")
660 ;; Buffer used for messages
661 (defconst ediff-msg-buffer " *ediff-message*" "")
662 ;; Buffer containing the output of diff when diff returns errors.
663 (ediff-defvar-local ediff-error-buffer nil "")
664 ;; Buffer to display debug info
665 (ediff-defvar-local ediff-debug-buffer "*ediff-debug*" "")
667 ;; List of ediff control panels associated with each buffer A/B/C/Ancestor.
668 ;; Not used any more, but may be needed in the future.
669 (ediff-defvar-local ediff-this-buffer-ediff-sessions nil "")
671 ;; to be deleted in due time
672 ;; List of difference overlays disturbed by working with the current diff.
673 (defvar ediff-disturbed-overlays nil "")
675 ;; Priority of non-selected overlays.
676 (defvar ediff-shadow-overlay-priority 100 "")
678 (defcustom ediff-version-control-package 'vc
679 "Version control package used.
680 Currently, Ediff supports vc.el, rcs.el, pcl-cvs.el, and generic-sc.el. The
681 standard Emacs interface to RCS, CVS, SCCS, etc., is vc.el. However, some
682 people find the other two packages more convenient. Set this variable to the
683 appropriate symbol: `rcs', `pcl-cvs', or `generic-sc' if you so desire."
684 :type 'symbol
685 :group 'ediff)
688 (if ediff-xemacs-p
689 (progn
690 (fset 'ediff-read-event (symbol-function 'next-command-event))
691 (fset 'ediff-overlayp (symbol-function 'extentp))
692 (fset 'ediff-make-overlay (symbol-function 'make-extent))
693 (fset 'ediff-delete-overlay (symbol-function 'delete-extent)))
694 (fset 'ediff-read-event (symbol-function 'read-event))
695 (fset 'ediff-overlayp (symbol-function 'overlayp))
696 (fset 'ediff-make-overlay (symbol-function 'make-overlay))
697 (fset 'ediff-delete-overlay (symbol-function 'delete-overlay)))
699 ;; Check the current version against the major and minor version numbers
700 ;; using op: cur-vers op major.minor If emacs-major-version or
701 ;; emacs-minor-version are not defined, we assume that the current version
702 ;; is hopelessly outdated. We assume that emacs-major-version and
703 ;; emacs-minor-version are defined. Otherwise, for Emacs/XEmacs 19, if the
704 ;; current minor version is < 10 (xemacs) or < 23 (emacs) the return value
705 ;; will be nil (when op is =, >, or >=) and t (when op is <, <=), which may be
706 ;; incorrect. However, this gives correct result in our cases, since we are
707 ;; testing for sufficiently high Emacs versions.
708 (defun ediff-check-version (op major minor &optional type-of-emacs)
709 (if (and (boundp 'emacs-major-version) (boundp 'emacs-minor-version))
710 (and (cond ((eq type-of-emacs 'xemacs) ediff-xemacs-p)
711 ((eq type-of-emacs 'emacs) ediff-emacs-p)
712 (t t))
713 (cond ((eq op '=) (and (= emacs-minor-version minor)
714 (= emacs-major-version major)))
715 ((memq op '(> >= < <=))
716 (and (or (funcall op emacs-major-version major)
717 (= emacs-major-version major))
718 (if (= emacs-major-version major)
719 (funcall op emacs-minor-version minor)
720 t)))
722 (error "%S: Invalid op in ediff-check-version" op))))
723 (cond ((memq op '(= > >=)) nil)
724 ((memq op '(< <=)) t))))
728 ;; A fix for NeXT Step
729 ;; Should probably be eliminated in later versions.
730 (if (and (ediff-window-display-p) (eq (ediff-device-type) 'ns))
731 (progn
732 (fset 'x-display-color-p (symbol-function 'ns-display-color-p))
733 (fset 'x-color-defined-p (symbol-function 'ns-color-defined-p))
734 (fset 'x-display-pixel-height (symbol-function 'ns-display-pixel-height))
735 (fset 'x-display-pixel-width (symbol-function 'ns-display-pixel-width))
739 (defsubst ediff-color-display-p ()
740 (if ediff-emacs-p
741 (x-display-color-p)
742 (eq (device-class (selected-device)) 'color)))
745 (if (ediff-has-face-support-p)
746 (if ediff-xemacs-p
747 (progn
748 (fset 'ediff-valid-color-p (symbol-function 'valid-color-name-p))
749 (fset 'ediff-get-face (symbol-function 'get-face)))
750 ;; Temporary fix for OS/2 port of Emacs
751 ;; pm-win.el in PM-Emacs should be fixed.
752 (if (eq (ediff-device-type) 'pm)
753 (fset 'ediff-valid-color-p
754 (function (lambda (color) (assoc color pm-color-alist))))
755 (fset 'ediff-valid-color-p (symbol-function 'x-color-defined-p)))
756 (fset 'ediff-get-face (symbol-function 'internal-get-face))))
758 (if (ediff-window-display-p)
759 (if ediff-xemacs-p
760 (progn
761 (fset 'ediff-display-pixel-width
762 (symbol-function 'device-pixel-width))
763 (fset 'ediff-display-pixel-height
764 (symbol-function 'device-pixel-height)))
765 (fset 'ediff-display-pixel-width
766 (symbol-function 'x-display-pixel-width))
767 (fset 'ediff-display-pixel-height
768 (symbol-function 'x-display-pixel-height))))
770 ;; A-list of current-diff-overlay symbols asssociated with buf types
771 (defconst ediff-current-diff-overlay-alist
772 '((A . ediff-current-diff-overlay-A)
773 (B . ediff-current-diff-overlay-B)
774 (C . ediff-current-diff-overlay-C)
775 (Ancestor . ediff-current-diff-overlay-Ancestor)))
777 ;; A-list of current-diff-face-* symbols asssociated with buf types
778 (defconst ediff-current-diff-face-alist
779 '((A . ediff-current-diff-face-A)
780 (B . ediff-current-diff-face-B)
781 (C . ediff-current-diff-face-C)
782 (Ancestor . ediff-current-diff-face-Ancestor)))
785 (defun ediff-make-current-diff-overlay (type)
786 (if (ediff-has-face-support-p)
787 (let ((overlay (ediff-get-symbol-from-alist
788 type ediff-current-diff-overlay-alist))
789 (buffer (ediff-get-buffer type))
790 (face (face-name
791 (symbol-value
792 (ediff-get-symbol-from-alist
793 type ediff-current-diff-face-alist)))))
794 (set overlay
795 (ediff-make-bullet-proof-overlay (point-max) (point-max) buffer))
796 (ediff-set-overlay-face (symbol-value overlay) face)
797 (ediff-overlay-put (symbol-value overlay) 'ediff ediff-control-buffer))
800 (defun ediff-set-overlay-face (extent face)
801 (ediff-overlay-put extent 'face face)
802 (ediff-overlay-put extent 'help-echo 'ediff-region-help-echo))
804 ;; This does nothing in Emacs, since overlays there have no help-echo property
805 (defun ediff-region-help-echo (extent)
806 (let ((is-current (ediff-overlay-get extent 'ediff))
807 (face (ediff-overlay-get extent 'face))
808 (diff-num (ediff-overlay-get extent 'ediff-diff-num))
809 face-help)
811 ;; This happens only for refinement overlays
812 (setq face-help (and face (get face 'ediff-help-echo)))
814 (cond ((and is-current diff-num) ; current diff region
815 (format "Difference region %S -- current" (1+ diff-num)))
816 (face-help) ; refinement of current diff region
817 (diff-num ; non-current
818 (format "Difference region %S -- non-current" (1+ diff-num)))
819 (t "")) ; none
822 ;;(defun ediff-set-face (ground face color)
823 ;; "Set face foreground/background."
824 ;; (if (ediff-has-face-support-p)
825 ;; (if (ediff-valid-color-p color)
826 ;; (if (eq ground 'foreground)
827 ;; (set-face-foreground face color)
828 ;; (set-face-background face color))
829 ;; (cond ((memq face
830 ;; '(ediff-current-diff-face-A
831 ;; ediff-current-diff-face-B
832 ;; ediff-current-diff-face-C
833 ;; ediff-current-diff-face-Ancestor))
834 ;; (copy-face 'highlight face))
835 ;; ((memq face
836 ;; '(ediff-fine-diff-face-A
837 ;; ediff-fine-diff-face-B
838 ;; ediff-fine-diff-face-C
839 ;; ediff-fine-diff-face-Ancestor))
840 ;; (copy-face 'secondary-selection face)
841 ;; (set-face-underline-p face t))
842 ;; ((memq face
843 ;; '(ediff-even-diff-face-A
844 ;; ediff-odd-diff-face-A
845 ;; ediff-even-diff-face-B ediff-odd-diff-face-B
846 ;; ediff-even-diff-face-C ediff-odd-diff-face-C
847 ;; ediff-even-diff-face-Ancestor
848 ;; ediff-odd-diff-face-Ancestor))
849 ;; (copy-face 'secondary-selection face))))
850 ;; ))
852 (defun ediff-set-face-pixmap (face pixmap)
853 "Set face pixmap on a monochrome display."
854 (if (and (ediff-window-display-p) (not (ediff-color-display-p)))
855 (condition-case nil
856 (set-face-background-pixmap face pixmap)
857 (error
858 (message "Pixmap not found for %S: %s" (face-name face) pixmap)
859 (sit-for 1)))))
861 (defun ediff-hide-face (face)
862 (if (and (ediff-has-face-support-p) ediff-emacs-p)
863 (add-to-list 'facemenu-unlisted-faces face)))
866 ;;(defvar ediff-current-diff-face-A
867 ;; (if (ediff-has-face-support-p)
868 ;; (progn
869 ;; (make-face 'ediff-current-diff-face-A)
870 ;; (or (face-differs-from-default-p 'ediff-current-diff-face-A)
871 ;; (cond ((ediff-color-display-p)
872 ;; (ediff-set-face
873 ;; 'foreground 'ediff-current-diff-face-A "firebrick")
874 ;; (ediff-set-face
875 ;; 'background 'ediff-current-diff-face-A "pale green"))
876 ;; (t
877 ;; (if ediff-xemacs-p
878 ;; (copy-face 'modeline 'ediff-current-diff-face-A)
879 ;; (copy-face 'highlight 'ediff-current-diff-face-A))
880 ;; )))
881 ;; 'ediff-current-diff-face-A))
882 ;; "Face for highlighting the selected difference in buffer A.")
884 (defface ediff-current-diff-face-A
885 '((((class color)) (:foreground "firebrick" :background "pale green"))
886 (t (:inverse-video t)))
887 "Face for highlighting the selected difference in buffer A."
888 :group 'ediff-highlighting)
889 ;; An internal variable. Ediff takes the face from here. When unhighlighting,
890 ;; this variable is set to nil, then again to the appropriate face.
891 (defvar ediff-current-diff-face-A 'ediff-current-diff-face-A
892 "Face for highlighting the selected difference in buffer A.
893 DO NOT CHANGE this variable. Instead, use the customization
894 widget to customize the actual face object `ediff-current-diff-face-A'
895 this variable represents.")
896 (ediff-hide-face 'ediff-current-diff-face-A)
897 ;; Until custom.el for XEmacs starts supporting :inverse-video we do this.
898 ;; This means that some user customization may be trashed.
899 (if (and ediff-xemacs-p
900 (ediff-has-face-support-p)
901 (not (ediff-color-display-p)))
902 (copy-face 'modeline 'ediff-current-diff-face-A))
906 ;;(defvar ediff-current-diff-face-B
907 ;; (if (ediff-has-face-support-p)
908 ;; (progn
909 ;; (make-face 'ediff-current-diff-face-B)
910 ;; (or (face-differs-from-default-p 'ediff-current-diff-face-B)
911 ;; (cond ((ediff-color-display-p)
912 ;; (ediff-set-face
913 ;; 'foreground 'ediff-current-diff-face-B "DarkOrchid")
914 ;; (ediff-set-face
915 ;; 'background 'ediff-current-diff-face-B "Yellow"))
916 ;; (t
917 ;; (if ediff-xemacs-p
918 ;; (copy-face 'modeline 'ediff-current-diff-face-B)
919 ;; (copy-face 'highlight 'ediff-current-diff-face-B))
920 ;; )))
921 ;; 'ediff-current-diff-face-B))
922 ;; "Face for highlighting the selected difference in buffer B.")
924 (defface ediff-current-diff-face-B
925 '((((class color)) (:foreground "DarkOrchid" :background "Yellow"))
926 (t (:inverse-video t)))
927 "Face for highlighting the selected difference in buffer B."
928 :group 'ediff-highlighting)
929 ;; An internal variable. Ediff takes the face from here. When unhighlighting,
930 ;; this variable is set to nil, then again to the appropriate face.
931 (defvar ediff-current-diff-face-B 'ediff-current-diff-face-B
932 "Face for highlighting the selected difference in buffer B.
933 this variable. Instead, use the customization
934 widget to customize the actual face `ediff-current-diff-face-B'
935 this variable represents.")
936 (ediff-hide-face 'ediff-current-diff-face-B)
937 ;; Until custom.el for XEmacs starts supporting :inverse-video we do this.
938 ;; This means that some user customization may be trashed.
939 (if (and ediff-xemacs-p
940 (ediff-has-face-support-p)
941 (not (ediff-color-display-p)))
942 (copy-face 'modeline 'ediff-current-diff-face-B))
944 ;;(defvar ediff-current-diff-face-C
945 ;; (if (ediff-has-face-support-p)
946 ;; (progn
947 ;; (make-face 'ediff-current-diff-face-C)
948 ;; (or (face-differs-from-default-p 'ediff-current-diff-face-C)
949 ;; (cond ((ediff-color-display-p)
950 ;; (ediff-set-face
951 ;; 'foreground 'ediff-current-diff-face-C "Navy")
952 ;; (ediff-set-face
953 ;; 'background 'ediff-current-diff-face-C "Pink"))
954 ;; (t
955 ;; (if ediff-xemacs-p
956 ;; (copy-face 'modeline 'ediff-current-diff-face-C)
957 ;; (copy-face 'highlight 'ediff-current-diff-face-C))
958 ;; )))
959 ;; 'ediff-current-diff-face-C))
960 ;; "Face for highlighting the selected difference in buffer C.")
962 (defface ediff-current-diff-face-C
963 '((((class color)) (:foreground "Navy" :background "Pink"))
964 (t (:inverse-video t)))
965 "Face for highlighting the selected difference in buffer C."
966 :group 'ediff-highlighting)
967 ;; An internal variable. Ediff takes the face from here. When unhighlighting,
968 ;; this variable is set to nil, then again to the appropriate face.
969 (defvar ediff-current-diff-face-C 'ediff-current-diff-face-C
970 "Face for highlighting the selected difference in buffer C.
971 DO NOT CHANGE this variable. Instead, use the customization
972 widget to customize the actual face object `ediff-current-diff-face-C'
973 this variable represents.")
974 (ediff-hide-face 'ediff-current-diff-face-C)
975 ;; Until custom.el for XEmacs starts supporting :inverse-video we do this.
976 ;; This means that some user customization may be trashed.
977 (if (and ediff-xemacs-p
978 (ediff-has-face-support-p)
979 (not (ediff-color-display-p)))
980 (copy-face 'modeline 'ediff-current-diff-face-C))
982 ;;(defvar ediff-current-diff-face-Ancestor
983 ;; (if (ediff-has-face-support-p)
984 ;; (progn
985 ;; (make-face 'ediff-current-diff-face-Ancestor)
986 ;; (or (face-differs-from-default-p 'ediff-current-diff-face-Ancestor)
987 ;; (copy-face
988 ;; 'ediff-current-diff-face-C 'ediff-current-diff-face-Ancestor))
989 ;; 'ediff-current-diff-face-Ancestor))
990 ;; "Face for highlighting the selected difference in the ancestor buffer.")
992 (defface ediff-current-diff-face-Ancestor
993 '((((class color)) (:foreground "Black" :background "VioletRed"))
994 (t (:inverse-video t)))
995 "Face for highlighting the selected difference in buffer Ancestor."
996 :group 'ediff-highlighting)
997 ;; An internal variable. Ediff takes the face from here. When unhighlighting,
998 ;; this variable is set to nil, then again to the appropriate face.
999 (defvar ediff-current-diff-face-Ancestor 'ediff-current-diff-face-Ancestor
1000 "Face for highlighting the selected difference in buffer Ancestor.
1001 DO NOT CHANGE this variable. Instead, use the customization
1002 widget to customize the actual face object `ediff-current-diff-face-Ancestor'
1003 this variable represents.")
1004 (ediff-hide-face 'ediff-current-diff-face-Ancestor)
1005 ;; Until custom.el for XEmacs starts supporting :inverse-video we do this.
1006 ;; This means that some user customization may be trashed.
1007 (if (and ediff-xemacs-p
1008 (ediff-has-face-support-p)
1009 (not (ediff-color-display-p)))
1010 (copy-face 'modeline 'ediff-current-diff-face-Ancestor))
1012 ;;(defvar ediff-fine-diff-pixmap "gray3"
1013 ;; "Pixmap to use for highlighting fine differences.")
1014 ;;(defvar ediff-odd-diff-pixmap "gray1"
1015 ;; "Pixmap to use for highlighting odd differences.")
1016 ;;(defvar ediff-even-diff-pixmap "Stipple"
1017 ;; "Pixmap to use for highlighting even differences.")
1019 ;;(defvar ediff-fine-diff-face-A
1020 ;; (if (ediff-has-face-support-p)
1021 ;; (progn
1022 ;; (make-face 'ediff-fine-diff-face-A)
1023 ;; (or (face-differs-from-default-p 'ediff-fine-diff-face-A)
1024 ;; (cond ((ediff-color-display-p)
1025 ;; (ediff-set-face 'foreground 'ediff-fine-diff-face-A
1026 ;; "Navy")
1027 ;; (ediff-set-face 'background 'ediff-fine-diff-face-A
1028 ;; "sky blue"))
1029 ;; (t
1030 ;; (set-face-underline-p 'ediff-fine-diff-face-A t)
1031 ;; (ediff-set-face-pixmap 'ediff-fine-diff-face-A
1032 ;; ediff-fine-diff-pixmap)
1033 ;; )))
1034 ;; 'ediff-fine-diff-face-A))
1035 ;; "Face for highlighting the refinement of the selected diff in buffer A.")
1038 (defface ediff-fine-diff-face-A
1039 '((((class color)) (:foreground "Navy" :background "sky blue"))
1040 (t (:underline t :stipple "gray3")))
1041 "Face for highlighting the refinement of the selected diff in buffer A."
1042 :group 'ediff-highlighting)
1043 ;; An internal variable. Ediff takes the face from here. When unhighlighting,
1044 ;; this variable is set to nil, then again to the appropriate face.
1045 (defvar ediff-fine-diff-face-A 'ediff-fine-diff-face-A
1046 "Face for highlighting the fine differences in buffer A.
1047 DO NOT CHANGE this variable. Instead, use the customization
1048 widget to customize the actual face object `ediff-fine-diff-face-A'
1049 this variable represents.")
1050 (ediff-hide-face 'ediff-fine-diff-face-A)
1052 ;;;; Until custom.el for XEmacs starts supporting :stipple we do this.
1053 ;;;; This means that some user customization may be trashed.
1054 ;;(if (and ediff-xemacs-p
1055 ;; (ediff-has-face-support-p)
1056 ;; (not (ediff-color-display-p)))
1057 ;; (ediff-set-face-pixmap 'ediff-fine-diff-face-A "gray3"))
1059 ;;(defvar ediff-fine-diff-face-B
1060 ;; (if (ediff-has-face-support-p)
1061 ;; (progn
1062 ;; (make-face 'ediff-fine-diff-face-B)
1063 ;; (or (face-differs-from-default-p 'ediff-fine-diff-face-B)
1064 ;; (cond ((ediff-color-display-p)
1065 ;; (ediff-set-face 'foreground 'ediff-fine-diff-face-B "Black")
1066 ;; (ediff-set-face 'background 'ediff-fine-diff-face-B "cyan"))
1067 ;; (t
1068 ;; (set-face-underline-p 'ediff-fine-diff-face-B t)
1069 ;; (ediff-set-face-pixmap 'ediff-fine-diff-face-B
1070 ;; ediff-fine-diff-pixmap)
1071 ;; )))
1072 ;; 'ediff-fine-diff-face-B))
1073 ;; "Face for highlighting the refinement of the selected diff in buffer B.")
1075 (defface ediff-fine-diff-face-B
1076 '((((class color)) (:foreground "Black" :background "cyan"))
1077 (t (:underline t :stipple "gray3")))
1078 "Face for highlighting the refinement of the selected diff in buffer B."
1079 :group 'ediff-highlighting)
1080 ;; An internal variable. Ediff takes the face from here. When unhighlighting,
1081 ;; this variable is set to nil, then again to the appropriate face.
1082 (defvar ediff-fine-diff-face-B 'ediff-fine-diff-face-B
1083 "Face for highlighting the fine differences in buffer B.
1084 DO NOT CHANGE this variable. Instead, use the customization
1085 widget to customize the actual face object `ediff-fine-diff-face-B'
1086 this variable represents.")
1087 (ediff-hide-face 'ediff-fine-diff-face-B)
1089 ;;;; Until custom.el for XEmacs starts supporting :stipple we do this.
1090 ;;;; This means that some user customization may be trashed.
1091 ;;(if (and ediff-xemacs-p
1092 ;; (ediff-has-face-support-p)
1093 ;; (not (ediff-color-display-p)))
1094 ;; (ediff-set-face-pixmap 'ediff-fine-diff-face-B "gray3"))
1096 ;;(defvar ediff-fine-diff-face-C
1097 ;; (if (ediff-has-face-support-p)
1098 ;; (progn
1099 ;; (make-face 'ediff-fine-diff-face-C)
1100 ;; (or (face-differs-from-default-p 'ediff-fine-diff-face-C)
1101 ;; (cond ((ediff-color-display-p)
1102 ;; (ediff-set-face 'foreground 'ediff-fine-diff-face-C "black")
1103 ;; (ediff-set-face
1104 ;; 'background 'ediff-fine-diff-face-C "Turquoise"))
1105 ;; (t
1106 ;; (set-face-underline-p 'ediff-fine-diff-face-C t)
1107 ;; (ediff-set-face-pixmap 'ediff-fine-diff-face-C
1108 ;; ediff-fine-diff-pixmap)
1109 ;; )))
1110 ;; 'ediff-fine-diff-face-C))
1111 ;; "Face for highlighting the refinement of the selected diff in buffer C.")
1113 (defface ediff-fine-diff-face-C
1114 '((((class color)) (:foreground "Black" :background "Turquoise"))
1115 (t (:underline t :stipple "gray3")))
1116 "Face for highlighting the refinement of the selected diff in buffer C."
1117 :group 'ediff-highlighting)
1118 ;; An internal variable. Ediff takes the face from here. When unhighlighting,
1119 ;; this variable is set to nil, then again to the appropriate face.
1120 (defvar ediff-fine-diff-face-C 'ediff-fine-diff-face-C
1121 "Face for highlighting the fine differences in buffer C.
1122 DO NOT CHANGE this variable. Instead, use the customization
1123 widget to customize the actual face object `ediff-fine-diff-face-C'
1124 this variable represents.")
1125 (ediff-hide-face 'ediff-fine-diff-face-C)
1127 ;;;; Until custom.el for XEmacs starts supporting :stipple we do this.
1128 ;;;; This means that some user customization may be trashed.
1129 ;;(if (and ediff-xemacs-p
1130 ;; (ediff-has-face-support-p)
1131 ;; (not (ediff-color-display-p)))
1132 ;; (ediff-set-face-pixmap 'ediff-fine-diff-face-C "gray3"))
1134 ;;(defvar ediff-fine-diff-face-Ancestor
1135 ;; (if (ediff-has-face-support-p)
1136 ;; (progn
1137 ;; (make-face 'ediff-fine-diff-face-Ancestor)
1138 ;; (ediff-hide-face 'ediff-fine-diff-face-Ancestor)
1139 ;; (or (face-differs-from-default-p 'ediff-fine-diff-face-Ancestor)
1140 ;; (progn
1141 ;; (copy-face
1142 ;; 'ediff-fine-diff-face-C 'ediff-fine-diff-face-Ancestor)
1143 ;; (ediff-set-face-pixmap 'ediff-fine-diff-face-Ancestor
1144 ;; ediff-fine-diff-pixmap))
1145 ;; )))
1146 ;; "Face highlighting refinements of the selected diff in ancestor buffer.
1147 ;;Presently, this is not used, as difference regions are not refined in the
1148 ;;ancestor buffer.")
1150 (defface ediff-fine-diff-face-Ancestor
1151 '((((class color)) (:foreground "Black" :background "Green"))
1152 (t (:underline t :stipple "gray3")))
1153 "Face for highlighting the refinement of the selected diff in the ancestor buffer.
1154 At present, this face is not used and no fine differences are computed for the
1155 ancestor buffer."
1156 :group 'ediff-highlighting)
1157 ;; An internal variable. Ediff takes the face from here. When unhighlighting,
1158 ;; this variable is set to nil, then again to the appropriate face.
1159 (defvar ediff-fine-diff-face-Ancestor 'ediff-fine-diff-face-Ancestor
1160 "Face for highlighting the fine differences in buffer Ancestor.
1161 DO NOT CHANGE this variable. Instead, use the customization
1162 widget to customize the actual face object `ediff-fine-diff-face-Ancestor'
1163 this variable represents.")
1164 (ediff-hide-face 'ediff-fine-diff-face-Ancestor)
1166 ;;;; Until custom.el for XEmacs starts supporting :stipple we do this.
1167 ;;;; This means that some user customization may be trashed.
1168 ;;(if (and ediff-xemacs-p
1169 ;; (ediff-has-face-support-p)
1170 ;; (not (ediff-color-display-p)))
1171 ;; (ediff-set-face-pixmap 'ediff-fine-diff-face-Ancestor "gray3"))
1173 ;;(defvar ediff-even-diff-face-A
1174 ;; (if (ediff-has-face-support-p)
1175 ;; (progn
1176 ;; (make-face 'ediff-even-diff-face-A)
1177 ;; (or (face-differs-from-default-p 'ediff-even-diff-face-A)
1178 ;; (cond ((ediff-color-display-p)
1179 ;; (ediff-set-face
1180 ;; 'foreground 'ediff-even-diff-face-A "black")
1181 ;; (ediff-set-face
1182 ;; 'background 'ediff-even-diff-face-A "light grey"))
1183 ;; (t
1184 ;; (copy-face 'italic 'ediff-even-diff-face-A)
1185 ;; (ediff-set-face-pixmap 'ediff-even-diff-face-A
1186 ;; ediff-even-diff-pixmap)
1187 ;; )))
1188 ;; 'ediff-even-diff-face-A))
1189 ;; "Face used for highlighting even-numbered differences in buffer A.")
1191 (defface ediff-even-diff-face-A
1192 '((((class color)) (:foreground "Black" :background "light grey"))
1193 (t (:italic t :stipple "Stipple")))
1194 "Face for highlighting even-numbered non-current differences in buffer A."
1195 :group 'ediff-highlighting)
1196 ;; An internal variable. Ediff takes the face from here. When unhighlighting,
1197 ;; this variable is set to nil, then again to the appropriate face.
1198 (defvar ediff-even-diff-face-A 'ediff-even-diff-face-A
1199 "Face for highlighting even-numbered non-current differences in buffer A.
1200 DO NOT CHANGE this variable. Instead, use the customization
1201 widget to customize the actual face object `ediff-even-diff-face-A'
1202 this variable represents.")
1203 (ediff-hide-face 'ediff-even-diff-face-A)
1205 ;;;; Until custom.el for XEmacs starts supporting :stipple we do this.
1206 ;;;; This means that some user customization may be trashed.
1207 ;;(if (and ediff-xemacs-p
1208 ;; (ediff-has-face-support-p)
1209 ;; (not (ediff-color-display-p)))
1210 ;; (ediff-set-face-pixmap 'ediff-even-diff-face-A "Stipple"))
1212 ;;(defvar ediff-even-diff-face-B
1213 ;; (if (ediff-has-face-support-p)
1214 ;; (progn
1215 ;; (make-face 'ediff-even-diff-face-B)
1216 ;; (or (face-differs-from-default-p 'ediff-even-diff-face-B)
1217 ;; (cond ((ediff-color-display-p)
1218 ;; (ediff-set-face
1219 ;; 'foreground 'ediff-even-diff-face-B "White")
1220 ;; (ediff-set-face
1221 ;; 'background 'ediff-even-diff-face-B "Gray"))
1222 ;; (t
1223 ;; (copy-face 'italic 'ediff-even-diff-face-B)
1224 ;; (ediff-set-face-pixmap 'ediff-even-diff-face-B
1225 ;; ediff-even-diff-pixmap)
1226 ;; )))
1227 ;; 'ediff-even-diff-face-B))
1228 ;; "Face used for highlighting even-numbered differences in buffer B.")
1230 (defface ediff-even-diff-face-B
1231 '((((class color)) (:foreground "White" :background "Grey"))
1232 (t (:italic t :stipple "Stipple")))
1233 "Face for highlighting even-numbered non-current differences in buffer B."
1234 :group 'ediff-highlighting)
1235 ;; An internal variable. Ediff takes the face from here. When unhighlighting,
1236 ;; this variable is set to nil, then again to the appropriate face.
1237 (defvar ediff-even-diff-face-B 'ediff-even-diff-face-B
1238 "Face for highlighting even-numbered non-current differences in buffer B.
1239 DO NOT CHANGE this variable. Instead, use the customization
1240 widget to customize the actual face object `ediff-even-diff-face-B'
1241 this variable represents.")
1242 (ediff-hide-face 'ediff-even-diff-face-B)
1244 ;;;; Until custom.el for XEmacs starts supporting :stipple we do this.
1245 ;;;; This means that some user customization may be trashed.
1246 ;;(if (and ediff-xemacs-p
1247 ;; (ediff-has-face-support-p)
1248 ;; (not (ediff-color-display-p)))
1249 ;; (ediff-set-face-pixmap 'ediff-even-diff-face-B "Stipple"))
1251 ;;(defvar ediff-even-diff-face-C
1252 ;; (if (ediff-has-face-support-p)
1253 ;; (progn
1254 ;; (make-face 'ediff-even-diff-face-C)
1255 ;; (ediff-hide-face 'ediff-even-diff-face-C)
1256 ;; (or (face-differs-from-default-p 'ediff-even-diff-face-C)
1257 ;; (progn
1258 ;; (copy-face 'ediff-even-diff-face-A 'ediff-even-diff-face-C)
1259 ;; (ediff-set-face-pixmap 'ediff-even-diff-face-C
1260 ;; ediff-even-diff-pixmap)))
1261 ;; 'ediff-even-diff-face-C))
1262 ;; "Face used for highlighting even-numbered differences in buffer C.")
1264 (defface ediff-even-diff-face-C
1265 '((((class color)) (:foreground "Black" :background "light grey"))
1266 (t (:italic t :stipple "Stipple")))
1267 "Face for highlighting even-numbered non-current differences in buffer C."
1268 :group 'ediff-highlighting)
1269 ;; An internal variable. Ediff takes the face from here. When unhighlighting,
1270 ;; this variable is set to nil, then again to the appropriate face.
1271 (defvar ediff-even-diff-face-C 'ediff-even-diff-face-C
1272 "Face for highlighting even-numbered non-current differences in buffer C.
1273 DO NOT CHANGE this variable. Instead, use the customization
1274 widget to customize the actual face object `ediff-even-diff-face-C'
1275 this variable represents.")
1276 (ediff-hide-face 'ediff-even-diff-face-C)
1278 ;;;; Until custom.el for XEmacs starts supporting :stipple we do this.
1279 ;;;; This means that some user customization may be trashed.
1280 ;;(if (and ediff-xemacs-p
1281 ;; (ediff-has-face-support-p)
1282 ;; (not (ediff-color-display-p)))
1283 ;; (ediff-set-face-pixmap 'ediff-even-diff-face-C "Stipple"))
1285 ;;(defvar ediff-even-diff-face-Ancestor
1286 ;; (if (ediff-has-face-support-p)
1287 ;; (progn
1288 ;; (make-face 'ediff-even-diff-face-Ancestor)
1289 ;; (ediff-hide-face 'ediff-even-diff-face-Ancestor)
1290 ;; (or (face-differs-from-default-p 'ediff-even-diff-face-Ancestor)
1291 ;; (progn
1292 ;; (copy-face
1293 ;; 'ediff-even-diff-face-C 'ediff-even-diff-face-Ancestor)
1294 ;; (ediff-set-face-pixmap 'ediff-even-diff-face-Ancestor
1295 ;; ediff-even-diff-pixmap)))
1296 ;; 'ediff-even-diff-face-Ancestor))
1297 ;; "Face highlighting even-numbered differences in the ancestor buffer.")
1299 (defface ediff-even-diff-face-Ancestor
1300 '((((class color)) (:foreground "White" :background "Grey"))
1301 (t (:italic t :stipple "Stipple")))
1302 "Face for highlighting even-numbered non-current differences in the ancestor buffer."
1303 :group 'ediff-highlighting)
1304 ;; An internal variable. Ediff takes the face from here. When unhighlighting,
1305 ;; this variable is set to nil, then again to the appropriate face.
1306 (defvar ediff-even-diff-face-Ancestor 'ediff-even-diff-face-Ancestor
1307 "Face for highlighting even-numbered non-current differences in buffer Ancestor.
1308 DO NOT CHANGE this variable. Instead, use the customization
1309 widget to customize the actual face object `ediff-even-diff-face-Ancestor'
1310 this variable represents.")
1311 (ediff-hide-face 'ediff-even-diff-face-Ancestor)
1313 ;;;; Until custom.el for XEmacs starts supporting :stipple we do this.
1314 ;;;; This means that some user customization may be trashed.
1315 ;;(if (and ediff-xemacs-p
1316 ;; (ediff-has-face-support-p)
1317 ;; (not (ediff-color-display-p)))
1318 ;; (ediff-set-face-pixmap 'ediff-even-diff-face-Ancestor "Stipple"))
1320 ;; Association between buffer types and even-diff-face symbols
1321 (defconst ediff-even-diff-face-alist
1322 '((A . ediff-even-diff-face-A)
1323 (B . ediff-even-diff-face-B)
1324 (C . ediff-even-diff-face-C)
1325 (Ancestor . ediff-even-diff-face-Ancestor)))
1327 ;;(defvar ediff-odd-diff-face-A
1328 ;; (if (ediff-has-face-support-p)
1329 ;; (progn
1330 ;; (make-face 'ediff-odd-diff-face-A)
1331 ;; (or (face-differs-from-default-p 'ediff-odd-diff-face-A)
1332 ;; (cond ((ediff-color-display-p)
1333 ;; (ediff-set-face
1334 ;; 'foreground 'ediff-odd-diff-face-A "White")
1335 ;; (ediff-set-face
1336 ;; 'background 'ediff-odd-diff-face-A "Gray"))
1337 ;; (t
1338 ;; (copy-face 'italic 'ediff-odd-diff-face-A)
1339 ;; (ediff-set-face-pixmap 'ediff-odd-diff-face-A
1340 ;; ediff-odd-diff-pixmap)
1341 ;; )))
1342 ;; 'ediff-odd-diff-face-A))
1343 ;; "Face used for highlighting odd-numbered differences in buffer A.")
1345 (defface ediff-odd-diff-face-A
1346 '((((class color)) (:foreground "White" :background "Grey"))
1347 (t (:italic t :stipple "gray1")))
1348 "Face for highlighting odd-numbered non-current differences in buffer A."
1349 :group 'ediff-highlighting)
1350 ;; An internal variable. Ediff takes the face from here. When unhighlighting,
1351 ;; this variable is set to nil, then again to the appropriate face.
1352 (defvar ediff-odd-diff-face-A 'ediff-odd-diff-face-A
1353 "Face for highlighting odd-numbered non-current differences in buffer A.
1354 DO NOT CHANGE this variable. Instead, use the customization
1355 widget to customize the actual face object `ediff-odd-diff-face-A'
1356 this variable represents.")
1357 (ediff-hide-face 'ediff-odd-diff-face-A)
1359 ;;;; Until custom.el for XEmacs starts supporting :stipple we do this.
1360 ;;;; This means that some user customization may be trashed.
1361 ;;(if (and ediff-xemacs-p
1362 ;; (ediff-has-face-support-p)
1363 ;; (not (ediff-color-display-p)))
1364 ;; (ediff-set-face-pixmap 'ediff-odd-diff-face-A "gray1"))
1366 ;;(defvar ediff-odd-diff-face-B
1367 ;; (if (ediff-has-face-support-p)
1368 ;; (progn
1369 ;; (make-face 'ediff-odd-diff-face-B)
1370 ;; (ediff-hide-face 'ediff-odd-diff-face-B)
1371 ;; (or (face-differs-from-default-p 'ediff-odd-diff-face-B)
1372 ;; (cond ((ediff-color-display-p)
1373 ;; (ediff-set-face
1374 ;; 'foreground 'ediff-odd-diff-face-B "Black")
1375 ;; (ediff-set-face
1376 ;; 'background 'ediff-odd-diff-face-B "light grey"))
1377 ;; (t
1378 ;; (copy-face 'italic 'ediff-odd-diff-face-B)
1379 ;; (ediff-set-face-pixmap 'ediff-odd-diff-face-B
1380 ;; ediff-odd-diff-pixmap)
1381 ;; )))
1382 ;; 'ediff-odd-diff-face-B))
1383 ;; "Face used for highlighting odd-numbered differences in buffer B.")
1385 (defface ediff-odd-diff-face-B
1386 '((((class color)) (:foreground "Black" :background "light grey"))
1387 (t (:italic t :stipple "gray1")))
1388 "Face for highlighting odd-numbered non-current differences in buffer B."
1389 :group 'ediff-highlighting)
1390 ;; An internal variable. Ediff takes the face from here. When unhighlighting,
1391 ;; this variable is set to nil, then again to the appropriate face.
1392 (defvar ediff-odd-diff-face-B 'ediff-odd-diff-face-B
1393 "Face for highlighting odd-numbered non-current differences in buffer B.
1394 DO NOT CHANGE this variable. Instead, use the customization
1395 widget to customize the actual face object `ediff-odd-diff-face-B'
1396 this variable represents.")
1397 (ediff-hide-face 'ediff-odd-diff-face-B)
1399 ;;;; Until custom.el for XEmacs starts supporting :stipple we do this.
1400 ;;;; This means that some user customization may be trashed.
1401 ;;(if (and ediff-xemacs-p
1402 ;; (ediff-has-face-support-p)
1403 ;; (not (ediff-color-display-p)))
1404 ;; (ediff-set-face-pixmap 'ediff-odd-diff-face-B "gray1"))
1406 ;;(defvar ediff-odd-diff-face-C
1407 ;; (if (ediff-has-face-support-p)
1408 ;; (progn
1409 ;; (make-face 'ediff-odd-diff-face-C)
1410 ;; (or (face-differs-from-default-p 'ediff-odd-diff-face-C)
1411 ;; (progn
1412 ;; (copy-face 'ediff-odd-diff-face-A 'ediff-odd-diff-face-C)
1413 ;; (ediff-set-face-pixmap 'ediff-odd-diff-face-C
1414 ;; ediff-odd-diff-pixmap)))
1415 ;; 'ediff-odd-diff-face-C))
1416 ;; "Face used for highlighting odd-numbered differences in buffer C.")
1418 (defface ediff-odd-diff-face-C
1419 '((((class color)) (:foreground "White" :background "Grey"))
1420 (t (:italic t :stipple "gray1")))
1421 "Face for highlighting odd-numbered non-current differences in buffer C."
1422 :group 'ediff-highlighting)
1423 ;; An internal variable. Ediff takes the face from here. When unhighlighting,
1424 ;; this variable is set to nil, then again to the appropriate face.
1425 (defvar ediff-odd-diff-face-C 'ediff-odd-diff-face-C
1426 "Face for highlighting odd-numbered non-current differences in buffer C.
1427 DO NOT CHANGE this variable. Instead, use the customization
1428 widget to customize the actual face object `ediff-odd-diff-face-C'
1429 this variable represents.")
1430 (ediff-hide-face 'ediff-odd-diff-face-C)
1432 ;;;; Until custom.el for XEmacs starts supporting :stipple we do this.
1433 ;;;; This means that some user customization may be trashed.
1434 ;;(if (and ediff-xemacs-p
1435 ;; (ediff-has-face-support-p)
1436 ;; (not (ediff-color-display-p)))
1437 ;; (ediff-set-face-pixmap 'ediff-odd-diff-face-C "gray1"))
1439 ;;(defvar ediff-odd-diff-face-Ancestor
1440 ;; (if (ediff-has-face-support-p)
1441 ;; (progn
1442 ;; (make-face 'ediff-odd-diff-face-Ancestor)
1443 ;; (or (face-differs-from-default-p 'ediff-odd-diff-face-Ancestor)
1444 ;; (progn
1445 ;; (copy-face 'ediff-odd-diff-face-C 'ediff-odd-diff-face-Ancestor)
1446 ;; (ediff-set-face-pixmap 'ediff-odd-diff-face-Ancestor
1447 ;; ediff-odd-diff-pixmap)))
1448 ;; 'ediff-odd-diff-face-Ancestor))
1449 ;; "Face used for highlighting even-numbered differences in the ancestor buffer.")
1451 (defface ediff-odd-diff-face-Ancestor
1452 '((((class color)) (:foreground "Black" :background "light grey"))
1453 (t (:italic t :stipple "gray1")))
1454 "Face for highlighting odd-numbered non-current differences in the ancestor buffer."
1455 :group 'ediff-highlighting)
1456 ;; An internal variable. Ediff takes the face from here. When unhighlighting,
1457 ;; this variable is set to nil, then again to the appropriate face.
1458 (defvar ediff-odd-diff-face-Ancestor 'ediff-odd-diff-face-Ancestor
1459 "Face for highlighting odd-numbered non-current differences in buffer Ancestor.
1460 DO NOT CHANGE this variable. Instead, use the customization
1461 widget to customize the actual face object `ediff-odd-diff-face-Ancestor'
1462 this variable represents.")
1463 (ediff-hide-face 'ediff-odd-diff-face-Ancestor)
1465 ;;;; Until custom.el for XEmacs starts supporting :stipple we do this.
1466 ;;;; This means that some user customization may be trashed.
1467 ;;(if (and ediff-xemacs-p
1468 ;; (ediff-has-face-support-p)
1469 ;; (not (ediff-color-display-p)))
1470 ;; (ediff-set-face-pixmap 'ediff-odd-diff-face-Ancestor "gray1"))
1472 ;; Association between buffer types and odd-diff-face symbols
1473 (defconst ediff-odd-diff-face-alist
1474 '((A . ediff-odd-diff-face-A)
1475 (B . ediff-odd-diff-face-B)
1476 (C . ediff-odd-diff-face-C)
1477 (Ancestor . ediff-odd-diff-face-Ancestor)))
1479 ;; A-list of fine-diff face symbols associated with buffer types
1480 (defconst ediff-fine-diff-face-alist
1481 '((A . ediff-fine-diff-face-A)
1482 (B . ediff-fine-diff-face-B)
1483 (C . ediff-fine-diff-face-C)
1484 (Ancestor . ediff-fine-diff-face-Ancestor)))
1486 ;; Help echo
1487 (put 'ediff-fine-diff-face-A 'ediff-help-echo
1488 "A `refinement' of the current difference region")
1489 (put 'ediff-fine-diff-face-B 'ediff-help-echo
1490 "A `refinement' of the current difference region")
1491 (put 'ediff-fine-diff-face-C 'ediff-help-echo
1492 "A `refinement' of the current difference region")
1493 (put 'ediff-fine-diff-face-Ancestor 'ediff-help-echo
1494 "A `refinement' of the current difference region")
1497 ;;; Overlays
1499 (ediff-defvar-local ediff-current-diff-overlay-A nil
1500 "Overlay for the current difference region in buffer A.")
1501 (ediff-defvar-local ediff-current-diff-overlay-B nil
1502 "Overlay for the current difference region in buffer B.")
1503 (ediff-defvar-local ediff-current-diff-overlay-C nil
1504 "Overlay for the current difference region in buffer C.")
1505 (ediff-defvar-local ediff-current-diff-overlay-Ancestor nil
1506 "Overlay for the current difference region in the ancestor buffer.")
1508 ;; Compute priority of ediff overlay.
1509 (defun ediff-highest-priority (start end buffer)
1510 (let ((pos (max 1 (1- start)))
1511 ovr-list)
1512 (if ediff-xemacs-p
1513 (1+ ediff-shadow-overlay-priority)
1514 (ediff-with-current-buffer buffer
1515 (while (< pos (min (point-max) (1+ end)))
1516 (setq ovr-list (append (overlays-at pos) ovr-list))
1517 (setq pos (next-overlay-change pos)))
1518 (1+ (apply '+
1519 (mapcar (function
1520 (lambda (ovr)
1521 (if ovr
1522 (or (ediff-overlay-get ovr 'priority) 0)
1523 0)))
1524 ovr-list)
1526 ))))
1529 (defvar ediff-toggle-read-only-function nil
1530 "*Specifies the function to be used to toggle read-only.
1531 If nil, Ediff tries to deduce the function from the binding of C-x C-q.
1532 Normally, this is the `toggle-read-only' function, but, if version
1533 control is used, it could be `vc-toggle-read-only' or `rcs-toggle-read-only'.")
1535 (defcustom ediff-make-buffers-readonly-at-startup nil
1536 "*Make all variant buffers read-only when Ediff starts up.
1537 This property can be toggled interactively."
1538 :type 'boolean
1539 :group 'ediff)
1542 ;;; Misc
1544 ;; if nil, this silences some messages
1545 (defconst ediff-verbose-p t)
1547 (defcustom ediff-autostore-merges 'group-jobs-only
1548 "*Save the results of merge jobs automatically.
1549 Nil means don't save automatically. t means always save. Anything but nil or t
1550 means save automatically only if the merge job is part of a group of jobs, such
1551 as `ediff-merge-directory' or `ediff-merge-directory-revisions'."
1552 :type '(choice (const nil) (const t) (const group-jobs-only))
1553 :group 'ediff-merge)
1554 (make-variable-buffer-local 'ediff-autostore-merges)
1556 ;; file where the result of the merge is to be saved. used internally
1557 (ediff-defvar-local ediff-merge-store-file nil "")
1559 (defcustom ediff-no-emacs-help-in-control-buffer nil
1560 "*Non-nil means C-h should not invoke Emacs help in control buffer.
1561 Instead, C-h would jump to previous difference."
1562 :type 'boolean
1563 :group 'ediff)
1565 (defcustom ediff-temp-file-prefix
1566 (let ((env (or (getenv "TMPDIR")
1567 (getenv "TMP")
1568 (getenv "TEMP")))
1570 (setq d (if (and env (> (length env) 0))
1572 (cond ((memq system-type '(vax-vms axp-vms)) "SYS$SCRATCH:")
1573 ((eq system-type 'ms-dos) "c:/")
1574 (t "/tmp"))))
1575 ;; The following is to make sure we get something to which we can
1576 ;; add directory levels under VMS.
1577 (setq d (file-name-as-directory (directory-file-name d)))
1579 "*Prefix to put on Ediff temporary file names.
1580 Do not start with `~/' or `~user-name/'."
1581 :type 'string
1582 :group 'ediff)
1584 (defcustom ediff-temp-file-mode 384 ; u=rw only
1585 "*Mode for Ediff temporary files."
1586 :type 'integer
1587 :group 'ediff)
1589 ;; Metacharacters that have to be protected from the shell when executing
1590 ;; a diff/diff3 command.
1591 (defcustom ediff-metachars "[ \t\n!\"#$&'()*;<=>?[\\^`{|~]"
1592 "Regexp that matches characters that must be quoted with `\\' in shell command line.
1593 This default should work without changes."
1594 :type 'string
1595 :group 'ediff)
1597 ;; needed to simulate frame-char-width in XEmacs.
1598 (defvar ediff-H-glyph (if ediff-xemacs-p (make-glyph "H")))
1601 ;; Temporary file used for refining difference regions in buffer A.
1602 (ediff-defvar-local ediff-temp-file-A nil "")
1603 ;; Temporary file used for refining difference regions in buffer B.
1604 (ediff-defvar-local ediff-temp-file-B nil "")
1605 ;; Temporary file used for refining difference regions in buffer C.
1606 (ediff-defvar-local ediff-temp-file-C nil "")
1609 ;;; In-line functions
1611 (or (fboundp 'ediff-file-remote-p) ; user supplied his own function: use it
1612 (defun ediff-file-remote-p (file-name)
1613 (car (cond ((featurep 'efs-auto) (efs-ftp-path file-name))
1614 ((fboundp 'file-remote-p) (file-remote-p file-name))
1615 (t (require 'ange-ftp)
1616 ;; Can happen only in Emacs, since XEmacs has file-remote-p
1617 (ange-ftp-ftp-name file-name))))))
1620 (defsubst ediff-frame-unsplittable-p (frame)
1621 (cdr (assq 'unsplittable (frame-parameters frame))))
1623 (defsubst ediff-get-next-window (wind prev-wind)
1624 (or (window-live-p wind)
1625 (setq wind (if prev-wind
1626 (next-window wind)
1627 (selected-window)))))
1630 (defsubst ediff-kill-buffer-carefully (buf)
1631 "Kill buffer BUF if it exists."
1632 (if (ediff-buffer-live-p buf)
1633 (kill-buffer (get-buffer buf))))
1635 (defsubst ediff-background-face (buf-type dif-num)
1636 ;; The value of dif-num is always 1- the one that user sees.
1637 ;; This is why even face is used when dif-num is odd.
1638 (ediff-get-symbol-from-alist
1639 buf-type (if (ediff-odd-p dif-num)
1640 ediff-even-diff-face-alist
1641 ediff-odd-diff-face-alist)
1645 ;; activate faces on diff regions in buffer
1646 (defun ediff-paint-background-regions-in-one-buffer (buf-type unhighlight)
1647 (let ((diff-vector
1648 (eval (ediff-get-symbol-from-alist
1649 buf-type ediff-difference-vector-alist)))
1650 overl diff-num)
1651 (mapcar (function
1652 (lambda (rec)
1653 (setq overl (ediff-get-diff-overlay-from-diff-record rec)
1654 diff-num (ediff-overlay-get overl 'ediff-diff-num))
1655 (if (ediff-overlay-buffer overl)
1656 ;; only if overlay is alive
1657 (ediff-set-overlay-face
1658 overl
1659 (if (not unhighlight)
1660 (ediff-background-face buf-type diff-num))))
1662 diff-vector)))
1665 ;; activate faces on diff regions in all buffers
1666 (defun ediff-paint-background-regions (&optional unhighlight)
1667 (ediff-paint-background-regions-in-one-buffer
1668 'A unhighlight)
1669 (ediff-paint-background-regions-in-one-buffer
1670 'B unhighlight)
1671 (ediff-paint-background-regions-in-one-buffer
1672 'C unhighlight)
1673 (ediff-paint-background-regions-in-one-buffer
1674 'Ancestor unhighlight))
1676 (defun ediff-highlight-diff-in-one-buffer (n buf-type)
1677 (if (ediff-buffer-live-p (ediff-get-buffer buf-type))
1678 (let* ((buff (ediff-get-buffer buf-type))
1679 (last (ediff-with-current-buffer buff (point-max)))
1680 (begin (ediff-get-diff-posn buf-type 'beg n))
1681 (end (ediff-get-diff-posn buf-type 'end n))
1682 (xtra (if (equal begin end) 1 0))
1683 (end-hilit (min last (+ end xtra)))
1684 (current-diff-overlay
1685 (symbol-value
1686 (ediff-get-symbol-from-alist
1687 buf-type ediff-current-diff-overlay-alist))))
1689 (if ediff-xemacs-p
1690 (ediff-move-overlay current-diff-overlay begin end-hilit)
1691 (ediff-move-overlay current-diff-overlay begin end-hilit buff))
1692 (ediff-overlay-put current-diff-overlay 'priority
1693 (ediff-highest-priority begin end-hilit buff))
1694 (ediff-overlay-put current-diff-overlay 'ediff-diff-num n)
1696 ;; unhighlight the background overlay for diff n so it won't
1697 ;; interfere with the current diff overlay
1698 (ediff-set-overlay-face (ediff-get-diff-overlay n buf-type) nil)
1702 (defun ediff-unhighlight-diff-in-one-buffer (buf-type)
1703 (if (ediff-buffer-live-p (ediff-get-buffer buf-type))
1704 (let ((current-diff-overlay
1705 (symbol-value
1706 (ediff-get-symbol-from-alist
1707 buf-type ediff-current-diff-overlay-alist)))
1708 (overlay
1709 (ediff-get-diff-overlay ediff-current-difference buf-type))
1712 (ediff-move-overlay current-diff-overlay 1 1)
1714 ;; rehighlight the overlay in the background of the
1715 ;; current difference region
1716 (ediff-set-overlay-face
1717 overlay
1718 (if (and (ediff-has-face-support-p)
1719 ediff-use-faces ediff-highlight-all-diffs)
1720 (ediff-background-face buf-type ediff-current-difference)))
1723 (defun ediff-unhighlight-diffs-totally-in-one-buffer (buf-type)
1724 (ediff-unselect-and-select-difference -1)
1725 (if (and (ediff-has-face-support-p) ediff-use-faces)
1726 (let* ((inhibit-quit t)
1727 (current-diff-overlay-var
1728 (ediff-get-symbol-from-alist
1729 buf-type ediff-current-diff-overlay-alist))
1730 (current-diff-overlay (symbol-value current-diff-overlay-var)))
1731 (ediff-paint-background-regions 'unhighlight)
1732 (if (ediff-overlayp current-diff-overlay)
1733 (ediff-delete-overlay current-diff-overlay))
1734 (set current-diff-overlay-var nil)
1738 (defsubst ediff-highlight-diff (n)
1739 "Put face on diff N. Invoked for X displays only."
1740 (ediff-highlight-diff-in-one-buffer n 'A)
1741 (ediff-highlight-diff-in-one-buffer n 'B)
1742 (ediff-highlight-diff-in-one-buffer n 'C)
1743 (ediff-highlight-diff-in-one-buffer n 'Ancestor)
1747 (defsubst ediff-unhighlight-diff ()
1748 "Remove overlays from buffers A, B, and C."
1749 (ediff-unhighlight-diff-in-one-buffer 'A)
1750 (ediff-unhighlight-diff-in-one-buffer 'B)
1751 (ediff-unhighlight-diff-in-one-buffer 'C)
1752 (ediff-unhighlight-diff-in-one-buffer 'Ancestor)
1755 ;; delete highlighting overlays, restore faces to their original form
1756 (defsubst ediff-unhighlight-diffs-totally ()
1757 (ediff-unhighlight-diffs-totally-in-one-buffer 'A)
1758 (ediff-unhighlight-diffs-totally-in-one-buffer 'B)
1759 (ediff-unhighlight-diffs-totally-in-one-buffer 'C)
1760 (ediff-unhighlight-diffs-totally-in-one-buffer 'Ancestor)
1764 ;; arg is a record for a given diff in a difference vector
1765 ;; this record is itself a vector
1766 (defsubst ediff-clear-fine-diff-vector (diff-record)
1767 (if diff-record
1768 (mapcar 'ediff-delete-overlay
1769 (ediff-get-fine-diff-vector-from-diff-record diff-record))))
1771 (defsubst ediff-clear-fine-differences-in-one-buffer (n buf-type)
1772 (ediff-clear-fine-diff-vector (ediff-get-difference n buf-type))
1773 (ediff-set-fine-diff-vector n buf-type nil))
1775 (defsubst ediff-clear-fine-differences (n)
1776 (ediff-clear-fine-differences-in-one-buffer n 'A)
1777 (ediff-clear-fine-differences-in-one-buffer n 'B)
1778 (if ediff-3way-job
1779 (ediff-clear-fine-differences-in-one-buffer n 'C)))
1782 (defsubst ediff-convert-fine-diffs-to-overlays (diff-list region-num)
1783 (ediff-set-fine-overlays-in-one-buffer 'A diff-list region-num)
1784 (ediff-set-fine-overlays-in-one-buffer 'B diff-list region-num)
1785 (if ediff-3way-job
1786 (ediff-set-fine-overlays-in-one-buffer 'C diff-list region-num)
1789 (defsubst ediff-mouse-event-p (event)
1790 (if ediff-xemacs-p
1791 (button-event-p event)
1792 (string-match "mouse" (format "%S" (event-basic-type event)))
1796 (defsubst ediff-key-press-event-p (event)
1797 (if ediff-xemacs-p
1798 (key-press-event-p event)
1799 (or (char-or-string-p event) (symbolp event))))
1801 (defun ediff-event-point (event)
1802 (cond ((ediff-mouse-event-p event)
1803 (if ediff-xemacs-p
1804 (event-point event)
1805 (posn-point (event-start event))))
1806 ((ediff-key-press-event-p event)
1807 (point))
1808 (t (error))))
1810 (defun ediff-event-buffer (event)
1811 (cond ((ediff-mouse-event-p event)
1812 (if ediff-xemacs-p
1813 (event-buffer event)
1814 (window-buffer (posn-window (event-start event)))))
1815 ((ediff-key-press-event-p event)
1816 (current-buffer))
1817 (t (error))))
1820 (defsubst ediff-frame-iconified-p (frame)
1821 (if (and (ediff-window-display-p) (frame-live-p frame))
1822 (if ediff-xemacs-p
1823 (frame-iconified-p frame)
1824 (eq (frame-visible-p frame) 'icon))))
1826 (defsubst ediff-window-visible-p (wind)
1827 ;; under TTY, window-live-p also means window is visible
1828 (and (window-live-p wind)
1829 (or (not (ediff-window-display-p))
1830 (frame-visible-p (window-frame wind)))))
1833 (defsubst ediff-frame-char-width (frame)
1834 (if ediff-xemacs-p
1835 (/ (frame-pixel-width frame) (frame-width frame))
1836 (frame-char-width frame)))
1838 (defun ediff-reset-mouse (&optional frame do-not-grab-mouse)
1839 (or frame (setq frame (selected-frame)))
1840 (if (ediff-window-display-p)
1841 (let ((frame-or-wind frame))
1842 (if ediff-xemacs-p
1843 (setq frame-or-wind (frame-selected-window frame)))
1844 (or do-not-grab-mouse
1845 ;; don't set mouse if the user said to never do this
1846 (not ediff-grab-mouse)
1847 ;; Don't grab on quit, if the user doesn't want to.
1848 ;; If ediff-grab-mouse = t, then mouse won't be grabbed for
1849 ;; sessions that are not part of a group (this is done in
1850 ;; ediff-recenter). The condition below affects only terminating
1851 ;; sessions in session groups (in which case mouse is warped into
1852 ;; a meta buffer).
1853 (and (eq ediff-grab-mouse 'maybe)
1854 (memq this-command '(ediff-quit ediff-update-diffs)))
1855 (set-mouse-position frame-or-wind 1 0))
1858 (defsubst ediff-spy-after-mouse ()
1859 (setq ediff-mouse-pixel-position (mouse-pixel-position)))
1861 ;; It is not easy to find out when the user grabs the mouse, since emacs and
1862 ;; xemacs behave differently when mouse is not in any frame. Also, this is
1863 ;; sensitive to when the user grabbed mouse. Not used for now.
1864 (defun ediff-user-grabbed-mouse ()
1865 (if ediff-mouse-pixel-position
1866 (cond ((not (eq (car ediff-mouse-pixel-position)
1867 (car (mouse-pixel-position)))))
1868 ((and (car (cdr ediff-mouse-pixel-position))
1869 (car (cdr (mouse-pixel-position)))
1870 (cdr (cdr ediff-mouse-pixel-position))
1871 (cdr (cdr (mouse-pixel-position))))
1872 (not (and (< (abs (- (car (cdr ediff-mouse-pixel-position))
1873 (car (cdr (mouse-pixel-position)))))
1874 ediff-mouse-pixel-threshold)
1875 (< (abs (- (cdr (cdr ediff-mouse-pixel-position))
1876 (cdr (cdr (mouse-pixel-position)))))
1877 ediff-mouse-pixel-threshold))))
1878 (t nil))))
1880 (defsubst ediff-frame-char-height (frame)
1881 (if ediff-xemacs-p
1882 (glyph-height ediff-H-glyph (selected-window frame))
1883 (frame-char-height frame)))
1885 ;; Some overlay functions
1887 (defsubst ediff-overlay-start (overl)
1888 (if (ediff-overlayp overl)
1889 (if ediff-emacs-p
1890 (overlay-start overl)
1891 (extent-start-position overl))))
1893 (defsubst ediff-overlay-end (overl)
1894 (if (ediff-overlayp overl)
1895 (if ediff-emacs-p
1896 (overlay-end overl)
1897 (extent-end-position overl))))
1899 (defsubst ediff-empty-overlay-p (overl)
1900 (= (ediff-overlay-start overl) (ediff-overlay-end overl)))
1902 ;; like overlay-buffer in Emacs. In XEmacs, returns nil if the extent is
1903 ;; dead. Otherwise, works like extent-buffer
1904 (defun ediff-overlay-buffer (overl)
1905 (if ediff-emacs-p
1906 (overlay-buffer overl)
1907 (and (extent-live-p overl) (extent-object overl))))
1909 ;; like overlay-get in Emacs. In XEmacs, returns nil if the extent is
1910 ;; dead. Otherwise, like extent-property
1911 (defun ediff-overlay-get (overl property)
1912 (if ediff-emacs-p
1913 (overlay-get overl property)
1914 (and (extent-live-p overl) (extent-property overl property))))
1917 ;; These two functions are here because XEmacs refuses to
1918 ;; handle overlays whose buffers were deleted.
1919 (defun ediff-move-overlay (overlay beg end &optional buffer)
1920 "Calls `move-overlay' in Emacs and `set-extent-endpoints' in Lemacs.
1921 Checks if overlay's buffer exists before actually doing the move."
1922 (let ((buf (and overlay (ediff-overlay-buffer overlay))))
1923 (if (ediff-buffer-live-p buf)
1924 (if ediff-xemacs-p
1925 (set-extent-endpoints overlay beg end)
1926 (move-overlay overlay beg end buffer))
1927 ;; buffer's dead
1928 (if overlay
1929 (ediff-delete-overlay overlay)))))
1931 (defun ediff-overlay-put (overlay prop value)
1932 "Calls `overlay-put' or `set-extent-property' depending on Emacs version.
1933 Checks if overlay's buffer exists."
1934 (if (ediff-buffer-live-p (ediff-overlay-buffer overlay))
1935 (if ediff-xemacs-p
1936 (set-extent-property overlay prop value)
1937 (overlay-put overlay prop value))
1938 (ediff-delete-overlay overlay)))
1940 ;; Some diff region tests
1942 ;; t if diff region is empty.
1943 ;; In case of buffer C, t also if it is not a 3way
1944 ;; comparison job (merging jobs return t as well).
1945 (defun ediff-empty-diff-region-p (n buf-type)
1946 (if (eq buf-type 'C)
1947 (or (not ediff-3way-comparison-job)
1948 (= (ediff-get-diff-posn 'C 'beg n)
1949 (ediff-get-diff-posn 'C 'end n)))
1950 (= (ediff-get-diff-posn buf-type 'beg n)
1951 (ediff-get-diff-posn buf-type 'end n))))
1953 ;; Test if diff region is white space only.
1954 ;; If 2-way job and buf-type = C, then returns t.
1955 (defun ediff-whitespace-diff-region-p (n buf-type)
1956 (or (and (eq buf-type 'C) (not ediff-3way-job))
1957 (ediff-empty-diff-region-p n buf-type)
1958 (let ((beg (ediff-get-diff-posn buf-type 'beg n))
1959 (end (ediff-get-diff-posn buf-type 'end n)))
1960 (ediff-with-current-buffer (ediff-get-buffer buf-type)
1961 (save-excursion
1962 (goto-char beg)
1963 (skip-chars-forward ediff-whitespace)
1964 (>= (point) end))))))
1966 ;; temporarily uses DIR to abbreviate file name
1967 ;; if DIR is nil, use default-directory
1968 (defun ediff-abbreviate-file-name (file &optional dir)
1969 (cond ((stringp dir)
1970 (let ((directory-abbrev-alist (list (cons dir ""))))
1971 (abbreviate-file-name file)))
1972 (ediff-emacs-p (abbreviate-file-name file))
1973 (t ; XEmacs requires addl argument
1974 (abbreviate-file-name file t))))
1976 ;; Takes a directory and returns the parent directory.
1977 ;; does nothing to `/'. If the ARG is a regular file,
1978 ;; strip the file AND the last dir.
1979 (defun ediff-strip-last-dir (dir)
1980 (if (not (stringp dir)) (setq dir default-directory))
1981 (setq dir (expand-file-name dir))
1982 (or (file-directory-p dir) (setq dir (file-name-directory dir)))
1983 (let* ((pos (1- (length dir)))
1984 (last-char (aref dir pos)))
1985 (if (and (> pos 0) (= last-char ?/))
1986 (setq dir (substring dir 0 pos)))
1987 (ediff-abbreviate-file-name (file-name-directory dir))))
1989 (defun ediff-truncate-string-left (str newlen)
1990 ;; leave space for ... on the left
1991 (let ((len (length str))
1992 substr)
1993 (if (<= len newlen)
1995 (setq newlen (max 0 (- newlen 3)))
1996 (setq substr (substring str (max 0 (- len 1 newlen))))
1997 (concat "..." substr))))
1999 (defun ediff-abbrev-jobname (jobname)
2000 (cond ((eq jobname 'ediff-directories)
2001 "Compare two directories")
2002 ((eq jobname 'ediff-files)
2003 "Compare two files")
2004 ((eq jobname 'ediff-buffers)
2005 "Compare two buffers")
2006 ((eq jobname 'ediff-directories3)
2007 "Compare three directories")
2008 ((eq jobname 'ediff-files3)
2009 "Compare three files")
2010 ((eq jobname 'ediff-buffers3)
2011 "Compare three buffers")
2012 ((eq jobname 'ediff-revision)
2013 "Compare file with a version")
2014 ((eq jobname 'ediff-directory-revisions)
2015 "Compare dir files with versions")
2016 ((eq jobname 'ediff-merge-directory-revisions)
2017 "Merge dir files with versions")
2018 ((eq jobname 'ediff-merge-directory-revisions-with-ancestor)
2019 "Merge dir versions via ancestors")
2021 (let* ((str (substring (symbol-name jobname) 6))
2022 (len (length str))
2023 (pos 0))
2024 (while (< pos len)
2025 (if (= pos 0)
2026 (aset str pos (upcase (aref str pos))))
2027 (if (= (aref str pos) ?-)
2028 (aset str pos ?\ ))
2029 (setq pos (1+ pos)))
2030 str))))
2034 (defsubst ediff-get-region-contents (n buf-type ctrl-buf &optional start end)
2035 (ediff-with-current-buffer
2036 (ediff-with-current-buffer ctrl-buf (ediff-get-buffer buf-type))
2037 (buffer-substring
2038 (or start (ediff-get-diff-posn buf-type 'beg n ctrl-buf))
2039 (or end (ediff-get-diff-posn buf-type 'end n ctrl-buf)))))
2041 ;; If ediff modified mode line, strip the modification
2042 (defsubst ediff-strip-mode-line-format ()
2043 (if (member (car mode-line-format) '(" A: " " B: " " C: " " Ancestor: "))
2044 (setq mode-line-format (nth 2 mode-line-format))))
2046 ;; Verify that we have a difference selected.
2047 (defsubst ediff-valid-difference-p (&optional n)
2048 (or n (setq n ediff-current-difference))
2049 (and (>= n 0) (< n ediff-number-of-differences)))
2051 (defsubst ediff-show-all-diffs (n)
2052 "Don't skip difference regions."
2053 nil)
2055 (defsubst Xor (a b)
2056 (or (and a (not b)) (and (not a) b)))
2058 (defsubst ediff-message-if-verbose (string &rest args)
2059 (if ediff-verbose-p
2060 (apply 'message string args)))
2062 (defun ediff-file-attributes (filename attr-number)
2063 (if (ediff-file-remote-p filename)
2065 (nth attr-number (file-attributes filename))))
2067 (defsubst ediff-file-size (filename)
2068 (ediff-file-attributes filename 7))
2069 (defsubst ediff-file-modtime (filename)
2070 (ediff-file-attributes filename 5))
2073 (defun ediff-convert-standard-filename (fname)
2074 (if (fboundp 'convert-standard-filename)
2075 (convert-standard-filename fname)
2076 fname))
2079 ;;; Local Variables:
2080 ;;; eval: (put 'ediff-defvar-local 'lisp-indent-hook 'defun)
2081 ;;; eval: (put 'ediff-with-current-buffer 'lisp-indent-hook 1)
2082 ;;; eval: (put 'ediff-with-current-buffer 'edebug-form-spec '(form body))
2083 ;;; End:
2085 (provide 'ediff-init)
2088 ;;; ediff-init.el ends here