Switch to recommended form of GPLv3 permissions notice.
[bpt/emacs.git] / lisp / ediff-diff.el
CommitLineData
475f9031 1;;; ediff-diff.el --- diff-related utilities
b578f267 2
0d30b337 3;; Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
409cc4a3 4;; 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
475f9031 5
50a07e18 6;; Author: Michael Kifer <kifer@cs.stonybrook.edu>
475f9031
KH
7
8;; This file is part of GNU Emacs.
9
eb3fa2cf 10;; GNU Emacs is free software: you can redistribute it and/or modify
475f9031 11;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
12;; the Free Software Foundation, either version 3 of the License, or
13;; (at your option) any later version.
475f9031
KH
14
15;; GNU Emacs is distributed in the hope that it will be useful,
16;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18;; GNU General Public License for more details.
19
20;; You should have received a copy of the GNU General Public License
eb3fa2cf 21;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
475f9031 22
3afbc435
PJ
23;;; Commentary:
24
b578f267 25;;; Code:
475f9031 26
ddc90f39 27
2d84cc27
MK
28(provide 'ediff-diff)
29
ddc90f39 30(eval-when-compile
8480ec72 31 (require 'ediff-util))
ddc90f39 32
b578f267 33(require 'ediff-init)
475f9031 34
ddc90f39 35(defgroup ediff-diff nil
3b9ae202 36 "Diff related utilities."
ddc90f39
MK
37 :prefix "ediff-"
38 :group 'ediff)
39
7d027816
MK
40(defcustom ediff-diff-program "diff"
41 "*Program to use for generating the differential of the two files."
42 :type 'string
43 :group 'ediff-diff)
44(defcustom ediff-diff3-program "diff3"
45 "*Program to be used for three-way comparison.
46Must produce output compatible with Unix's diff3 program."
47 :type 'string
48 :group 'ediff-diff)
49
513bea45 50
7d027816 51;; The following functions must precede all defcustom-defined variables.
4ae69eac 52
ec6aebe8
MK
53(fset 'ediff-set-actual-diff-options '(lambda () nil))
54
ddc90f39 55(defcustom ediff-shell
475f9031 56 (cond ((eq system-type 'emx) "cmd") ; OS/2
bbe6126c
MK
57 ((memq system-type '(ms-dos windows-nt windows-95))
58 shell-file-name) ; no standard name on MS-DOS
475f9031
KH
59 ((memq system-type '(vax-vms axp-vms)) "*dcl*") ; VMS
60 (t "sh")) ; UNIX
50a07e18
MK
61 "*The shell used to run diff and patch.
62If user's .profile or .cshrc files are set up correctly, any shell
63will do. However, some people set $prompt or other things
64incorrectly, which leads to undesirable output messages. These may
65cause Ediff to fail. In such a case, set `ediff-shell' to a shell that
66you are not using or, better, fix your shell's startup file."
ddc90f39
MK
67 :type 'string
68 :group 'ediff-diff)
475f9031 69
328b4b70
MK
70(defcustom ediff-cmp-program "cmp"
71 "*Utility to use to determine if two files are identical.
72It must return code 0, if its arguments are identical files."
73 :type 'string
74 :group 'ediff-diff)
475f9031 75
3af0304a 76(defcustom ediff-cmp-options nil
ff4968b6
RS
77 "*Options to pass to `ediff-cmp-program'.
78If GNU diff is used as `ediff-cmp-program', then the most useful options
50a07e18 79are `-I REGEXP', to ignore changes whose lines match the REGEXP."
3af0304a
MK
80 :type '(repeat string)
81 :group 'ediff-diff)
82
33468a59
MK
83(defun ediff-set-diff-options (symbol value)
84 (set symbol value)
85 (ediff-set-actual-diff-options))
86
87(defcustom ediff-diff-options
88 (if (memq system-type '(ms-dos windows-nt windows-95)) "--binary" "")
71296446 89 "*Options to pass to `ediff-diff-program'.
09fd8197 90If Unix diff is used as `ediff-diff-program',
c6a85d16
MK
91then a useful option is `-w', to ignore space.
92Options `-c', `-u', and `-i' are not allowed. Case sensitivity can be
93toggled interactively using \\[ediff-toggle-ignore-case].
94
33468a59
MK
95Do not remove the default options. If you need to change this variable, add new
96options after the default ones.
97
c6a85d16 98This variable is not for customizing the look of the differences produced by
36ba07ae 99the command \\[ediff-show-diff-output]. Use the variable
c6a85d16 100`ediff-custom-diff-options' for that."
33468a59 101 :set 'ediff-set-diff-options
ddc90f39
MK
102 :type 'string
103 :group 'ediff-diff)
475f9031 104
b6178721
MK
105(ediff-defvar-local ediff-ignore-case nil
106 "*If t, skip over difference regions that differ only in letter case.
107This variable can be set either in .emacs or toggled interactively.
108Use `setq-default' if setting it in .emacs")
109
110(defcustom ediff-ignore-case-option "-i"
111 "*Option that causes the diff program to ignore case of letters."
112 :type 'string
113 :group 'ediff-diff)
114
115(defcustom ediff-ignore-case-option3 ""
116 "*Option that causes the diff3 program to ignore case of letters.
117GNU diff3 doesn't have such an option."
118 :type 'string
119 :group 'ediff-diff)
120
121;; the actual options used in comparison
ec6aebe8 122(ediff-defvar-local ediff-actual-diff-options ediff-diff-options "")
b6178721 123
ddc90f39 124(defcustom ediff-custom-diff-program ediff-diff-program
475f9031 125 "*Program to use for generating custom diff output for saving it in a file.
ddc90f39
MK
126This output is not used by Ediff internally."
127 :type 'string
128 :group 'ediff-diff)
129(defcustom ediff-custom-diff-options "-c"
130 "*Options to pass to `ediff-custom-diff-program'."
131 :type 'string
132 :group 'ediff-diff)
475f9031
KH
133
134;;; Support for diff3
135
4960e757 136(defvar ediff-match-diff3-line "^====\\(.?\\)\C-m?$"
475f9031 137 "Pattern to match lines produced by diff3 that describe differences.")
50a07e18 138(defcustom ediff-diff3-options ""
ddc90f39 139 "*Options to pass to `ediff-diff3-program'."
33468a59 140 :set 'ediff-set-diff-options
ddc90f39
MK
141 :type 'string
142 :group 'ediff-diff)
b6178721
MK
143
144;; the actual options used in comparison
ec6aebe8 145(ediff-defvar-local ediff-actual-diff3-options ediff-diff3-options "")
b6178721 146
ddc90f39 147(defcustom ediff-diff3-ok-lines-regexp
bbe6126c 148 "^\\([1-3]:\\|====\\| \\|.*Warning *:\\|.*No newline\\|.*missing newline\\|^\C-m$\\)"
475f9031 149 "*Regexp that matches normal output lines from `ediff-diff3-program'.
ddc90f39
MK
150Lines that do not match are assumed to be error messages."
151 :type 'regexp
152 :group 'ediff-diff)
475f9031
KH
153
154;; keeps the status of the current diff in 3-way jobs.
155;; the status can be =diff(A), =diff(B), or =diff(A+B)
156(ediff-defvar-local ediff-diff-status "" "")
157
71296446 158
50a07e18 159;;; Fine differences
475f9031 160
4ae69eac 161(ediff-defvar-local ediff-auto-refine (if (ediff-has-face-support-p) 'on 'nix)
475f9031
KH
162 "If `on', Ediff auto-highlights fine diffs for the current diff region.
163If `off', auto-highlighting is not used. If `nix', no fine diffs are shown
164at all, unless the user force-refines the region by hitting `*'.
165
166This variable can be set either in .emacs or toggled interactively.
167Use `setq-default' if setting it in .emacs")
168
169(ediff-defvar-local ediff-ignore-similar-regions nil
170 "*If t, skip over difference regions that differ only in the white space and line breaks.
171This variable can be set either in .emacs or toggled interactively.
172Use `setq-default' if setting it in .emacs")
173
b6178721 174(ediff-defvar-local ediff-auto-refine-limit 14000
bbe6126c 175 "*Auto-refine only the regions of this size \(in bytes\) or less.")
71296446 176
475f9031
KH
177;;; General
178
50a07e18 179(defvar ediff-diff-ok-lines-regexp
c004db97
MK
180 (concat
181 "^\\("
182 "[0-9,]+[acd][0-9,]+\C-m?$"
183 "\\|[<>] "
184 "\\|---"
185 "\\|.*Warning *:"
186 "\\|.*No +newline"
187 "\\|.*missing +newline"
188 "\\|^\C-m?$"
189 "\\)")
475f9031
KH
190 "Regexp that matches normal output lines from `ediff-diff-program'.
191This is mostly lifted from Emerge, except that Ediff also considers
192warnings and `Missing newline'-type messages to be normal output.
193Lines that do not match are assumed to be error messages.")
194
c004db97
MK
195(defvar ediff-match-diff-line
196 (let ((x "\\([0-9]+\\)\\(\\|,\\([0-9]+\\)\\)"))
197 (concat "^" x "\\([acd]\\)" x "\C-m?$"))
475f9031
KH
198 "Pattern to match lines produced by diff that describe differences.")
199
200(ediff-defvar-local ediff-setup-diff-regions-function nil
201 "value is a function symbol depending on the kind of job is to be done.
202For 2-way jobs and for ediff-merge, it should be `ediff-setup-diff-regions'.
203For jobs requiring diff3, it should be `ediff-setup-diff-regions3'.
204
205The function should take three mandatory arguments, file-A, file-B, and
206file-C. It may ignore file C for diff2 jobs. It should also take
207one optional arguments, diff-number to refine.")
208
71296446 209
475f9031
KH
210;;; Functions
211
212;; Generate the difference vector and overlays for the two files
213;; With optional arg REG-TO-REFINE, refine this region.
214;; File-C argument is not used here. It is there just because
215;; ediff-setup-diff-regions is called via a funcall to
216;; ediff-setup-diff-regions-function, which can also have the value
217;; ediff-setup-diff-regions3, which takes 4 arguments.
218(defun ediff-setup-diff-regions (file-A file-B file-C)
c6a85d16
MK
219 ;; looking for '-c', '-i', '-u', or 'c', 'i', 'u' among clustered non-long options
220 (if (string-match "^-[ciu]\\| -[ciu]\\|\\(^\\| \\)-[^- ]+[ciu]"
608c89a9 221 ediff-diff-options)
c6a85d16 222 (error "Options `-c', `-u', and `-i' are not allowed in `ediff-diff-options'"))
71296446 223
bbe6126c 224 ;; create, if it doesn't exist
475f9031
KH
225 (or (ediff-buffer-live-p ediff-diff-buffer)
226 (setq ediff-diff-buffer
227 (get-buffer-create (ediff-unique-buffer-name "*ediff-diff" "*"))))
bbe6126c 228 (ediff-make-diff2-buffer ediff-diff-buffer file-A file-B)
475f9031 229 (ediff-prepare-error-list ediff-diff-ok-lines-regexp ediff-diff-buffer)
475f9031
KH
230 (ediff-convert-diffs-to-overlays
231 (ediff-extract-diffs
4ae69eac 232 ediff-diff-buffer ediff-word-mode ediff-narrow-bounds)))
bbe6126c 233
52fa07ba
MK
234;; Run the diff program on FILE1 and FILE2 and put the output in DIFF-BUFFER
235;; Return the size of DIFF-BUFFER
513bea45 236;; The return code isn't used in the program at present.
bbe6126c 237(defun ediff-make-diff2-buffer (diff-buffer file1 file2)
92c51e07
MK
238 (let ((file1-size (ediff-file-size file1))
239 (file2-size (ediff-file-size file2)))
240 (cond ((not (numberp file1-size))
241 (message "Can't find file: %s"
242 (ediff-abbreviate-file-name file1))
243 (sit-for 2)
244 ;; 1 is an error exit code
245 1)
246 ((not (numberp file2-size))
247 (message "Can't find file: %s"
248 (ediff-abbreviate-file-name file2))
249 (sit-for 2)
250 ;; 1 is an error exit code
251 1)
92c51e07
MK
252 (t (message "Computing differences between %s and %s ..."
253 (file-name-nondirectory file1)
254 (file-name-nondirectory file2))
255 ;; this erases the diff buffer automatically
256 (ediff-exec-process ediff-diff-program
257 diff-buffer
258 'synchronize
b6178721 259 ediff-actual-diff-options file1 file2)
92c51e07 260 (message "")
e756eb9f 261 (ediff-with-current-buffer diff-buffer
92c51e07 262 (buffer-size))))))
bbe6126c 263
71296446
JB
264
265
475f9031
KH
266;; If file-A/B/C is nil, do 2-way comparison with the non-nil buffers
267;; This function works for diff3 and diff2 jobs
268(defun ediff-setup-fine-diff-regions (file-A file-B file-C reg-num)
269 (or (ediff-buffer-live-p ediff-fine-diff-buffer)
270 (setq ediff-fine-diff-buffer
271 (get-buffer-create
272 (ediff-unique-buffer-name "*ediff-fine-diff" "*"))))
71296446 273
ab8a391e 274 (let (diff3-job diff-program diff-options ok-regexp diff-list)
475f9031
KH
275 (setq diff3-job ediff-3way-job
276 diff-program (if diff3-job ediff-diff3-program ediff-diff-program)
b6178721
MK
277 diff-options (if diff3-job
278 ediff-actual-diff3-options
279 ediff-actual-diff-options)
475f9031
KH
280 ok-regexp (if diff3-job
281 ediff-diff3-ok-lines-regexp
282 ediff-diff-ok-lines-regexp))
71296446 283
4ad42cb5
MK
284 (ediff-message-if-verbose "Refining difference region %d ..." (1+ reg-num))
285 (ediff-exec-process diff-program ediff-fine-diff-buffer 'synchronize
ab8a391e 286 diff-options
4ad42cb5
MK
287 ;; The shuffle below is because we can compare 3-way
288 ;; or in several 2-way fashions, like fA fC, fA fB,
289 ;; or fB fC.
290 (if file-A file-A file-B)
291 (if file-B file-B file-A)
292 (if diff3-job
293 (if file-C file-C file-B))
294 ) ; exec process
71296446 295
475f9031 296 (ediff-prepare-error-list ok-regexp ediff-fine-diff-buffer)
4ae69eac
MK
297 (ediff-message-if-verbose
298 "")
4ad42cb5 299 ;; "Refining difference region %d ... done" (1+ reg-num))
71296446 300
475f9031
KH
301 (setq diff-list
302 (if diff3-job
303 (ediff-extract-diffs3
304 ediff-fine-diff-buffer '3way-comparison 'word-mode)
305 (ediff-extract-diffs ediff-fine-diff-buffer 'word-mode)))
306 ;; fixup diff-list
307 (if diff3-job
308 (cond ((not file-A)
36ba07ae
JB
309 (mapc (lambda (elt)
310 (aset elt 0 nil)
311 (aset elt 1 nil))
312 (cdr diff-list)))
475f9031 313 ((not file-B)
36ba07ae
JB
314 (mapc (lambda (elt)
315 (aset elt 2 nil)
316 (aset elt 3 nil))
317 (cdr diff-list)))
475f9031 318 ((not file-C)
36ba07ae
JB
319 (mapc (lambda (elt)
320 (aset elt 4 nil)
321 (aset elt 5 nil))
322 (cdr diff-list)))
475f9031 323 ))
71296446 324
475f9031
KH
325 (ediff-convert-fine-diffs-to-overlays diff-list reg-num)
326 ))
71296446
JB
327
328
475f9031 329(defun ediff-prepare-error-list (ok-regexp diff-buff)
4ad42cb5
MK
330 (or (ediff-buffer-live-p ediff-error-buffer)
331 (setq ediff-error-buffer
332 (get-buffer-create (ediff-unique-buffer-name
333 "*ediff-errors" "*"))))
e756eb9f 334 (ediff-with-current-buffer ediff-error-buffer
e392d1cc 335 (setq buffer-undo-list t)
4ad42cb5 336 (erase-buffer)
e756eb9f 337 (insert (ediff-with-current-buffer diff-buff (buffer-string)))
4ad42cb5
MK
338 (goto-char (point-min))
339 (delete-matching-lines ok-regexp)
340 (if (memq system-type '(vax-vms axp-vms))
341 (delete-matching-lines "^$")))
342 ;; If diff reports errors, show them then quit.
e756eb9f 343 (if (/= 0 (ediff-with-current-buffer ediff-error-buffer (buffer-size)))
4ad42cb5
MK
344 (let ((ctl-buf ediff-control-buffer)
345 (error-buf ediff-error-buffer))
346 (ediff-skip-unsuitable-frames)
347 (switch-to-buffer error-buf)
348 (ediff-kill-buffer-carefully ctl-buf)
50a07e18 349 (error "Errors in diff output. Diff output is in %S" diff-buff))))
475f9031
KH
350
351;; BOUNDS specifies visibility bounds to use.
352;; WORD-MODE tells whether we are in the word-mode or not.
353;; If WORD-MODE, also construct vector of diffs using word numbers.
354;; Else, use point values.
355;; This function handles diff-2 jobs including the case of
356;; merging buffers and files without ancestor.
357(defun ediff-extract-diffs (diff-buffer word-mode &optional bounds)
358 (let ((A-buffer ediff-buffer-A)
359 (B-buffer ediff-buffer-B)
360 (C-buffer ediff-buffer-C)
361 (a-prev 1) ; this is needed to set the first diff line correctly
b6178721 362 (a-prev-pt nil)
475f9031 363 (b-prev 1)
b6178721 364 (b-prev-pt nil)
475f9031 365 (c-prev 1)
b6178721 366 (c-prev-pt nil)
475f9031
KH
367 diff-list shift-A shift-B
368 )
09fd8197 369
475f9031
KH
370 ;; diff list contains word numbers, unless changed later
371 (setq diff-list (cons (if word-mode 'words 'points)
372 diff-list))
373 ;; we don't use visibility bounds for buffer C when merging
374 (if bounds
375 (setq shift-A
376 (ediff-overlay-start
377 (ediff-get-value-according-to-buffer-type 'A bounds))
50a07e18 378 shift-B
475f9031
KH
379 (ediff-overlay-start
380 (ediff-get-value-according-to-buffer-type 'B bounds))))
09fd8197 381
475f9031 382 ;; reset point in buffers A/B/C
e756eb9f 383 (ediff-with-current-buffer A-buffer
475f9031 384 (goto-char (if shift-A shift-A (point-min))))
e756eb9f 385 (ediff-with-current-buffer B-buffer
475f9031
KH
386 (goto-char (if shift-B shift-B (point-min))))
387 (if (ediff-buffer-live-p C-buffer)
e756eb9f 388 (ediff-with-current-buffer C-buffer
475f9031 389 (goto-char (point-min))))
71296446 390
e756eb9f 391 (ediff-with-current-buffer diff-buffer
475f9031
KH
392 (goto-char (point-min))
393 (while (re-search-forward ediff-match-diff-line nil t)
027a4b6b
JB
394 (let* ((a-begin (string-to-number (buffer-substring (match-beginning 1)
395 (match-end 1))))
475f9031
KH
396 (a-end (let ((b (match-beginning 3))
397 (e (match-end 3)))
398 (if b
027a4b6b 399 (string-to-number (buffer-substring b e))
475f9031
KH
400 a-begin)))
401 (diff-type (buffer-substring (match-beginning 4) (match-end 4)))
027a4b6b
JB
402 (b-begin (string-to-number (buffer-substring (match-beginning 5)
403 (match-end 5))))
475f9031
KH
404 (b-end (let ((b (match-beginning 7))
405 (e (match-end 7)))
406 (if b
027a4b6b 407 (string-to-number (buffer-substring b e))
475f9031
KH
408 b-begin)))
409 a-begin-pt a-end-pt b-begin-pt b-end-pt
410 c-begin c-end c-begin-pt c-end-pt)
411 ;; fix the beginning and end numbers, because diff is somewhat
412 ;; strange about how it numbers lines
413 (if (string-equal diff-type "a")
414 (setq b-end (1+ b-end)
415 a-begin (1+ a-begin)
416 a-end a-begin)
417 (if (string-equal diff-type "d")
418 (setq a-end (1+ a-end)
419 b-begin (1+ b-begin)
420 b-end b-begin)
421 ;; (string-equal diff-type "c")
422 (setq a-end (1+ a-end)
423 b-end (1+ b-end))))
71296446 424
475f9031
KH
425 (if (eq ediff-default-variant 'default-B)
426 (setq c-begin b-begin
427 c-end b-end)
428 (setq c-begin a-begin
429 c-end a-end))
71296446 430
475f9031
KH
431 ;; compute main diff vector
432 (if word-mode
433 ;; make diff-list contain word numbers
50a07e18 434 (setq diff-list
475f9031
KH
435 (nconc diff-list
436 (list
437 (if (ediff-buffer-live-p C-buffer)
438 (vector (- a-begin a-prev) (- a-end a-begin)
439 (- b-begin b-prev) (- b-end b-begin)
440 (- c-begin c-prev) (- c-end c-begin)
4ad42cb5
MK
441 nil nil ; dummy ancestor
442 nil ; state of diff
443 nil ; state of merge
444 nil ; state of ancestor
475f9031
KH
445 )
446 (vector (- a-begin a-prev) (- a-end a-begin)
447 (- b-begin b-prev) (- b-end b-begin)
448 nil nil ; dummy buf C
4ad42cb5 449 nil nil ; dummy ancestor
475f9031
KH
450 nil ; state of diff
451 nil ; state of merge
4ad42cb5 452 nil ; state of ancestor
475f9031
KH
453 ))
454 ))
455 a-prev a-end
456 b-prev b-end
457 c-prev c-end)
458 ;; else convert lines to points
e756eb9f 459 (ediff-with-current-buffer A-buffer
8ea74b0e
MK
460 (let ((longlines-mode-val
461 (if (and (boundp 'longlines-mode) longlines-mode) 1 0)))
462 ;; we must disable and then restore longlines-mode
463 (if (eq longlines-mode-val 1)
464 (longlines-mode 0))
b6178721 465 (goto-char (or a-prev-pt shift-A (point-min)))
8ea74b0e
MK
466 (forward-line (- a-begin a-prev))
467 (setq a-begin-pt (point))
468 (forward-line (- a-end a-begin))
469 (setq a-end-pt (point)
b6178721
MK
470 a-prev a-end
471 a-prev-pt a-end-pt)
8ea74b0e
MK
472 (if (eq longlines-mode-val 1)
473 (longlines-mode longlines-mode-val))
474 ))
e756eb9f 475 (ediff-with-current-buffer B-buffer
8ea74b0e
MK
476 (let ((longlines-mode-val
477 (if (and (boundp 'longlines-mode) longlines-mode) 1 0)))
478 (if (eq longlines-mode-val 1)
479 (longlines-mode 0))
b6178721 480 (goto-char (or b-prev-pt shift-B (point-min)))
8ea74b0e
MK
481 (forward-line (- b-begin b-prev))
482 (setq b-begin-pt (point))
483 (forward-line (- b-end b-begin))
484 (setq b-end-pt (point)
b6178721
MK
485 b-prev b-end
486 b-prev-pt b-end-pt)
8ea74b0e
MK
487 (if (eq longlines-mode-val 1)
488 (longlines-mode longlines-mode-val))
489 ))
475f9031 490 (if (ediff-buffer-live-p C-buffer)
e756eb9f 491 (ediff-with-current-buffer C-buffer
8ea74b0e
MK
492 (let ((longlines-mode-val
493 (if (and (boundp 'longlines-mode) longlines-mode) 1 0)))
494 (if (eq longlines-mode-val 1)
495 (longlines-mode 0))
b6178721 496 (goto-char (or c-prev-pt (point-min)))
8ea74b0e
MK
497 (forward-line (- c-begin c-prev))
498 (setq c-begin-pt (point))
499 (forward-line (- c-end c-begin))
500 (setq c-end-pt (point)
b6178721
MK
501 c-prev c-end
502 c-prev-pt c-end-pt)
8ea74b0e
MK
503 (if (eq longlines-mode-val 1)
504 (longlines-mode longlines-mode-val))
505 )))
50a07e18 506 (setq diff-list
475f9031
KH
507 (nconc
508 diff-list
509 (list
510 (if (ediff-buffer-live-p C-buffer)
511 (vector
512 a-begin-pt a-end-pt b-begin-pt b-end-pt
513 c-begin-pt c-end-pt
4ad42cb5 514 nil nil ; dummy ancestor
475f9031
KH
515 ;; state of diff
516 ;; shows which buff is different from the other two
517 (if (eq ediff-default-variant 'default-B) 'A 'B)
4ad42cb5
MK
518 ediff-default-variant ; state of merge
519 nil ; state of ancestor
475f9031 520 )
4ad42cb5
MK
521 (vector a-begin-pt a-end-pt
522 b-begin-pt b-end-pt
523 nil nil ; dummy buf C
524 nil nil ; dummy ancestor
525 nil nil ; dummy state of diff & merge
526 nil ; dummy state of ancestor
50a07e18 527 )))
475f9031 528 )))
71296446 529
e756eb9f 530 ))) ; end ediff-with-current-buffer
475f9031
KH
531 diff-list
532 ))
71296446 533
475f9031 534
4ad42cb5
MK
535(defun ediff-convert-diffs-to-overlays (diff-list)
536 (ediff-set-diff-overlays-in-one-buffer 'A diff-list)
537 (ediff-set-diff-overlays-in-one-buffer 'B diff-list)
538 (if ediff-3way-job
539 (ediff-set-diff-overlays-in-one-buffer 'C diff-list))
540 (if ediff-merge-with-ancestor-job
541 (ediff-set-diff-overlays-in-one-buffer 'Ancestor diff-list))
542 ;; set up vector showing the status of merge regions
543 (if ediff-merge-job
544 (setq ediff-state-of-merge
545 (vconcat
3af0304a
MK
546 (mapcar (lambda (elt)
547 (let ((state-of-merge (aref elt 9))
548 (state-of-ancestor (aref elt 10)))
549 (vector
550 ;; state of merge: prefers/default-A/B or combined
551 (if state-of-merge (format "%S" state-of-merge))
552 ;; whether the ancestor region is empty
553 state-of-ancestor)))
4ad42cb5
MK
554 ;; the first elt designates type of list
555 (cdr diff-list))
556 )))
557 (message "Processing difference regions ... done"))
558
71296446 559
475f9031
KH
560(defun ediff-set-diff-overlays-in-one-buffer (buf-type diff-list)
561 (let* ((current-diff -1)
562 (buff (ediff-get-buffer buf-type))
17561e4f 563 (ctl-buf ediff-control-buffer)
475f9031
KH
564 ;; ediff-extract-diffs puts the type of diff-list as the first elt
565 ;; of this list. The type is either 'points or 'words
566 (diff-list-type (car diff-list))
567 (shift (ediff-overlay-start
568 (ediff-get-value-according-to-buffer-type
569 buf-type ediff-narrow-bounds)))
570 (limit (ediff-overlay-end
50a07e18 571 (ediff-get-value-according-to-buffer-type
475f9031
KH
572 buf-type ediff-narrow-bounds)))
573 diff-overlay-list list-element total-diffs
4ad42cb5 574 begin end pt-saved overlay state-of-diff)
475f9031
KH
575
576 (setq diff-list (cdr diff-list)) ; discard diff list type
577 (setq total-diffs (length diff-list))
71296446 578
475f9031 579 ;; shift, if necessary
e756eb9f 580 (ediff-with-current-buffer buff (setq pt-saved shift))
71296446 581
475f9031
KH
582 (while diff-list
583 (setq current-diff (1+ current-diff)
584 list-element (car diff-list)
585 begin (aref list-element (cond ((eq buf-type 'A) 0)
586 ((eq buf-type 'B) 2)
4ad42cb5
MK
587 ((eq buf-type 'C) 4)
588 (t 6))) ; Ancestor
475f9031
KH
589 end (aref list-element (cond ((eq buf-type 'A) 1)
590 ((eq buf-type 'B) 3)
4ad42cb5
MK
591 ((eq buf-type 'C) 5)
592 (t 7))) ; Ancestor
593 state-of-diff (aref list-element 8)
594 )
71296446 595
475f9031 596 (cond ((and (not (eq buf-type state-of-diff))
4ad42cb5 597 (not (eq buf-type 'Ancestor))
475f9031
KH
598 (memq state-of-diff '(A B C)))
599 (setq state-of-diff
600 (car (delq buf-type (delq state-of-diff (list 'A 'B 'C)))))
601 (setq state-of-diff (format "=diff(%S)" state-of-diff))
475f9031 602 )
4ad42cb5 603 (t (setq state-of-diff nil)))
71296446 604
475f9031
KH
605 ;; Put overlays at appropriate places in buffer
606 ;; convert word numbers to points, if necessary
607 (if (eq diff-list-type 'words)
608 (progn
e756eb9f 609 (ediff-with-current-buffer buff (goto-char pt-saved))
17561e4f
MK
610 (ediff-with-current-buffer ctl-buf
611 (setq begin (ediff-goto-word (1+ begin) buff)
612 end (ediff-goto-word end buff 'end)))
475f9031
KH
613 (if (> end limit) (setq end limit))
614 (if (> begin end) (setq begin end))
e756eb9f 615 (setq pt-saved (ediff-with-current-buffer buff (point)))))
475f9031 616 (setq overlay (ediff-make-bullet-proof-overlay begin end buff))
71296446 617
475f9031
KH
618 (ediff-overlay-put overlay 'priority ediff-shadow-overlay-priority)
619 (ediff-overlay-put overlay 'ediff-diff-num current-diff)
4ae69eac 620 (if (and (ediff-has-face-support-p)
4ad42cb5
MK
621 ediff-use-faces ediff-highlight-all-diffs)
622 (ediff-set-overlay-face
623 overlay (ediff-background-face buf-type current-diff)))
475f9031
KH
624
625 (if (= 0 (mod current-diff 10))
626 (message "Buffer %S: Processing difference region %d of %d"
627 buf-type current-diff total-diffs))
3af0304a
MK
628 ;; Record all overlays for this difference.
629 ;; The 2-d elt, nil, is a place holder for the fine diff vector.
630 ;; The 3-d elt, nil, is a place holder for no-fine-diffs flag.
631 ;; The 4-th elt says which diff region is different from the other two
632 ;; (3-way jobs only).
475f9031
KH
633 (setq diff-overlay-list
634 (nconc
635 diff-overlay-list
4ad42cb5 636 (list (vector overlay nil nil state-of-diff)))
475f9031
KH
637 diff-list
638 (cdr diff-list))
639 ) ; while
71296446 640
e756eb9f 641 (set (ediff-get-symbol-from-alist buf-type ediff-difference-vector-alist)
4ad42cb5 642 (vconcat diff-overlay-list))
475f9031 643 ))
4ad42cb5 644
475f9031
KH
645;; `n' is the diff region to work on. Default is ediff-current-difference.
646;; if `flag' is 'noforce then make fine-diffs only if this region's fine
647;; diffs have not been computed before.
648;; if `flag' is 'skip then don't compute fine diffs for this region.
50a07e18 649(defun ediff-make-fine-diffs (&optional n flag)
475f9031 650 (or n (setq n ediff-current-difference))
71296446 651
475f9031 652 (if (< ediff-number-of-differences 1)
bbe6126c 653 (error ediff-NO-DIFFERENCES))
71296446 654
475f9031
KH
655 (if ediff-word-mode
656 (setq flag 'skip
657 ediff-auto-refine 'nix))
71296446 658
475f9031
KH
659 (or (< n 0)
660 (>= n ediff-number-of-differences)
661 ;; n is within the range
662 (let ((tmp-buffer (get-buffer-create ediff-tmp-buffer))
663 (file-A ediff-temp-file-A)
664 (file-B ediff-temp-file-B)
665 (file-C ediff-temp-file-C)
666 (empty-A (ediff-empty-diff-region-p n 'A))
667 (empty-B (ediff-empty-diff-region-p n 'B))
668 (empty-C (ediff-empty-diff-region-p n 'C))
669 (whitespace-A (ediff-whitespace-diff-region-p n 'A))
670 (whitespace-B (ediff-whitespace-diff-region-p n 'B))
671 (whitespace-C (ediff-whitespace-diff-region-p n 'C))
672 cumulative-fine-diff-length)
71296446 673
ddc90f39 674 (cond ;; If one of the regions is empty (or 2 in 3way comparison)
4ad42cb5
MK
675 ;; then don't refine.
676 ;; If the region happens to be entirely whitespace or empty then
677 ;; mark as such.
475f9031
KH
678 ((> (length (delq nil (list empty-A empty-B empty-C))) 1)
679 (if (and (ediff-looks-like-combined-merge n)
680 ediff-merge-job)
681 (ediff-set-fine-overlays-in-one-buffer 'C nil n))
4ad42cb5
MK
682 (if ediff-3way-comparison-job
683 (ediff-message-if-verbose
684 "Region %d is empty in all buffers but %S"
50a07e18 685 (1+ n)
4ad42cb5
MK
686 (cond ((not empty-A) 'A)
687 ((not empty-B) 'B)
688 ((not empty-C) 'C)))
689 (ediff-message-if-verbose
690 "Region %d in buffer %S is empty"
50a07e18 691 (1+ n)
4ad42cb5
MK
692 (cond (empty-A 'A)
693 (empty-B 'B)
694 (empty-C 'C)))
695 )
bbe6126c 696 ;; if all regions happen to be whitespace
4ad42cb5 697 (if (and whitespace-A whitespace-B whitespace-C)
bbe6126c 698 ;; mark as space only
475f9031 699 (ediff-mark-diff-as-space-only n t)
bbe6126c
MK
700 ;; if some regions are white and others don't, then mark as
701 ;; non-white-space-only
475f9031 702 (ediff-mark-diff-as-space-only n nil)))
ddc90f39
MK
703
704 ;; don't compute fine diffs if diff vector exists
705 ((and (eq flag 'noforce) (ediff-get-fine-diff-vector n 'A))
706 (if (ediff-no-fine-diffs-p n)
707 (message
708 "Only white-space differences in region %d %s"
709 (1+ n)
710 (cond ((eq (ediff-no-fine-diffs-p n) 'A)
711 "in buffers B & C")
712 ((eq (ediff-no-fine-diffs-p n) 'B)
713 "in buffers A & C")
714 ((eq (ediff-no-fine-diffs-p n) 'C)
715 "in buffers A & B")
716 (t "")))))
475f9031
KH
717 ;; don't compute fine diffs for this region
718 ((eq flag 'skip)
719 (or (ediff-get-fine-diff-vector n 'A)
720 (memq ediff-auto-refine '(off nix))
4ad42cb5 721 (ediff-message-if-verbose
3af0304a 722 "Region %d exceeds the auto-refinement limit. Type `%s' to refine"
475f9031 723 (1+ n)
4ad42cb5
MK
724 (substitute-command-keys
725 "\\[ediff-make-or-kill-fine-diffs]")
475f9031
KH
726 )))
727 (t
475f9031
KH
728 ;; recompute fine diffs
729 (ediff-wordify
730 (ediff-get-diff-posn 'A 'beg n)
731 (ediff-get-diff-posn 'A 'end n)
732 ediff-buffer-A
733 tmp-buffer
734 ediff-control-buffer)
4ad42cb5
MK
735 (setq file-A
736 (ediff-make-temp-file tmp-buffer "fineDiffA" file-A))
71296446 737
475f9031
KH
738 (ediff-wordify
739 (ediff-get-diff-posn 'B 'beg n)
740 (ediff-get-diff-posn 'B 'end n)
741 ediff-buffer-B
742 tmp-buffer
743 ediff-control-buffer)
4ad42cb5
MK
744 (setq file-B
745 (ediff-make-temp-file tmp-buffer "fineDiffB" file-B))
71296446 746
475f9031
KH
747 (if ediff-3way-job
748 (progn
749 (ediff-wordify
750 (ediff-get-diff-posn 'C 'beg n)
751 (ediff-get-diff-posn 'C 'end n)
752 ediff-buffer-C
753 tmp-buffer
754 ediff-control-buffer)
4ad42cb5
MK
755 (setq file-C
756 (ediff-make-temp-file
757 tmp-buffer "fineDiffC" file-C))))
71296446 758
475f9031
KH
759 ;; save temp file names.
760 (setq ediff-temp-file-A file-A
761 ediff-temp-file-B file-B
762 ediff-temp-file-C file-C)
71296446 763
475f9031
KH
764 ;; set the new vector of fine diffs, if none exists
765 (cond ((and ediff-3way-job whitespace-A)
766 (ediff-setup-fine-diff-regions nil file-B file-C n))
767 ((and ediff-3way-job whitespace-B)
768 (ediff-setup-fine-diff-regions file-A nil file-C n))
769 ((and ediff-3way-job
bbe6126c
MK
770 ;; In merge-jobs, whitespace-C is t, since
771 ;; ediff-empty-diff-region-p returns t in this case
772 whitespace-C)
475f9031
KH
773 (ediff-setup-fine-diff-regions file-A file-B nil n))
774 (t
775 (ediff-setup-fine-diff-regions file-A file-B file-C n)))
71296446 776
475f9031
KH
777 (setq cumulative-fine-diff-length
778 (+ (length (ediff-get-fine-diff-vector n 'A))
bbe6126c
MK
779 (length (ediff-get-fine-diff-vector n 'B))
780 ;; in merge jobs, the merge buffer is never refined
781 (if (and file-C (not ediff-merge-job))
782 (length (ediff-get-fine-diff-vector n 'C))
783 0)))
71296446 784
475f9031
KH
785 (cond ((or
786 ;; all regions are white space
787 (and whitespace-A whitespace-B whitespace-C)
788 ;; none is white space and no fine diffs detected
789 (and (not whitespace-A)
790 (not whitespace-B)
791 (not (and ediff-3way-job whitespace-C))
792 (eq cumulative-fine-diff-length 0)))
793 (ediff-mark-diff-as-space-only n t)
4ad42cb5 794 (ediff-message-if-verbose
475f9031
KH
795 "Only white-space differences in region %d" (1+ n)))
796 ((eq cumulative-fine-diff-length 0)
4ad42cb5 797 (ediff-message-if-verbose
475f9031
KH
798 "Only white-space differences in region %d %s"
799 (1+ n)
ddc90f39
MK
800 (cond (whitespace-A (ediff-mark-diff-as-space-only n 'A)
801 "in buffers B & C")
802 (whitespace-B (ediff-mark-diff-as-space-only n 'B)
803 "in buffers A & C")
804 (whitespace-C (ediff-mark-diff-as-space-only n 'C)
805 "in buffers A & B"))))
50a07e18 806 (t
475f9031
KH
807 (ediff-mark-diff-as-space-only n nil)))
808 )
809 ) ; end cond
810 (ediff-set-fine-diff-properties n)
811 )))
71296446 812
475f9031
KH
813;; Interface to ediff-make-fine-diffs. Checks for auto-refine limit, etc.
814(defun ediff-install-fine-diff-if-necessary (n)
743a79af
MK
815 (cond ((and (eq ediff-auto-refine 'on)
816 ediff-use-faces
817 (not (eq ediff-highlighting-style 'off))
818 (not (eq ediff-highlighting-style 'ascii)))
475f9031
KH
819 (if (and
820 (> ediff-auto-refine-limit
821 (- (ediff-get-diff-posn 'A 'end n)
822 (ediff-get-diff-posn 'A 'beg n)))
823 (> ediff-auto-refine-limit
824 (- (ediff-get-diff-posn 'B 'end n)
825 (ediff-get-diff-posn 'B 'beg n))))
826 (ediff-make-fine-diffs n 'noforce)
827 (ediff-make-fine-diffs n 'skip)))
71296446 828
4837b516 829 ;; highlight if fine diffs already exist
475f9031
KH
830 ((eq ediff-auto-refine 'off)
831 (ediff-make-fine-diffs n 'skip))))
71296446
JB
832
833
475f9031
KH
834;; if fine diff vector is not set for diff N, then do nothing
835(defun ediff-set-fine-diff-properties (n &optional default)
4ae69eac 836 (or (not (ediff-has-face-support-p))
475f9031
KH
837 (< n 0)
838 (>= n ediff-number-of-differences)
4ae69eac 839 ;; when faces are supported, set faces and priorities of fine overlays
475f9031
KH
840 (progn
841 (ediff-set-fine-diff-properties-in-one-buffer 'A n default)
842 (ediff-set-fine-diff-properties-in-one-buffer 'B n default)
843 (if ediff-3way-job
844 (ediff-set-fine-diff-properties-in-one-buffer 'C n default)))))
71296446 845
475f9031
KH
846(defun ediff-set-fine-diff-properties-in-one-buffer (buf-type
847 n &optional default)
848 (let ((fine-diff-vector (ediff-get-fine-diff-vector n buf-type))
50a07e18 849 (face (if default
475f9031 850 'default
33468a59
MK
851 (ediff-get-symbol-from-alist
852 buf-type ediff-fine-diff-face-alist)
853 ))
475f9031
KH
854 (priority (if default
855 0
856 (1+ (or (ediff-overlay-get
857 (symbol-value
e756eb9f
MK
858 (ediff-get-symbol-from-alist
859 buf-type
860 ediff-current-diff-overlay-alist))
475f9031
KH
861 'priority)
862 0)))))
3af0304a
MK
863 (mapcar (lambda (overl)
864 (ediff-set-overlay-face overl face)
865 (ediff-overlay-put overl 'priority priority))
866 fine-diff-vector)))
71296446 867
086171bf 868;; Set overlays over the regions that denote delimiters
475f9031 869(defun ediff-set-fine-overlays-for-combined-merge (diff-list reg-num)
086171bf
MK
870 (let (overlay overlay-list)
871 (while diff-list
872 (condition-case nil
873 (setq overlay
874 (ediff-make-bullet-proof-overlay
875 (nth 0 diff-list) (nth 1 diff-list) ediff-buffer-C))
876 (error ""))
877 (setq overlay-list (cons overlay overlay-list))
878 (if (> (length diff-list) 1)
879 (setq diff-list (cdr (cdr diff-list)))
880 (error "ediff-set-fine-overlays-for-combined-merge: corrupt list of
881delimiter regions"))
882 )
883 (setq overlay-list (reverse overlay-list))
884 (ediff-set-fine-diff-vector
885 reg-num 'C (apply 'vector overlay-list))
475f9031 886 ))
71296446
JB
887
888
475f9031
KH
889;; Convert diff list to overlays for a given DIFF-REGION
890;; in buffer of type BUF-TYPE
891(defun ediff-set-fine-overlays-in-one-buffer (buf-type diff-list region-num)
892 (let* ((current-diff -1)
893 (reg-start (ediff-get-diff-posn buf-type 'beg region-num))
894 (buff (ediff-get-buffer buf-type))
17561e4f 895 (ctl-buf ediff-control-buffer)
475f9031
KH
896 combined-merge-diff-list
897 diff-overlay-list list-element
898 begin end overlay)
899
900 (ediff-clear-fine-differences-in-one-buffer region-num buf-type)
901 (setq diff-list (cdr diff-list)) ; discard list type (words or points)
e756eb9f 902 (ediff-with-current-buffer buff (goto-char reg-start))
71296446 903
475f9031
KH
904 ;; if it is a combined merge then set overlays in buff C specially
905 (if (and ediff-merge-job (eq buf-type 'C)
906 (setq combined-merge-diff-list
907 (ediff-looks-like-combined-merge region-num)))
908 (ediff-set-fine-overlays-for-combined-merge
909 combined-merge-diff-list region-num)
910 ;; regular fine diff
911 (while diff-list
912 (setq current-diff (1+ current-diff)
913 list-element (car diff-list)
914 begin (aref list-element (cond ((eq buf-type 'A) 0)
915 ((eq buf-type 'B) 2)
916 (t 4))) ; buf C
917 end (aref list-element (cond ((eq buf-type 'A) 1)
918 ((eq buf-type 'B) 3)
919 (t 5)))) ; buf C
920 (if (not (or begin end))
921 () ; skip this diff
922 ;; Put overlays at appropriate places in buffers
923 ;; convert lines to points, if necessary
17561e4f
MK
924 (ediff-with-current-buffer ctl-buf
925 (setq begin (ediff-goto-word (1+ begin) buff)
926 end (ediff-goto-word end buff 'end)))
475f9031
KH
927 (setq overlay (ediff-make-bullet-proof-overlay begin end buff))
928 ;; record all overlays for this difference region
929 (setq diff-overlay-list (nconc diff-overlay-list (list overlay))))
71296446 930
475f9031
KH
931 (setq diff-list (cdr diff-list))
932 ) ; while
933 ;; convert the list of difference information into a vector
934 ;; for fast access
50a07e18 935 (ediff-set-fine-diff-vector
4ad42cb5 936 region-num buf-type (vconcat diff-overlay-list))
475f9031
KH
937 )))
938
939
65efc538 940(defun ediff-convert-fine-diffs-to-overlays (diff-list region-num)
50a07e18
MK
941 (ediff-set-fine-overlays-in-one-buffer 'A diff-list region-num)
942 (ediff-set-fine-overlays-in-one-buffer 'B diff-list region-num)
943 (if ediff-3way-job
944 (ediff-set-fine-overlays-in-one-buffer 'C diff-list region-num)
945 ))
946
947
475f9031
KH
948;; Stolen from emerge.el
949(defun ediff-get-diff3-group (file)
950 ;; This save-excursion allows ediff-get-diff3-group to be called for the
951 ;; various groups of lines (1, 2, 3) in any order, and for the lines to
952 ;; appear in any order. The reason this is necessary is that Gnu diff3
953 ;; can produce the groups in the order 1, 2, 3 or 1, 3, 2.
954 (save-excursion
955 (re-search-forward
4960e757 956 (concat "^" file ":\\([0-9]+\\)\\(,\\([0-9]+\\)\\)?\\([ac]\\)\C-m?$"))
475f9031
KH
957 (beginning-of-line 2)
958 ;; treatment depends on whether it is an "a" group or a "c" group
959 (if (string-equal (buffer-substring (match-beginning 4) (match-end 4)) "c")
960 ;; it is a "c" group
961 (if (match-beginning 2)
962 ;; it has two numbers
027a4b6b 963 (list (string-to-number
475f9031 964 (buffer-substring (match-beginning 1) (match-end 1)))
027a4b6b 965 (1+ (string-to-number
475f9031
KH
966 (buffer-substring (match-beginning 3) (match-end 3)))))
967 ;; it has one number
027a4b6b 968 (let ((x (string-to-number
475f9031
KH
969 (buffer-substring (match-beginning 1) (match-end 1)))))
970 (list x (1+ x))))
971 ;; it is an "a" group
027a4b6b 972 (let ((x (1+ (string-to-number
475f9031
KH
973 (buffer-substring (match-beginning 1) (match-end 1))))))
974 (list x x)))))
975
976
977;; If WORD-MODE, construct vector of diffs using word numbers.
978;; Else, use point values.
979;; WORD-MODE also tells if we are in the word-mode or not.
980;; If THREE-WAY-COMP, then it is a 3-way comparison. Else, it is merging
4ad42cb5
MK
981;; with ancestor, in which case buffer-C contents is identical to buffer-A/B,
982;; contents (unless buffer-A is narrowed) depending on ediff-default-variant's
983;; value.
475f9031
KH
984;; BOUNDS specifies visibility bounds to use.
985(defun ediff-extract-diffs3 (diff-buffer word-mode three-way-comp
986 &optional bounds)
987 (let ((A-buffer ediff-buffer-A)
988 (B-buffer ediff-buffer-B)
989 (C-buffer ediff-buffer-C)
4ad42cb5 990 (anc-buffer ediff-ancestor-buffer)
475f9031 991 (a-prev 1) ; needed to set the first diff line correctly
b6178721 992 (a-prev-pt nil)
475f9031 993 (b-prev 1)
b6178721 994 (b-prev-pt nil)
475f9031 995 (c-prev 1)
b6178721 996 (c-prev-pt nil)
4ad42cb5 997 (anc-prev 1)
475f9031
KH
998 diff-list shift-A shift-B shift-C
999 )
71296446 1000
475f9031
KH
1001 ;; diff list contains word numbers or points, depending on word-mode
1002 (setq diff-list (cons (if word-mode 'words 'points)
1003 diff-list))
1004 (if bounds
1005 (setq shift-A
1006 (ediff-overlay-start
1007 (ediff-get-value-according-to-buffer-type 'A bounds))
50a07e18 1008 shift-B
475f9031
KH
1009 (ediff-overlay-start
1010 (ediff-get-value-according-to-buffer-type 'B bounds))
50a07e18 1011 shift-C
475f9031
KH
1012 (if three-way-comp
1013 (ediff-overlay-start
1014 (ediff-get-value-according-to-buffer-type 'C bounds)))))
71296446 1015
475f9031 1016 ;; reset point in buffers A, B, C
e756eb9f 1017 (ediff-with-current-buffer A-buffer
475f9031 1018 (goto-char (if shift-A shift-A (point-min))))
e756eb9f 1019 (ediff-with-current-buffer B-buffer
475f9031 1020 (goto-char (if shift-B shift-B (point-min))))
4ad42cb5 1021 (if three-way-comp
e756eb9f 1022 (ediff-with-current-buffer C-buffer
4ad42cb5
MK
1023 (goto-char (if shift-C shift-C (point-min)))))
1024 (if (ediff-buffer-live-p anc-buffer)
e756eb9f 1025 (ediff-with-current-buffer anc-buffer
4ad42cb5 1026 (goto-char (point-min))))
71296446 1027
e756eb9f 1028 (ediff-with-current-buffer diff-buffer
475f9031
KH
1029 (goto-char (point-min))
1030 (while (re-search-forward ediff-match-diff3-line nil t)
1031 ;; leave point after matched line
1032 (beginning-of-line 2)
1033 (let ((agreement (buffer-substring (match-beginning 1) (match-end 1))))
bbe6126c 1034 ;; if the files A and B are the same and not 3way-comparison,
475f9031
KH
1035 ;; ignore the difference
1036 (if (or three-way-comp (not (string-equal agreement "3")))
1037 (let* ((a-begin (car (ediff-get-diff3-group "1")))
1038 (a-end (nth 1 (ediff-get-diff3-group "1")))
1039 (b-begin (car (ediff-get-diff3-group "2")))
1040 (b-end (nth 1 (ediff-get-diff3-group "2")))
4ad42cb5
MK
1041 (c-or-anc-begin (car (ediff-get-diff3-group "3")))
1042 (c-or-anc-end (nth 1 (ediff-get-diff3-group "3")))
475f9031
KH
1043 (state-of-merge
1044 (cond ((string-equal agreement "1") 'prefer-A)
1045 ((string-equal agreement "2") 'prefer-B)
1046 (t ediff-default-variant)))
1047 (state-of-diff-merge
1048 (if (memq state-of-merge '(default-A prefer-A)) 'B 'A))
1049 (state-of-diff-comparison
1050 (cond ((string-equal agreement "1") 'A)
1051 ((string-equal agreement "2") 'B)
1052 ((string-equal agreement "3") 'C)))
4ad42cb5 1053 state-of-ancestor
475f9031
KH
1054 c-begin c-end
1055 a-begin-pt a-end-pt
4ad42cb5
MK
1056 b-begin-pt b-end-pt
1057 c-begin-pt c-end-pt
1058 anc-begin-pt anc-end-pt)
71296446 1059
4ad42cb5
MK
1060 (setq state-of-ancestor
1061 (= c-or-anc-begin c-or-anc-end))
1062
1063 (cond (three-way-comp
1064 (setq c-begin c-or-anc-begin
1065 c-end c-or-anc-end))
1066 ((eq ediff-default-variant 'default-B)
1067 (setq c-begin b-begin
1068 c-end b-end))
1069 (t
1070 (setq c-begin a-begin
1071 c-end a-end)))
71296446 1072
475f9031
KH
1073 ;; compute main diff vector
1074 (if word-mode
1075 ;; make diff-list contain word numbers
50a07e18 1076 (setq diff-list
475f9031
KH
1077 (nconc diff-list
1078 (list (vector
1079 (- a-begin a-prev) (- a-end a-begin)
1080 (- b-begin b-prev) (- b-end b-begin)
1081 (- c-begin c-prev) (- c-end c-begin)
4ad42cb5
MK
1082 nil nil ; dummy ancestor
1083 nil ; state of diff
1084 nil ; state of merge
1085 nil ; state of ancestor
1086 )))
475f9031
KH
1087 a-prev a-end
1088 b-prev b-end
1089 c-prev c-end)
1090 ;; else convert lines to points
e756eb9f 1091 (ediff-with-current-buffer A-buffer
8ea74b0e
MK
1092 (let ((longlines-mode-val
1093 (if (and (boundp 'longlines-mode) longlines-mode) 1 0)))
1094 ;; we must disable and then restore longlines-mode
1095 (if (eq longlines-mode-val 1)
1096 (longlines-mode 0))
b6178721 1097 (goto-char (or a-prev-pt shift-A (point-min)))
8ea74b0e
MK
1098 (forward-line (- a-begin a-prev))
1099 (setq a-begin-pt (point))
1100 (forward-line (- a-end a-begin))
1101 (setq a-end-pt (point)
b6178721
MK
1102 a-prev a-end
1103 a-prev-pt a-end-pt)
8ea74b0e
MK
1104 (if (eq longlines-mode-val 1)
1105 (longlines-mode longlines-mode-val))
1106 ))
e756eb9f 1107 (ediff-with-current-buffer B-buffer
8ea74b0e
MK
1108 (let ((longlines-mode-val
1109 (if (and (boundp 'longlines-mode) longlines-mode) 1 0)))
1110 (if (eq longlines-mode-val 1)
1111 (longlines-mode 0))
b6178721 1112 (goto-char (or b-prev-pt shift-B (point-min)))
8ea74b0e
MK
1113 (forward-line (- b-begin b-prev))
1114 (setq b-begin-pt (point))
1115 (forward-line (- b-end b-begin))
1116 (setq b-end-pt (point)
b6178721
MK
1117 b-prev b-end
1118 b-prev-pt b-end-pt)
8ea74b0e
MK
1119 (if (eq longlines-mode-val 1)
1120 (longlines-mode longlines-mode-val))
1121 ))
e756eb9f 1122 (ediff-with-current-buffer C-buffer
8ea74b0e
MK
1123 (let ((longlines-mode-val
1124 (if (and (boundp 'longlines-mode) longlines-mode) 1 0)))
1125 (if (eq longlines-mode-val 1)
1126 (longlines-mode 0))
b6178721 1127 (goto-char (or c-prev-pt shift-C (point-min)))
8ea74b0e
MK
1128 (forward-line (- c-begin c-prev))
1129 (setq c-begin-pt (point))
1130 (forward-line (- c-end c-begin))
1131 (setq c-end-pt (point)
b6178721
MK
1132 c-prev c-end
1133 c-prev-pt c-end-pt)
8ea74b0e
MK
1134 (if (eq longlines-mode-val 1)
1135 (longlines-mode longlines-mode-val))
1136 ))
4ad42cb5 1137 (if (ediff-buffer-live-p anc-buffer)
e756eb9f 1138 (ediff-with-current-buffer anc-buffer
8ea74b0e
MK
1139 (let ((longlines-mode-val
1140 (if (and (boundp 'longlines-mode) longlines-mode) 1 0)))
1141 (if (eq longlines-mode-val 1)
1142 (longlines-mode 0))
1143 (forward-line (- c-or-anc-begin anc-prev))
1144 (setq anc-begin-pt (point))
1145 (forward-line (- c-or-anc-end c-or-anc-begin))
1146 (setq anc-end-pt (point)
1147 anc-prev c-or-anc-end)
1148 (if (eq longlines-mode-val 1)
1149 (longlines-mode longlines-mode-val))
1150 )))
50a07e18 1151 (setq diff-list
475f9031
KH
1152 (nconc
1153 diff-list
1154 ;; if comparing with ancestor, then there also is a
1155 ;; state-of-difference marker
1156 (if three-way-comp
1157 (list (vector
1158 a-begin-pt a-end-pt
1159 b-begin-pt b-end-pt
1160 c-begin-pt c-end-pt
4ad42cb5 1161 nil nil ; ancestor begin/end
475f9031 1162 state-of-diff-comparison
4ad42cb5
MK
1163 nil ; state of merge
1164 nil ; state of ancestor
475f9031
KH
1165 ))
1166 (list (vector a-begin-pt a-end-pt
1167 b-begin-pt b-end-pt
1168 c-begin-pt c-end-pt
4ad42cb5 1169 anc-begin-pt anc-end-pt
475f9031
KH
1170 state-of-diff-merge
1171 state-of-merge
4ad42cb5 1172 state-of-ancestor
475f9031
KH
1173 )))
1174 )))
1175 ))
71296446 1176
e756eb9f 1177 ))) ; end ediff-with-current-buffer
475f9031
KH
1178 diff-list
1179 ))
71296446 1180
475f9031
KH
1181;; Generate the difference vector and overlays for three files
1182;; File-C is either the third file to compare (in case of 3-way comparison)
1183;; or it is the ancestor file.
1184(defun ediff-setup-diff-regions3 (file-A file-B file-C)
b6178721 1185 ;; looking for '-i' or a 'i' among clustered non-long options
608c89a9 1186 (if (string-match "^-i\\| -i\\|\\(^\\| \\)-[^- ]+i" ediff-diff-options)
b6178721
MK
1187 (error "Option `-i' is not allowed in `ediff-diff3-options'"))
1188
475f9031
KH
1189 (or (ediff-buffer-live-p ediff-diff-buffer)
1190 (setq ediff-diff-buffer
1191 (get-buffer-create (ediff-unique-buffer-name "*ediff-diff" "*"))))
71296446 1192
4ad42cb5
MK
1193 (message "Computing differences ...")
1194 (ediff-exec-process ediff-diff3-program ediff-diff-buffer 'synchronize
b6178721 1195 ediff-actual-diff3-options file-A file-B file-C)
71296446 1196
475f9031 1197 (ediff-prepare-error-list ediff-diff3-ok-lines-regexp ediff-diff-buffer)
4ad42cb5 1198 ;;(message "Computing differences ... done")
475f9031
KH
1199 (ediff-convert-diffs-to-overlays
1200 (ediff-extract-diffs3
1201 ediff-diff-buffer
1202 ediff-word-mode ediff-3way-comparison-job ediff-narrow-bounds)
1203 ))
71296446 1204
475f9031 1205
4ae69eac 1206;; Execute PROGRAM asynchronously, unless OS/2, Windows-*, or DOS, or unless
e756eb9f
MK
1207;; SYNCH is non-nil. BUFFER must be a buffer object, and must be alive. The
1208;; OPTIONS arg is a list of options to pass to PROGRAM. It may be a blank
1209;; string. All elements in FILES must be strings. We also delete nil from
1210;; args.
1211(defun ediff-exec-process (program buffer synch options &rest files)
1212 (let ((data (match-data))
513bea45 1213 (coding-system-for-read ediff-coding-system-for-read)
e756eb9f
MK
1214 args)
1215 (setq args (append (split-string options) files))
1216 (setq args (delete "" (delq nil args))) ; delete nil and "" from arguments
7997f1ca 1217 ;; the --binary option, if present, should be used only for buffer jobs
560ef11a 1218 ;; or for refining the differences
7997f1ca 1219 (or (string-match "buffer" (symbol-name ediff-job-name))
560ef11a 1220 (eq buffer ediff-fine-diff-buffer)
7997f1ca 1221 (setq args (delete "--binary" args)))
475f9031
KH
1222 (unwind-protect
1223 (let ((directory default-directory)
1224 proc)
475f9031
KH
1225 (save-excursion
1226 (set-buffer buffer)
1227 (erase-buffer)
1228 (setq default-directory directory)
4ae69eac
MK
1229 (if (or (memq system-type '(emx ms-dos windows-nt windows-95))
1230 synch)
1231 ;; In OS/2 (emx) do it synchronously, since OS/2 doesn't let us
4ad42cb5
MK
1232 ;; delete files used by other processes. Thus, in ediff-buffers
1233 ;; and similar functions, we can't delete temp files because
4ae69eac 1234 ;; they might be used by the asynch process that computes
4ad42cb5
MK
1235 ;; custom diffs. So, we have to wait till custom diff
1236 ;; subprocess is done.
4ae69eac
MK
1237 ;; Similarly for Windows-*
1238 ;; In DOS, must synchronize because DOS doesn't have
1239 ;; asynchronous processes.
31e71026 1240 (apply 'call-process program nil buffer nil args)
4ad42cb5
MK
1241 ;; On other systems, do it asynchronously.
1242 (setq proc (get-buffer-process buffer))
1243 (if proc (kill-process proc))
1244 (setq proc
1245 (apply 'start-process "Custom Diff" buffer program args))
1246 (setq mode-line-process '(":%s"))
1247 (set-process-sentinel proc 'ediff-process-sentinel)
1248 (set-process-filter proc 'ediff-process-filter)
1249 )))
2eb4bdca 1250 (store-match-data data))))
71296446 1251
863312cd 1252;; This is shell-command-filter from simple.el in Emacs.
475f9031 1253;; Copied here because XEmacs doesn't have it.
4ad42cb5 1254(defun ediff-process-filter (proc string)
475f9031
KH
1255 ;; Do save-excursion by hand so that we can leave point numerically unchanged
1256 ;; despite an insertion immediately after it.
1257 (let* ((obuf (current-buffer))
1258 (buffer (process-buffer proc))
1259 opoint
1260 (window (get-buffer-window buffer))
1261 (pos (window-start window)))
1262 (unwind-protect
1263 (progn
1264 (set-buffer buffer)
1265 (or (= (point) (point-max))
1266 (setq opoint (point)))
1267 (goto-char (point-max))
1268 (insert-before-markers string))
1269 ;; insert-before-markers moved this marker: set it back.
1270 (set-window-start window pos)
1271 ;; Finish our save-excursion.
1272 (if opoint
1273 (goto-char opoint))
1274 (set-buffer obuf))))
71296446 1275
475f9031
KH
1276;; like shell-command-sentinel but doesn't print an exit status message
1277;; we do this because diff always exits with status 1, if diffs are found
1278;; so shell-command-sentinel displays a confusing message to the user
4ad42cb5 1279(defun ediff-process-sentinel (process signal)
475f9031
KH
1280 (if (and (memq (process-status process) '(exit signal))
1281 (buffer-name (process-buffer process)))
1282 (progn
1283 (save-excursion
1284 (set-buffer (process-buffer process))
1285 (setq mode-line-process nil))
1286 (delete-process process))))
71296446 1287
475f9031 1288
50a07e18 1289;;; Word functions used to refine the current diff
475f9031
KH
1290
1291(defvar ediff-forward-word-function 'ediff-forward-word
1292 "*Function to call to move to the next word.
1293Used for splitting difference regions into individual words.")
743a79af 1294(make-variable-buffer-local 'ediff-forward-word-function)
475f9031 1295
ec6aebe8
MK
1296;; \240 is unicode symbol for nonbreakable whitespace
1297(defvar ediff-whitespace " \n\t\f\r\240"
475f9031
KH
1298 "*Characters constituting white space.
1299These characters are ignored when differing regions are split into words.")
743a79af 1300(make-variable-buffer-local 'ediff-whitespace)
475f9031 1301
50a07e18 1302(defvar ediff-word-1
dc3fbc6a 1303 (if (featurep 'xemacs) "a-zA-Z---_" "-[:word:]_")
475f9031
KH
1304 "*Characters that constitute words of type 1.
1305More precisely, [ediff-word-1] is a regexp that matches type 1 words.
50a07e18 1306See `ediff-forward-word' for more details.")
743a79af 1307(make-variable-buffer-local 'ediff-word-1)
475f9031
KH
1308
1309(defvar ediff-word-2 "0-9.,"
1310 "*Characters that constitute words of type 2.
1311More precisely, [ediff-word-2] is a regexp that matches type 2 words.
1312See `ediff-forward-word' for more details.")
743a79af 1313(make-variable-buffer-local 'ediff-word-2)
475f9031
KH
1314
1315(defvar ediff-word-3 "`'?!:;\"{}[]()"
1316 "*Characters that constitute words of type 3.
1317More precisely, [ediff-word-3] is a regexp that matches type 3 words.
1318See `ediff-forward-word' for more details.")
743a79af 1319(make-variable-buffer-local 'ediff-word-3)
475f9031
KH
1320
1321(defvar ediff-word-4
1322 (concat "^" ediff-word-1 ediff-word-2 ediff-word-3 ediff-whitespace)
1323 "*Characters that constitute words of type 4.
1324More precisely, [ediff-word-4] is a regexp that matches type 4 words.
50a07e18 1325See `ediff-forward-word' for more details.")
743a79af 1326(make-variable-buffer-local 'ediff-word-4)
475f9031
KH
1327
1328;; Split region along word boundaries. Each word will be on its own line.
1329;; Output to buffer out-buffer.
1330(defun ediff-forward-word ()
1331 "Move point one word forward.
1332There are four types of words, each of which consists entirely of
1333characters in `ediff-word-1', `ediff-word-2', `ediff-word-3', or
6de3983f
MK
1334`ediff-word-4'. Words are recognized by passing these one after another as
1335arguments to `skip-chars-forward'."
1336 (or (> (+ (skip-chars-forward ediff-word-1)
1337 (skip-syntax-forward "w"))
1338 0)
475f9031
KH
1339 (> (skip-chars-forward ediff-word-2) 0)
1340 (> (skip-chars-forward ediff-word-3) 0)
1341 (> (skip-chars-forward ediff-word-4) 0)
1342 ))
1343
d396e521 1344
475f9031 1345(defun ediff-wordify (beg end in-buffer out-buffer &optional control-buf)
50a07e18
MK
1346 (let ((forward-word-function
1347 ;; eval in control buf to let user create local versions for
1348 ;; different invocations
1349 (if control-buf
1350 (ediff-with-current-buffer control-buf
1351 ediff-forward-word-function)
1352 ediff-forward-word-function))
1353 inbuf-syntax-tbl sv-point diff-string)
475f9031
KH
1354 (save-excursion
1355 (set-buffer in-buffer)
4986c2c6
MK
1356 (setq inbuf-syntax-tbl
1357 (if control-buf
1358 (ediff-with-current-buffer control-buf
1359 ediff-syntax-table)
1360 (syntax-table)))
1361 (setq diff-string (buffer-substring-no-properties beg end))
475f9031
KH
1362
1363 (set-buffer out-buffer)
4696802b 1364 ;; Make sure that temp buff syntax table is the same as the original buf
d396e521
MK
1365 ;; syntax tbl, because we use ediff-forward-word in both and
1366 ;; ediff-forward-word depends on the syntax classes of characters.
1367 (set-syntax-table inbuf-syntax-tbl)
475f9031 1368 (erase-buffer)
4986c2c6 1369 (insert diff-string)
475f9031
KH
1370 (goto-char (point-min))
1371 (skip-chars-forward ediff-whitespace)
1372 (delete-region (point-min) (point))
71296446 1373
475f9031 1374 (while (not (eobp))
50a07e18 1375 (funcall forward-word-function)
475f9031
KH
1376 (setq sv-point (point))
1377 (skip-chars-forward ediff-whitespace)
1378 (delete-region sv-point (point))
1379 (insert "\n")))))
71296446 1380
50a07e18 1381;; copy string specified as BEG END from IN-BUF to OUT-BUF
475f9031 1382(defun ediff-copy-to-buffer (beg end in-buffer out-buffer)
50a07e18
MK
1383 (with-current-buffer out-buffer
1384 (erase-buffer)
1385 (insert-buffer-substring in-buffer beg end)
1386 (goto-char (point-min))))
475f9031
KH
1387
1388
1389;; goto word #n starting at current position in buffer `buf'
4986c2c6 1390;; For ediff, a word is determined by ediff-forward-word-function
475f9031
KH
1391;; If `flag' is non-nil, goto the end of the n-th word.
1392(defun ediff-goto-word (n buf &optional flag)
1393 ;; remember val ediff-forward-word-function has in ctl buf
4986c2c6
MK
1394 (let ((fwd-word-fun ediff-forward-word-function)
1395 (syntax-tbl ediff-syntax-table))
e756eb9f 1396 (ediff-with-current-buffer buf
475f9031 1397 (skip-chars-forward ediff-whitespace)
50a07e18
MK
1398 (ediff-with-syntax-table syntax-tbl
1399 (while (> n 1)
1400 (funcall fwd-word-fun)
1401 (skip-chars-forward ediff-whitespace)
17561e4f
MK
1402 (setq n (1- n)))
1403 (if (and flag (> n 0))
1404 (funcall fwd-word-fun)))
475f9031
KH
1405 (point))))
1406
328b4b70 1407(defun ediff-same-file-contents (f1 f2)
17561e4f
MK
1408 "Return t if files F1 and F2 have identical contents."
1409 (if (and (not (file-directory-p f1))
1410 (not (file-directory-p f2)))
31e71026
MK
1411 (let ((res
1412 (apply 'call-process ediff-cmp-program nil nil nil
1413 (append ediff-cmp-options (list (expand-file-name f1)
1414 (expand-file-name f2))))
1415 ))
1416 (and (numberp res) (eq res 0)))
ec6aebe8 1417 ))
17561e4f
MK
1418
1419
1420(defun ediff-same-contents (d1 d2 &optional filter-re)
4837b516 1421 "Return t if D1 and D2 have the same content.
17561e4f
MK
1422D1 and D2 can either be both directories or both regular files.
1423Symlinks and the likes are not handled.
1424If FILTER-RE is non-nil, recursive checking in directories
1425affects only files whose names match the expression."
1426 ;; Normalize empty filter RE to nil.
899a431b 1427 (unless (> (length filter-re) 0) (setq filter-re nil))
17561e4f
MK
1428 ;; Indicate progress
1429 (message "Comparing '%s' and '%s' modulo '%s'" d1 d2 filter-re)
1430 (cond
1431 ;; D1 & D2 directories => recurse
1432 ((and (file-directory-p d1)
1433 (file-directory-p d2))
1434 (if (null ediff-recurse-to-subdirectories)
1435 (if (y-or-n-p "Compare subdirectories recursively? ")
1436 (setq ediff-recurse-to-subdirectories 'yes)
1437 (setq ediff-recurse-to-subdirectories 'no)))
1438 (if (eq ediff-recurse-to-subdirectories 'yes)
1439 (let* ((all-entries-1 (directory-files d1 t filter-re))
1440 (all-entries-2 (directory-files d2 t filter-re))
899a431b
MK
1441 (entries-1 (ediff-delete-all-matches "^\\.\\.?$" all-entries-1))
1442 (entries-2 (ediff-delete-all-matches "^\\.\\.?$" all-entries-2))
17561e4f 1443 )
899a431b
MK
1444
1445 (ediff-same-file-contents-lists entries-1 entries-2 filter-re)
17561e4f
MK
1446 ))
1447 ) ; end of the directories case
1448 ;; D1 & D2 are both files => compare directly
1449 ((and (file-regular-p d1)
1450 (file-regular-p d2))
1451 (ediff-same-file-contents d1 d2))
1452 ;; Otherwise => false: unequal contents
1453 )
1454 )
328b4b70 1455
899a431b
MK
1456;; If lists have the same length and names of files are pairwise equal
1457;; (removing the directories) then compare contents pairwise.
1458;; True if all contents are the same; false otherwise
1459(defun ediff-same-file-contents-lists (entries-1 entries-2 filter-re)
1460 ;; First, check only the names (works quickly and ensures a
1461 ;; precondition for subsequent code)
1462 (if (and (= (length entries-1) (length entries-2))
1463 (equal (mapcar 'file-name-nondirectory entries-1)
1464 (mapcar 'file-name-nondirectory entries-2)))
1465 ;; With name equality established, compare the entries
1466 ;; through recursion.
1467 (let ((continue t))
1468 (while (and entries-1 continue)
1469 (if (ediff-same-contents
1470 (car entries-1) (car entries-2) filter-re)
1471 (setq entries-1 (cdr entries-1)
1472 entries-2 (cdr entries-2))
1473 (setq continue nil))
1474 )
1475 ;; if reached the end then lists are equal
1476 (null entries-1))
1477 )
1478 )
1479
1480
1481;; ARG1 is a regexp, ARG2 is a list of full-filenames
1482;; Delete all entries that match the regexp
1483(defun ediff-delete-all-matches (regex file-list-list)
1484 (let (result elt)
1485 (while file-list-list
1486 (setq elt (car file-list-list))
1487 (or (string-match regex (file-name-nondirectory elt))
1488 (setq result (cons elt result)))
1489 (setq file-list-list (cdr file-list-list)))
1490 (reverse result)))
1491
ec6aebe8
MK
1492
1493(defun ediff-set-actual-diff-options ()
1494 (if ediff-ignore-case
36ba07ae 1495 (setq ediff-actual-diff-options
ec6aebe8
MK
1496 (concat ediff-diff-options " " ediff-ignore-case-option)
1497 ediff-actual-diff3-options
1498 (concat ediff-diff3-options " " ediff-ignore-case-option3))
1499 (setq ediff-actual-diff-options ediff-diff-options
1500 ediff-actual-diff3-options ediff-diff3-options)
1501 )
1502 (setq-default ediff-actual-diff-options ediff-actual-diff-options
1503 ediff-actual-diff3-options ediff-actual-diff3-options)
1504 )
1505
1506
b6178721
MK
1507;; Ignore case handling - some ideas from drew.adams@@oracle.com
1508(defun ediff-toggle-ignore-case ()
1509 (interactive)
1510 (ediff-barf-if-not-control-buffer)
1511 (setq ediff-ignore-case (not ediff-ignore-case))
ec6aebe8
MK
1512 (ediff-set-actual-diff-options)
1513 (if ediff-ignore-case
1514 (message "Ignoring regions that differ only in case")
1515 (message "Ignoring case differences turned OFF"))
b6178721
MK
1516 (cond (ediff-merge-job
1517 (message "Ignoring letter case is too dangerous in merge jobs"))
1518 ((and ediff-diff3-job (string= ediff-ignore-case-option3 ""))
1519 (message "Ignoring letter case is not supported by this diff3 program"))
1520 ((and (not ediff-3way-job) (string= ediff-ignore-case-option ""))
1521 (message "Ignoring letter case is not supported by this diff program"))
1522 (t
1523 (sit-for 1)
1524 (ediff-update-diffs)))
1525 )
1526
1527
475f9031 1528
bbe6126c
MK
1529;;; Local Variables:
1530;;; eval: (put 'ediff-defvar-local 'lisp-indent-hook 'defun)
e756eb9f
MK
1531;;; eval: (put 'ediff-with-current-buffer 'lisp-indent-hook 1)
1532;;; eval: (put 'ediff-with-current-buffer 'edebug-form-spec '(form body))
bbe6126c
MK
1533;;; End:
1534
cbee283d 1535;; arch-tag: a86d448e-58d7-4572-a1d9-fdedfa22f648
3afbc435 1536;;; ediff-diff.el ends here