*** empty log message ***
[bpt/emacs.git] / lisp / ediff-diff.el
CommitLineData
475f9031 1;;; ediff-diff.el --- diff-related utilities
b578f267 2
ddc90f39 3;; Copyright (C) 1994, 1995, 1996, 1997 Free Software Foundation, Inc.
475f9031
KH
4
5;; Author: Michael Kifer <kifer@cs.sunysb.edu>
6
7;; This file is part of GNU Emacs.
8
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.
13
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.
18
19;; You should have received a copy of the GNU General Public License
b578f267
EN
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.
475f9031 23
b578f267 24;;; Code:
475f9031 25
ddc90f39
MK
26(provide 'ediff-diff)
27
28;; compiler pacifier
29(defvar ediff-default-variant)
30
31(eval-when-compile
32 (let ((load-path (cons (expand-file-name ".") load-path)))
33 (or (featurep 'ediff-init)
34 (load "ediff-init.el" nil nil 'nosuffix))
35 (or (featurep 'ediff-util)
36 (load "ediff-util.el" nil nil 'nosuffix))
37 ))
38;; end pacifier
39
b578f267 40(require 'ediff-init)
475f9031 41
ddc90f39
MK
42(defgroup ediff-diff nil
43 "Diff related utilities"
44 :prefix "ediff-"
45 :group 'ediff)
46
4ae69eac 47
ddc90f39 48(defcustom ediff-shell
475f9031 49 (cond ((eq system-type 'emx) "cmd") ; OS/2
bbe6126c
MK
50 ((memq system-type '(ms-dos windows-nt windows-95))
51 shell-file-name) ; no standard name on MS-DOS
475f9031
KH
52 ((memq system-type '(vax-vms axp-vms)) "*dcl*") ; VMS
53 (t "sh")) ; UNIX
54 "*The shell used to run diff and patch. If user's .profile or
55.cshrc files are set up correctly, any shell will do. However, some people
56set $prompt or other things incorrectly, which leads to undesirable output
57messages. These may cause Ediff to fail. In such a case, set ediff-shell
ddc90f39
MK
58to a shell that you are not using or, better, fix your shell's startup file."
59 :type 'string
60 :group 'ediff-diff)
475f9031 61
328b4b70
MK
62(defcustom ediff-cmp-program "cmp"
63 "*Utility to use to determine if two files are identical.
64It must return code 0, if its arguments are identical files."
65 :type 'string
66 :group 'ediff-diff)
475f9031 67
3af0304a
MK
68(defcustom ediff-cmp-options nil
69 "*Options to pass to `ediff-cmp-program'. If GNUS diff is used as
70`ediff-cmp-program', then the most useful options are `-I' RE, to
71ignore changes whose lines all match RE."
72 :type '(repeat string)
73 :group 'ediff-diff)
74
ddc90f39
MK
75(defcustom ediff-diff-program "diff"
76 "*Program to use for generating the differential of the two files."
77 :type 'string
78 :group 'ediff-diff)
79(defcustom ediff-diff-options ""
475f9031
KH
80 "*Options to pass to `ediff-diff-program'.
81If diff\(1\) is used as `ediff-diff-program', then the most useful options are
82`-w', to ignore space, and `-i', to ignore case of letters.
bd698e98 83At present, the option `-c' is not allowed."
ddc90f39
MK
84 :type 'string
85 :group 'ediff-diff)
475f9031 86
ddc90f39 87(defcustom ediff-custom-diff-program ediff-diff-program
475f9031 88 "*Program to use for generating custom diff output for saving it in a file.
ddc90f39
MK
89This output is not used by Ediff internally."
90 :type 'string
91 :group 'ediff-diff)
92(defcustom ediff-custom-diff-options "-c"
93 "*Options to pass to `ediff-custom-diff-program'."
94 :type 'string
95 :group 'ediff-diff)
475f9031
KH
96
97;;; Support for diff3
98
99(defvar ediff-match-diff3-line "^====\\(.?\\)$"
100 "Pattern to match lines produced by diff3 that describe differences.")
ddc90f39 101(defcustom ediff-diff3-program "diff3"
475f9031 102 "*Program to be used for three-way comparison.
ddc90f39
MK
103Must produce output compatible with Unix's diff3 program."
104 :type 'string
105 :group 'ediff-diff)
106(defcustom ediff-diff3-options ""
107 "*Options to pass to `ediff-diff3-program'."
108 :type 'string
109 :group 'ediff-diff)
110(defcustom ediff-diff3-ok-lines-regexp
bbe6126c 111 "^\\([1-3]:\\|====\\| \\|.*Warning *:\\|.*No newline\\|.*missing newline\\|^\C-m$\\)"
475f9031 112 "*Regexp that matches normal output lines from `ediff-diff3-program'.
ddc90f39
MK
113Lines that do not match are assumed to be error messages."
114 :type 'regexp
115 :group 'ediff-diff)
475f9031
KH
116
117;; keeps the status of the current diff in 3-way jobs.
118;; the status can be =diff(A), =diff(B), or =diff(A+B)
119(ediff-defvar-local ediff-diff-status "" "")
120
475f9031
KH
121
122;;; Fine differences
123
4ae69eac 124(ediff-defvar-local ediff-auto-refine (if (ediff-has-face-support-p) 'on 'nix)
475f9031
KH
125 "If `on', Ediff auto-highlights fine diffs for the current diff region.
126If `off', auto-highlighting is not used. If `nix', no fine diffs are shown
127at all, unless the user force-refines the region by hitting `*'.
128
129This variable can be set either in .emacs or toggled interactively.
130Use `setq-default' if setting it in .emacs")
131
132(ediff-defvar-local ediff-ignore-similar-regions nil
133 "*If t, skip over difference regions that differ only in the white space and line breaks.
134This variable can be set either in .emacs or toggled interactively.
135Use `setq-default' if setting it in .emacs")
136
bbe6126c
MK
137(ediff-defvar-local ediff-auto-refine-limit 1400
138 "*Auto-refine only the regions of this size \(in bytes\) or less.")
475f9031
KH
139
140;;; General
141
142(defvar ediff-diff-ok-lines-regexp
c004db97
MK
143 (concat
144 "^\\("
145 "[0-9,]+[acd][0-9,]+\C-m?$"
146 "\\|[<>] "
147 "\\|---"
148 "\\|.*Warning *:"
149 "\\|.*No +newline"
150 "\\|.*missing +newline"
151 "\\|^\C-m?$"
152 "\\)")
475f9031
KH
153 "Regexp that matches normal output lines from `ediff-diff-program'.
154This is mostly lifted from Emerge, except that Ediff also considers
155warnings and `Missing newline'-type messages to be normal output.
156Lines that do not match are assumed to be error messages.")
157
c004db97
MK
158(defvar ediff-match-diff-line
159 (let ((x "\\([0-9]+\\)\\(\\|,\\([0-9]+\\)\\)"))
160 (concat "^" x "\\([acd]\\)" x "\C-m?$"))
475f9031
KH
161 "Pattern to match lines produced by diff that describe differences.")
162
163(ediff-defvar-local ediff-setup-diff-regions-function nil
164 "value is a function symbol depending on the kind of job is to be done.
165For 2-way jobs and for ediff-merge, it should be `ediff-setup-diff-regions'.
166For jobs requiring diff3, it should be `ediff-setup-diff-regions3'.
167
168The function should take three mandatory arguments, file-A, file-B, and
169file-C. It may ignore file C for diff2 jobs. It should also take
170one optional arguments, diff-number to refine.")
171
172
475f9031
KH
173;;; Functions
174
175;; Generate the difference vector and overlays for the two files
176;; With optional arg REG-TO-REFINE, refine this region.
177;; File-C argument is not used here. It is there just because
178;; ediff-setup-diff-regions is called via a funcall to
179;; ediff-setup-diff-regions-function, which can also have the value
180;; ediff-setup-diff-regions3, which takes 4 arguments.
181(defun ediff-setup-diff-regions (file-A file-B file-C)
bd698e98
MK
182 (if (string-match "c" ediff-diff-options)
183 (error "Option `-c' is not allowed in `ediff-diff-options'"))
475f9031 184
bbe6126c 185 ;; create, if it doesn't exist
475f9031
KH
186 (or (ediff-buffer-live-p ediff-diff-buffer)
187 (setq ediff-diff-buffer
188 (get-buffer-create (ediff-unique-buffer-name "*ediff-diff" "*"))))
bbe6126c 189 (ediff-make-diff2-buffer ediff-diff-buffer file-A file-B)
475f9031 190 (ediff-prepare-error-list ediff-diff-ok-lines-regexp ediff-diff-buffer)
475f9031
KH
191 (ediff-convert-diffs-to-overlays
192 (ediff-extract-diffs
4ae69eac 193 ediff-diff-buffer ediff-word-mode ediff-narrow-bounds)))
bbe6126c 194
52fa07ba
MK
195;; Run the diff program on FILE1 and FILE2 and put the output in DIFF-BUFFER
196;; Return the size of DIFF-BUFFER
bbe6126c 197(defun ediff-make-diff2-buffer (diff-buffer file1 file2)
92c51e07
MK
198 (let ((file1-size (ediff-file-size file1))
199 (file2-size (ediff-file-size file2)))
200 (cond ((not (numberp file1-size))
201 (message "Can't find file: %s"
202 (ediff-abbreviate-file-name file1))
203 (sit-for 2)
204 ;; 1 is an error exit code
205 1)
206 ((not (numberp file2-size))
207 (message "Can't find file: %s"
208 (ediff-abbreviate-file-name file2))
209 (sit-for 2)
210 ;; 1 is an error exit code
211 1)
212 ((< file1-size 0)
213 (message "Can't diff remote files: %s"
214 (ediff-abbreviate-file-name file1))
215 (sit-for 2)
216 ;; 1 is an error exit code
217 1)
218 ((< file2-size 0)
219 (message "Can't diff remote file: %s"
220 (ediff-abbreviate-file-name file2))
221 (sit-for 2)
bbe6126c 222 (message "")
92c51e07
MK
223 ;; 1 is an error exit code
224 1)
225 (t (message "Computing differences between %s and %s ..."
226 (file-name-nondirectory file1)
227 (file-name-nondirectory file2))
228 ;; this erases the diff buffer automatically
229 (ediff-exec-process ediff-diff-program
230 diff-buffer
231 'synchronize
232 ediff-diff-options file1 file2)
92c51e07 233 (message "")
e756eb9f 234 (ediff-with-current-buffer diff-buffer
92c51e07 235 (buffer-size))))))
bbe6126c
MK
236
237
475f9031
KH
238
239;; If file-A/B/C is nil, do 2-way comparison with the non-nil buffers
240;; This function works for diff3 and diff2 jobs
241(defun ediff-setup-fine-diff-regions (file-A file-B file-C reg-num)
242 (or (ediff-buffer-live-p ediff-fine-diff-buffer)
243 (setq ediff-fine-diff-buffer
244 (get-buffer-create
245 (ediff-unique-buffer-name "*ediff-fine-diff" "*"))))
246
ab8a391e 247 (let (diff3-job diff-program diff-options ok-regexp diff-list)
475f9031
KH
248 (setq diff3-job ediff-3way-job
249 diff-program (if diff3-job ediff-diff3-program ediff-diff-program)
ab8a391e 250 diff-options (if diff3-job ediff-diff3-options ediff-diff-options)
475f9031
KH
251 ok-regexp (if diff3-job
252 ediff-diff3-ok-lines-regexp
253 ediff-diff-ok-lines-regexp))
254
4ad42cb5
MK
255 (ediff-message-if-verbose "Refining difference region %d ..." (1+ reg-num))
256 (ediff-exec-process diff-program ediff-fine-diff-buffer 'synchronize
ab8a391e 257 diff-options
4ad42cb5
MK
258 ;; The shuffle below is because we can compare 3-way
259 ;; or in several 2-way fashions, like fA fC, fA fB,
260 ;; or fB fC.
261 (if file-A file-A file-B)
262 (if file-B file-B file-A)
263 (if diff3-job
264 (if file-C file-C file-B))
265 ) ; exec process
475f9031
KH
266
267 (ediff-prepare-error-list ok-regexp ediff-fine-diff-buffer)
4ae69eac
MK
268 (ediff-message-if-verbose
269 "")
4ad42cb5 270 ;; "Refining difference region %d ... done" (1+ reg-num))
475f9031
KH
271
272 (setq diff-list
273 (if diff3-job
274 (ediff-extract-diffs3
275 ediff-fine-diff-buffer '3way-comparison 'word-mode)
276 (ediff-extract-diffs ediff-fine-diff-buffer 'word-mode)))
277 ;; fixup diff-list
278 (if diff3-job
279 (cond ((not file-A)
3af0304a
MK
280 (mapcar (lambda (elt)
281 (aset elt 0 nil)
282 (aset elt 1 nil))
475f9031
KH
283 (cdr diff-list)))
284 ((not file-B)
3af0304a
MK
285 (mapcar (lambda (elt)
286 (aset elt 2 nil)
287 (aset elt 3 nil))
475f9031
KH
288 (cdr diff-list)))
289 ((not file-C)
3af0304a
MK
290 (mapcar (lambda (elt)
291 (aset elt 4 nil)
292 (aset elt 5 nil))
475f9031
KH
293 (cdr diff-list)))
294 ))
295
296 (ediff-convert-fine-diffs-to-overlays diff-list reg-num)
297 ))
298
299
300(defun ediff-prepare-error-list (ok-regexp diff-buff)
4ad42cb5
MK
301 (or (ediff-buffer-live-p ediff-error-buffer)
302 (setq ediff-error-buffer
303 (get-buffer-create (ediff-unique-buffer-name
304 "*ediff-errors" "*"))))
e756eb9f 305 (ediff-with-current-buffer ediff-error-buffer
4ad42cb5 306 (erase-buffer)
e756eb9f 307 (insert (ediff-with-current-buffer diff-buff (buffer-string)))
4ad42cb5
MK
308 (goto-char (point-min))
309 (delete-matching-lines ok-regexp)
310 (if (memq system-type '(vax-vms axp-vms))
311 (delete-matching-lines "^$")))
312 ;; If diff reports errors, show them then quit.
e756eb9f 313 (if (/= 0 (ediff-with-current-buffer ediff-error-buffer (buffer-size)))
4ad42cb5
MK
314 (let ((ctl-buf ediff-control-buffer)
315 (error-buf ediff-error-buffer))
316 (ediff-skip-unsuitable-frames)
317 (switch-to-buffer error-buf)
318 (ediff-kill-buffer-carefully ctl-buf)
319 (error "Errors in diff output. Diff output is in %S" diff-buff))))
475f9031
KH
320
321;; BOUNDS specifies visibility bounds to use.
322;; WORD-MODE tells whether we are in the word-mode or not.
323;; If WORD-MODE, also construct vector of diffs using word numbers.
324;; Else, use point values.
325;; This function handles diff-2 jobs including the case of
326;; merging buffers and files without ancestor.
327(defun ediff-extract-diffs (diff-buffer word-mode &optional bounds)
328 (let ((A-buffer ediff-buffer-A)
329 (B-buffer ediff-buffer-B)
330 (C-buffer ediff-buffer-C)
331 (a-prev 1) ; this is needed to set the first diff line correctly
332 (b-prev 1)
333 (c-prev 1)
334 diff-list shift-A shift-B
335 )
336
337 ;; diff list contains word numbers, unless changed later
338 (setq diff-list (cons (if word-mode 'words 'points)
339 diff-list))
340 ;; we don't use visibility bounds for buffer C when merging
341 (if bounds
342 (setq shift-A
343 (ediff-overlay-start
344 (ediff-get-value-according-to-buffer-type 'A bounds))
345 shift-B
346 (ediff-overlay-start
347 (ediff-get-value-according-to-buffer-type 'B bounds))))
348
349 ;; reset point in buffers A/B/C
e756eb9f 350 (ediff-with-current-buffer A-buffer
475f9031 351 (goto-char (if shift-A shift-A (point-min))))
e756eb9f 352 (ediff-with-current-buffer B-buffer
475f9031
KH
353 (goto-char (if shift-B shift-B (point-min))))
354 (if (ediff-buffer-live-p C-buffer)
e756eb9f 355 (ediff-with-current-buffer C-buffer
475f9031
KH
356 (goto-char (point-min))))
357
e756eb9f 358 (ediff-with-current-buffer diff-buffer
475f9031
KH
359 (goto-char (point-min))
360 (while (re-search-forward ediff-match-diff-line nil t)
361 (let* ((a-begin (string-to-int (buffer-substring (match-beginning 1)
362 (match-end 1))))
363 (a-end (let ((b (match-beginning 3))
364 (e (match-end 3)))
365 (if b
366 (string-to-int (buffer-substring b e))
367 a-begin)))
368 (diff-type (buffer-substring (match-beginning 4) (match-end 4)))
369 (b-begin (string-to-int (buffer-substring (match-beginning 5)
370 (match-end 5))))
371 (b-end (let ((b (match-beginning 7))
372 (e (match-end 7)))
373 (if b
374 (string-to-int (buffer-substring b e))
375 b-begin)))
376 a-begin-pt a-end-pt b-begin-pt b-end-pt
377 c-begin c-end c-begin-pt c-end-pt)
378 ;; fix the beginning and end numbers, because diff is somewhat
379 ;; strange about how it numbers lines
380 (if (string-equal diff-type "a")
381 (setq b-end (1+ b-end)
382 a-begin (1+ a-begin)
383 a-end a-begin)
384 (if (string-equal diff-type "d")
385 (setq a-end (1+ a-end)
386 b-begin (1+ b-begin)
387 b-end b-begin)
388 ;; (string-equal diff-type "c")
389 (setq a-end (1+ a-end)
390 b-end (1+ b-end))))
391
392 (if (eq ediff-default-variant 'default-B)
393 (setq c-begin b-begin
394 c-end b-end)
395 (setq c-begin a-begin
396 c-end a-end))
397
398 ;; compute main diff vector
399 (if word-mode
400 ;; make diff-list contain word numbers
401 (setq diff-list
402 (nconc diff-list
403 (list
404 (if (ediff-buffer-live-p C-buffer)
405 (vector (- a-begin a-prev) (- a-end a-begin)
406 (- b-begin b-prev) (- b-end b-begin)
407 (- c-begin c-prev) (- c-end c-begin)
4ad42cb5
MK
408 nil nil ; dummy ancestor
409 nil ; state of diff
410 nil ; state of merge
411 nil ; state of ancestor
475f9031
KH
412 )
413 (vector (- a-begin a-prev) (- a-end a-begin)
414 (- b-begin b-prev) (- b-end b-begin)
415 nil nil ; dummy buf C
4ad42cb5 416 nil nil ; dummy ancestor
475f9031
KH
417 nil ; state of diff
418 nil ; state of merge
4ad42cb5 419 nil ; state of ancestor
475f9031
KH
420 ))
421 ))
422 a-prev a-end
423 b-prev b-end
424 c-prev c-end)
425 ;; else convert lines to points
e756eb9f 426 (ediff-with-current-buffer A-buffer
475f9031
KH
427 (forward-line (- a-begin a-prev))
428 (setq a-begin-pt (point))
429 (forward-line (- a-end a-begin))
430 (setq a-end-pt (point)
431 a-prev a-end))
e756eb9f 432 (ediff-with-current-buffer B-buffer
475f9031
KH
433 (forward-line (- b-begin b-prev))
434 (setq b-begin-pt (point))
435 (forward-line (- b-end b-begin))
436 (setq b-end-pt (point)
437 b-prev b-end))
438 (if (ediff-buffer-live-p C-buffer)
e756eb9f 439 (ediff-with-current-buffer C-buffer
475f9031
KH
440 (forward-line (- c-begin c-prev))
441 (setq c-begin-pt (point))
442 (forward-line (- c-end c-begin))
443 (setq c-end-pt (point)
444 c-prev c-end)))
445 (setq diff-list
446 (nconc
447 diff-list
448 (list
449 (if (ediff-buffer-live-p C-buffer)
450 (vector
451 a-begin-pt a-end-pt b-begin-pt b-end-pt
452 c-begin-pt c-end-pt
4ad42cb5 453 nil nil ; dummy ancestor
475f9031
KH
454 ;; state of diff
455 ;; shows which buff is different from the other two
456 (if (eq ediff-default-variant 'default-B) 'A 'B)
4ad42cb5
MK
457 ediff-default-variant ; state of merge
458 nil ; state of ancestor
475f9031 459 )
4ad42cb5
MK
460 (vector a-begin-pt a-end-pt
461 b-begin-pt b-end-pt
462 nil nil ; dummy buf C
463 nil nil ; dummy ancestor
464 nil nil ; dummy state of diff & merge
465 nil ; dummy state of ancestor
475f9031
KH
466 )))
467 )))
468
e756eb9f 469 ))) ; end ediff-with-current-buffer
475f9031
KH
470 diff-list
471 ))
472
473
4ad42cb5
MK
474(defun ediff-convert-diffs-to-overlays (diff-list)
475 (ediff-set-diff-overlays-in-one-buffer 'A diff-list)
476 (ediff-set-diff-overlays-in-one-buffer 'B diff-list)
477 (if ediff-3way-job
478 (ediff-set-diff-overlays-in-one-buffer 'C diff-list))
479 (if ediff-merge-with-ancestor-job
480 (ediff-set-diff-overlays-in-one-buffer 'Ancestor diff-list))
481 ;; set up vector showing the status of merge regions
482 (if ediff-merge-job
483 (setq ediff-state-of-merge
484 (vconcat
3af0304a
MK
485 (mapcar (lambda (elt)
486 (let ((state-of-merge (aref elt 9))
487 (state-of-ancestor (aref elt 10)))
488 (vector
489 ;; state of merge: prefers/default-A/B or combined
490 (if state-of-merge (format "%S" state-of-merge))
491 ;; whether the ancestor region is empty
492 state-of-ancestor)))
4ad42cb5
MK
493 ;; the first elt designates type of list
494 (cdr diff-list))
495 )))
496 (message "Processing difference regions ... done"))
497
498
475f9031
KH
499(defun ediff-set-diff-overlays-in-one-buffer (buf-type diff-list)
500 (let* ((current-diff -1)
501 (buff (ediff-get-buffer buf-type))
502 ;; ediff-extract-diffs puts the type of diff-list as the first elt
503 ;; of this list. The type is either 'points or 'words
504 (diff-list-type (car diff-list))
505 (shift (ediff-overlay-start
506 (ediff-get-value-according-to-buffer-type
507 buf-type ediff-narrow-bounds)))
508 (limit (ediff-overlay-end
509 (ediff-get-value-according-to-buffer-type
510 buf-type ediff-narrow-bounds)))
511 diff-overlay-list list-element total-diffs
4ad42cb5 512 begin end pt-saved overlay state-of-diff)
475f9031
KH
513
514 (setq diff-list (cdr diff-list)) ; discard diff list type
515 (setq total-diffs (length diff-list))
516
517 ;; shift, if necessary
e756eb9f 518 (ediff-with-current-buffer buff (setq pt-saved shift))
475f9031
KH
519
520 (while diff-list
521 (setq current-diff (1+ current-diff)
522 list-element (car diff-list)
523 begin (aref list-element (cond ((eq buf-type 'A) 0)
524 ((eq buf-type 'B) 2)
4ad42cb5
MK
525 ((eq buf-type 'C) 4)
526 (t 6))) ; Ancestor
475f9031
KH
527 end (aref list-element (cond ((eq buf-type 'A) 1)
528 ((eq buf-type 'B) 3)
4ad42cb5
MK
529 ((eq buf-type 'C) 5)
530 (t 7))) ; Ancestor
531 state-of-diff (aref list-element 8)
532 )
475f9031
KH
533
534 (cond ((and (not (eq buf-type state-of-diff))
4ad42cb5 535 (not (eq buf-type 'Ancestor))
475f9031
KH
536 (memq state-of-diff '(A B C)))
537 (setq state-of-diff
538 (car (delq buf-type (delq state-of-diff (list 'A 'B 'C)))))
539 (setq state-of-diff (format "=diff(%S)" state-of-diff))
475f9031 540 )
4ad42cb5 541 (t (setq state-of-diff nil)))
475f9031
KH
542
543 ;; Put overlays at appropriate places in buffer
544 ;; convert word numbers to points, if necessary
545 (if (eq diff-list-type 'words)
546 (progn
e756eb9f 547 (ediff-with-current-buffer buff (goto-char pt-saved))
475f9031
KH
548 (setq begin (ediff-goto-word (1+ begin) buff)
549 end (ediff-goto-word end buff 'end))
550 (if (> end limit) (setq end limit))
551 (if (> begin end) (setq begin end))
e756eb9f 552 (setq pt-saved (ediff-with-current-buffer buff (point)))))
475f9031
KH
553 (setq overlay (ediff-make-bullet-proof-overlay begin end buff))
554
475f9031
KH
555 (ediff-overlay-put overlay 'priority ediff-shadow-overlay-priority)
556 (ediff-overlay-put overlay 'ediff-diff-num current-diff)
4ae69eac 557 (if (and (ediff-has-face-support-p)
4ad42cb5
MK
558 ediff-use-faces ediff-highlight-all-diffs)
559 (ediff-set-overlay-face
560 overlay (ediff-background-face buf-type current-diff)))
475f9031
KH
561
562 (if (= 0 (mod current-diff 10))
563 (message "Buffer %S: Processing difference region %d of %d"
564 buf-type current-diff total-diffs))
3af0304a
MK
565 ;; Record all overlays for this difference.
566 ;; The 2-d elt, nil, is a place holder for the fine diff vector.
567 ;; The 3-d elt, nil, is a place holder for no-fine-diffs flag.
568 ;; The 4-th elt says which diff region is different from the other two
569 ;; (3-way jobs only).
475f9031
KH
570 (setq diff-overlay-list
571 (nconc
572 diff-overlay-list
4ad42cb5 573 (list (vector overlay nil nil state-of-diff)))
475f9031
KH
574 diff-list
575 (cdr diff-list))
576 ) ; while
577
e756eb9f 578 (set (ediff-get-symbol-from-alist buf-type ediff-difference-vector-alist)
4ad42cb5 579 (vconcat diff-overlay-list))
475f9031 580 ))
4ad42cb5 581
475f9031
KH
582;; `n' is the diff region to work on. Default is ediff-current-difference.
583;; if `flag' is 'noforce then make fine-diffs only if this region's fine
584;; diffs have not been computed before.
585;; if `flag' is 'skip then don't compute fine diffs for this region.
475f9031
KH
586(defun ediff-make-fine-diffs (&optional n flag)
587 (or n (setq n ediff-current-difference))
588
589 (if (< ediff-number-of-differences 1)
bbe6126c 590 (error ediff-NO-DIFFERENCES))
475f9031
KH
591
592 (if ediff-word-mode
593 (setq flag 'skip
594 ediff-auto-refine 'nix))
595
596 (or (< n 0)
597 (>= n ediff-number-of-differences)
598 ;; n is within the range
599 (let ((tmp-buffer (get-buffer-create ediff-tmp-buffer))
600 (file-A ediff-temp-file-A)
601 (file-B ediff-temp-file-B)
602 (file-C ediff-temp-file-C)
603 (empty-A (ediff-empty-diff-region-p n 'A))
604 (empty-B (ediff-empty-diff-region-p n 'B))
605 (empty-C (ediff-empty-diff-region-p n 'C))
606 (whitespace-A (ediff-whitespace-diff-region-p n 'A))
607 (whitespace-B (ediff-whitespace-diff-region-p n 'B))
608 (whitespace-C (ediff-whitespace-diff-region-p n 'C))
609 cumulative-fine-diff-length)
610
ddc90f39 611 (cond ;; If one of the regions is empty (or 2 in 3way comparison)
4ad42cb5
MK
612 ;; then don't refine.
613 ;; If the region happens to be entirely whitespace or empty then
614 ;; mark as such.
475f9031
KH
615 ((> (length (delq nil (list empty-A empty-B empty-C))) 1)
616 (if (and (ediff-looks-like-combined-merge n)
617 ediff-merge-job)
618 (ediff-set-fine-overlays-in-one-buffer 'C nil n))
4ad42cb5
MK
619 (if ediff-3way-comparison-job
620 (ediff-message-if-verbose
621 "Region %d is empty in all buffers but %S"
622 (1+ n)
623 (cond ((not empty-A) 'A)
624 ((not empty-B) 'B)
625 ((not empty-C) 'C)))
626 (ediff-message-if-verbose
627 "Region %d in buffer %S is empty"
628 (1+ n)
629 (cond (empty-A 'A)
630 (empty-B 'B)
631 (empty-C 'C)))
632 )
bbe6126c 633 ;; if all regions happen to be whitespace
4ad42cb5 634 (if (and whitespace-A whitespace-B whitespace-C)
bbe6126c 635 ;; mark as space only
475f9031 636 (ediff-mark-diff-as-space-only n t)
bbe6126c
MK
637 ;; if some regions are white and others don't, then mark as
638 ;; non-white-space-only
475f9031 639 (ediff-mark-diff-as-space-only n nil)))
ddc90f39
MK
640
641 ;; don't compute fine diffs if diff vector exists
642 ((and (eq flag 'noforce) (ediff-get-fine-diff-vector n 'A))
643 (if (ediff-no-fine-diffs-p n)
644 (message
645 "Only white-space differences in region %d %s"
646 (1+ n)
647 (cond ((eq (ediff-no-fine-diffs-p n) 'A)
648 "in buffers B & C")
649 ((eq (ediff-no-fine-diffs-p n) 'B)
650 "in buffers A & C")
651 ((eq (ediff-no-fine-diffs-p n) 'C)
652 "in buffers A & B")
653 (t "")))))
475f9031
KH
654 ;; don't compute fine diffs for this region
655 ((eq flag 'skip)
656 (or (ediff-get-fine-diff-vector n 'A)
657 (memq ediff-auto-refine '(off nix))
4ad42cb5 658 (ediff-message-if-verbose
3af0304a 659 "Region %d exceeds the auto-refinement limit. Type `%s' to refine"
475f9031 660 (1+ n)
4ad42cb5
MK
661 (substitute-command-keys
662 "\\[ediff-make-or-kill-fine-diffs]")
475f9031
KH
663 )))
664 (t
475f9031
KH
665 ;; recompute fine diffs
666 (ediff-wordify
667 (ediff-get-diff-posn 'A 'beg n)
668 (ediff-get-diff-posn 'A 'end n)
669 ediff-buffer-A
670 tmp-buffer
671 ediff-control-buffer)
4ad42cb5
MK
672 (setq file-A
673 (ediff-make-temp-file tmp-buffer "fineDiffA" file-A))
475f9031
KH
674
675 (ediff-wordify
676 (ediff-get-diff-posn 'B 'beg n)
677 (ediff-get-diff-posn 'B 'end n)
678 ediff-buffer-B
679 tmp-buffer
680 ediff-control-buffer)
4ad42cb5
MK
681 (setq file-B
682 (ediff-make-temp-file tmp-buffer "fineDiffB" file-B))
683
475f9031
KH
684 (if ediff-3way-job
685 (progn
686 (ediff-wordify
687 (ediff-get-diff-posn 'C 'beg n)
688 (ediff-get-diff-posn 'C 'end n)
689 ediff-buffer-C
690 tmp-buffer
691 ediff-control-buffer)
4ad42cb5
MK
692 (setq file-C
693 (ediff-make-temp-file
694 tmp-buffer "fineDiffC" file-C))))
475f9031
KH
695
696 ;; save temp file names.
697 (setq ediff-temp-file-A file-A
698 ediff-temp-file-B file-B
699 ediff-temp-file-C file-C)
700
701 ;; set the new vector of fine diffs, if none exists
702 (cond ((and ediff-3way-job whitespace-A)
703 (ediff-setup-fine-diff-regions nil file-B file-C n))
704 ((and ediff-3way-job whitespace-B)
705 (ediff-setup-fine-diff-regions file-A nil file-C n))
706 ((and ediff-3way-job
bbe6126c
MK
707 ;; In merge-jobs, whitespace-C is t, since
708 ;; ediff-empty-diff-region-p returns t in this case
709 whitespace-C)
475f9031
KH
710 (ediff-setup-fine-diff-regions file-A file-B nil n))
711 (t
712 (ediff-setup-fine-diff-regions file-A file-B file-C n)))
713
714 (setq cumulative-fine-diff-length
715 (+ (length (ediff-get-fine-diff-vector n 'A))
bbe6126c
MK
716 (length (ediff-get-fine-diff-vector n 'B))
717 ;; in merge jobs, the merge buffer is never refined
718 (if (and file-C (not ediff-merge-job))
719 (length (ediff-get-fine-diff-vector n 'C))
720 0)))
475f9031
KH
721
722 (cond ((or
723 ;; all regions are white space
724 (and whitespace-A whitespace-B whitespace-C)
725 ;; none is white space and no fine diffs detected
726 (and (not whitespace-A)
727 (not whitespace-B)
728 (not (and ediff-3way-job whitespace-C))
729 (eq cumulative-fine-diff-length 0)))
730 (ediff-mark-diff-as-space-only n t)
4ad42cb5 731 (ediff-message-if-verbose
475f9031
KH
732 "Only white-space differences in region %d" (1+ n)))
733 ((eq cumulative-fine-diff-length 0)
4ad42cb5 734 (ediff-message-if-verbose
475f9031
KH
735 "Only white-space differences in region %d %s"
736 (1+ n)
ddc90f39
MK
737 (cond (whitespace-A (ediff-mark-diff-as-space-only n 'A)
738 "in buffers B & C")
739 (whitespace-B (ediff-mark-diff-as-space-only n 'B)
740 "in buffers A & C")
741 (whitespace-C (ediff-mark-diff-as-space-only n 'C)
742 "in buffers A & B"))))
475f9031
KH
743 (t
744 (ediff-mark-diff-as-space-only n nil)))
745 )
746 ) ; end cond
747 (ediff-set-fine-diff-properties n)
748 )))
749
750;; Interface to ediff-make-fine-diffs. Checks for auto-refine limit, etc.
751(defun ediff-install-fine-diff-if-necessary (n)
752 (cond ((eq ediff-auto-refine 'on)
753 (if (and
754 (> ediff-auto-refine-limit
755 (- (ediff-get-diff-posn 'A 'end n)
756 (ediff-get-diff-posn 'A 'beg n)))
757 (> ediff-auto-refine-limit
758 (- (ediff-get-diff-posn 'B 'end n)
759 (ediff-get-diff-posn 'B 'beg n))))
760 (ediff-make-fine-diffs n 'noforce)
761 (ediff-make-fine-diffs n 'skip)))
762
763 ;; highlight iff fine diffs already exist
764 ((eq ediff-auto-refine 'off)
765 (ediff-make-fine-diffs n 'skip))))
766
767
768;; if fine diff vector is not set for diff N, then do nothing
769(defun ediff-set-fine-diff-properties (n &optional default)
4ae69eac 770 (or (not (ediff-has-face-support-p))
475f9031
KH
771 (< n 0)
772 (>= n ediff-number-of-differences)
4ae69eac 773 ;; when faces are supported, set faces and priorities of fine overlays
475f9031
KH
774 (progn
775 (ediff-set-fine-diff-properties-in-one-buffer 'A n default)
776 (ediff-set-fine-diff-properties-in-one-buffer 'B n default)
777 (if ediff-3way-job
778 (ediff-set-fine-diff-properties-in-one-buffer 'C n default)))))
779
780(defun ediff-set-fine-diff-properties-in-one-buffer (buf-type
781 n &optional default)
782 (let ((fine-diff-vector (ediff-get-fine-diff-vector n buf-type))
783 (face (if default
784 'default
785 (face-name
e756eb9f
MK
786 (ediff-get-symbol-from-alist
787 buf-type ediff-fine-diff-face-alist))))
475f9031
KH
788 (priority (if default
789 0
790 (1+ (or (ediff-overlay-get
791 (symbol-value
e756eb9f
MK
792 (ediff-get-symbol-from-alist
793 buf-type
794 ediff-current-diff-overlay-alist))
475f9031
KH
795 'priority)
796 0)))))
3af0304a
MK
797 (mapcar (lambda (overl)
798 (ediff-set-overlay-face overl face)
799 (ediff-overlay-put overl 'priority priority))
800 fine-diff-vector)))
475f9031
KH
801
802;; This assumes buffer C and that the region looks like a combination of
803;; regions in buffer A and C.
804(defun ediff-set-fine-overlays-for-combined-merge (diff-list reg-num)
805 (let (overlay1 overlay2 overlay3)
806 (setq overlay1 (ediff-make-bullet-proof-overlay (nth 0 diff-list)
807 (nth 1 diff-list)
808 ediff-buffer-C)
809 overlay2 (ediff-make-bullet-proof-overlay (nth 2 diff-list)
810 (nth 3 diff-list)
811 ediff-buffer-C)
812 overlay3 (ediff-make-bullet-proof-overlay (nth 4 diff-list)
813 (nth 5 diff-list)
814 ediff-buffer-C))
815 (ediff-set-fine-diff-vector reg-num 'C (vector overlay1 overlay2 overlay3))
816 ))
817
818
819;; Convert diff list to overlays for a given DIFF-REGION
820;; in buffer of type BUF-TYPE
821(defun ediff-set-fine-overlays-in-one-buffer (buf-type diff-list region-num)
822 (let* ((current-diff -1)
823 (reg-start (ediff-get-diff-posn buf-type 'beg region-num))
824 (buff (ediff-get-buffer buf-type))
825 combined-merge-diff-list
826 diff-overlay-list list-element
827 begin end overlay)
828
829 (ediff-clear-fine-differences-in-one-buffer region-num buf-type)
830 (setq diff-list (cdr diff-list)) ; discard list type (words or points)
e756eb9f 831 (ediff-with-current-buffer buff (goto-char reg-start))
475f9031
KH
832
833 ;; if it is a combined merge then set overlays in buff C specially
834 (if (and ediff-merge-job (eq buf-type 'C)
835 (setq combined-merge-diff-list
836 (ediff-looks-like-combined-merge region-num)))
837 (ediff-set-fine-overlays-for-combined-merge
838 combined-merge-diff-list region-num)
839 ;; regular fine diff
840 (while diff-list
841 (setq current-diff (1+ current-diff)
842 list-element (car diff-list)
843 begin (aref list-element (cond ((eq buf-type 'A) 0)
844 ((eq buf-type 'B) 2)
845 (t 4))) ; buf C
846 end (aref list-element (cond ((eq buf-type 'A) 1)
847 ((eq buf-type 'B) 3)
848 (t 5)))) ; buf C
849 (if (not (or begin end))
850 () ; skip this diff
851 ;; Put overlays at appropriate places in buffers
852 ;; convert lines to points, if necessary
853 (setq begin (ediff-goto-word (1+ begin) buff)
854 end (ediff-goto-word end buff 'end))
855 (setq overlay (ediff-make-bullet-proof-overlay begin end buff))
856 ;; record all overlays for this difference region
857 (setq diff-overlay-list (nconc diff-overlay-list (list overlay))))
858
859 (setq diff-list (cdr diff-list))
860 ) ; while
861 ;; convert the list of difference information into a vector
862 ;; for fast access
863 (ediff-set-fine-diff-vector
4ad42cb5 864 region-num buf-type (vconcat diff-overlay-list))
475f9031
KH
865 )))
866
867
868;; Stolen from emerge.el
869(defun ediff-get-diff3-group (file)
870 ;; This save-excursion allows ediff-get-diff3-group to be called for the
871 ;; various groups of lines (1, 2, 3) in any order, and for the lines to
872 ;; appear in any order. The reason this is necessary is that Gnu diff3
873 ;; can produce the groups in the order 1, 2, 3 or 1, 3, 2.
874 (save-excursion
875 (re-search-forward
876 (concat "^" file ":\\([0-9]+\\)\\(,\\([0-9]+\\)\\)?\\([ac]\\)$"))
877 (beginning-of-line 2)
878 ;; treatment depends on whether it is an "a" group or a "c" group
879 (if (string-equal (buffer-substring (match-beginning 4) (match-end 4)) "c")
880 ;; it is a "c" group
881 (if (match-beginning 2)
882 ;; it has two numbers
883 (list (string-to-int
884 (buffer-substring (match-beginning 1) (match-end 1)))
885 (1+ (string-to-int
886 (buffer-substring (match-beginning 3) (match-end 3)))))
887 ;; it has one number
888 (let ((x (string-to-int
889 (buffer-substring (match-beginning 1) (match-end 1)))))
890 (list x (1+ x))))
891 ;; it is an "a" group
892 (let ((x (1+ (string-to-int
893 (buffer-substring (match-beginning 1) (match-end 1))))))
894 (list x x)))))
895
896
897;; If WORD-MODE, construct vector of diffs using word numbers.
898;; Else, use point values.
899;; WORD-MODE also tells if we are in the word-mode or not.
900;; If THREE-WAY-COMP, then it is a 3-way comparison. Else, it is merging
4ad42cb5
MK
901;; with ancestor, in which case buffer-C contents is identical to buffer-A/B,
902;; contents (unless buffer-A is narrowed) depending on ediff-default-variant's
903;; value.
475f9031
KH
904;; BOUNDS specifies visibility bounds to use.
905(defun ediff-extract-diffs3 (diff-buffer word-mode three-way-comp
906 &optional bounds)
907 (let ((A-buffer ediff-buffer-A)
908 (B-buffer ediff-buffer-B)
909 (C-buffer ediff-buffer-C)
4ad42cb5 910 (anc-buffer ediff-ancestor-buffer)
475f9031
KH
911 (a-prev 1) ; needed to set the first diff line correctly
912 (b-prev 1)
913 (c-prev 1)
4ad42cb5 914 (anc-prev 1)
475f9031
KH
915 diff-list shift-A shift-B shift-C
916 )
917
918 ;; diff list contains word numbers or points, depending on word-mode
919 (setq diff-list (cons (if word-mode 'words 'points)
920 diff-list))
921 (if bounds
922 (setq shift-A
923 (ediff-overlay-start
924 (ediff-get-value-according-to-buffer-type 'A bounds))
925 shift-B
926 (ediff-overlay-start
927 (ediff-get-value-according-to-buffer-type 'B bounds))
928 shift-C
929 (if three-way-comp
930 (ediff-overlay-start
931 (ediff-get-value-according-to-buffer-type 'C bounds)))))
932
933 ;; reset point in buffers A, B, C
e756eb9f 934 (ediff-with-current-buffer A-buffer
475f9031 935 (goto-char (if shift-A shift-A (point-min))))
e756eb9f 936 (ediff-with-current-buffer B-buffer
475f9031 937 (goto-char (if shift-B shift-B (point-min))))
4ad42cb5 938 (if three-way-comp
e756eb9f 939 (ediff-with-current-buffer C-buffer
4ad42cb5
MK
940 (goto-char (if shift-C shift-C (point-min)))))
941 (if (ediff-buffer-live-p anc-buffer)
e756eb9f 942 (ediff-with-current-buffer anc-buffer
4ad42cb5 943 (goto-char (point-min))))
475f9031 944
e756eb9f 945 (ediff-with-current-buffer diff-buffer
475f9031
KH
946 (goto-char (point-min))
947 (while (re-search-forward ediff-match-diff3-line nil t)
948 ;; leave point after matched line
949 (beginning-of-line 2)
950 (let ((agreement (buffer-substring (match-beginning 1) (match-end 1))))
bbe6126c 951 ;; if the files A and B are the same and not 3way-comparison,
475f9031
KH
952 ;; ignore the difference
953 (if (or three-way-comp (not (string-equal agreement "3")))
954 (let* ((a-begin (car (ediff-get-diff3-group "1")))
955 (a-end (nth 1 (ediff-get-diff3-group "1")))
956 (b-begin (car (ediff-get-diff3-group "2")))
957 (b-end (nth 1 (ediff-get-diff3-group "2")))
4ad42cb5
MK
958 (c-or-anc-begin (car (ediff-get-diff3-group "3")))
959 (c-or-anc-end (nth 1 (ediff-get-diff3-group "3")))
475f9031
KH
960 (state-of-merge
961 (cond ((string-equal agreement "1") 'prefer-A)
962 ((string-equal agreement "2") 'prefer-B)
963 (t ediff-default-variant)))
964 (state-of-diff-merge
965 (if (memq state-of-merge '(default-A prefer-A)) 'B 'A))
966 (state-of-diff-comparison
967 (cond ((string-equal agreement "1") 'A)
968 ((string-equal agreement "2") 'B)
969 ((string-equal agreement "3") 'C)))
4ad42cb5 970 state-of-ancestor
475f9031
KH
971 c-begin c-end
972 a-begin-pt a-end-pt
4ad42cb5
MK
973 b-begin-pt b-end-pt
974 c-begin-pt c-end-pt
975 anc-begin-pt anc-end-pt)
475f9031 976
4ad42cb5
MK
977 (setq state-of-ancestor
978 (= c-or-anc-begin c-or-anc-end))
979
980 (cond (three-way-comp
981 (setq c-begin c-or-anc-begin
982 c-end c-or-anc-end))
983 ((eq ediff-default-variant 'default-B)
984 (setq c-begin b-begin
985 c-end b-end))
986 (t
987 (setq c-begin a-begin
988 c-end a-end)))
475f9031
KH
989
990 ;; compute main diff vector
991 (if word-mode
992 ;; make diff-list contain word numbers
993 (setq diff-list
994 (nconc diff-list
995 (list (vector
996 (- a-begin a-prev) (- a-end a-begin)
997 (- b-begin b-prev) (- b-end b-begin)
998 (- c-begin c-prev) (- c-end c-begin)
4ad42cb5
MK
999 nil nil ; dummy ancestor
1000 nil ; state of diff
1001 nil ; state of merge
1002 nil ; state of ancestor
1003 )))
475f9031
KH
1004 a-prev a-end
1005 b-prev b-end
1006 c-prev c-end)
1007 ;; else convert lines to points
e756eb9f 1008 (ediff-with-current-buffer A-buffer
475f9031
KH
1009 (forward-line (- a-begin a-prev))
1010 (setq a-begin-pt (point))
1011 (forward-line (- a-end a-begin))
1012 (setq a-end-pt (point)
1013 a-prev a-end))
e756eb9f 1014 (ediff-with-current-buffer B-buffer
475f9031
KH
1015 (forward-line (- b-begin b-prev))
1016 (setq b-begin-pt (point))
1017 (forward-line (- b-end b-begin))
1018 (setq b-end-pt (point)
1019 b-prev b-end))
e756eb9f 1020 (ediff-with-current-buffer C-buffer
475f9031
KH
1021 (forward-line (- c-begin c-prev))
1022 (setq c-begin-pt (point))
1023 (forward-line (- c-end c-begin))
1024 (setq c-end-pt (point)
1025 c-prev c-end))
4ad42cb5 1026 (if (ediff-buffer-live-p anc-buffer)
e756eb9f 1027 (ediff-with-current-buffer anc-buffer
4ad42cb5
MK
1028 (forward-line (- c-or-anc-begin anc-prev))
1029 (setq anc-begin-pt (point))
1030 (forward-line (- c-or-anc-end c-or-anc-begin))
1031 (setq anc-end-pt (point)
1032 anc-prev c-or-anc-end)))
475f9031
KH
1033 (setq diff-list
1034 (nconc
1035 diff-list
1036 ;; if comparing with ancestor, then there also is a
1037 ;; state-of-difference marker
1038 (if three-way-comp
1039 (list (vector
1040 a-begin-pt a-end-pt
1041 b-begin-pt b-end-pt
1042 c-begin-pt c-end-pt
4ad42cb5 1043 nil nil ; ancestor begin/end
475f9031 1044 state-of-diff-comparison
4ad42cb5
MK
1045 nil ; state of merge
1046 nil ; state of ancestor
475f9031
KH
1047 ))
1048 (list (vector a-begin-pt a-end-pt
1049 b-begin-pt b-end-pt
1050 c-begin-pt c-end-pt
4ad42cb5 1051 anc-begin-pt anc-end-pt
475f9031
KH
1052 state-of-diff-merge
1053 state-of-merge
4ad42cb5 1054 state-of-ancestor
475f9031
KH
1055 )))
1056 )))
1057 ))
1058
e756eb9f 1059 ))) ; end ediff-with-current-buffer
475f9031
KH
1060 diff-list
1061 ))
1062
1063;; Generate the difference vector and overlays for three files
1064;; File-C is either the third file to compare (in case of 3-way comparison)
1065;; or it is the ancestor file.
1066(defun ediff-setup-diff-regions3 (file-A file-B file-C)
475f9031
KH
1067 (or (ediff-buffer-live-p ediff-diff-buffer)
1068 (setq ediff-diff-buffer
1069 (get-buffer-create (ediff-unique-buffer-name "*ediff-diff" "*"))))
1070
4ad42cb5
MK
1071 (message "Computing differences ...")
1072 (ediff-exec-process ediff-diff3-program ediff-diff-buffer 'synchronize
1073 ediff-diff3-options file-A file-B file-C)
475f9031
KH
1074
1075 (ediff-prepare-error-list ediff-diff3-ok-lines-regexp ediff-diff-buffer)
4ad42cb5 1076 ;;(message "Computing differences ... done")
475f9031
KH
1077 (ediff-convert-diffs-to-overlays
1078 (ediff-extract-diffs3
1079 ediff-diff-buffer
1080 ediff-word-mode ediff-3way-comparison-job ediff-narrow-bounds)
1081 ))
1082
1083
4ae69eac 1084;; Execute PROGRAM asynchronously, unless OS/2, Windows-*, or DOS, or unless
e756eb9f
MK
1085;; SYNCH is non-nil. BUFFER must be a buffer object, and must be alive. The
1086;; OPTIONS arg is a list of options to pass to PROGRAM. It may be a blank
1087;; string. All elements in FILES must be strings. We also delete nil from
1088;; args.
1089(defun ediff-exec-process (program buffer synch options &rest files)
1090 (let ((data (match-data))
3af0304a 1091 (coding-system-for-read 'no-conversion)
e756eb9f
MK
1092 args)
1093 (setq args (append (split-string options) files))
1094 (setq args (delete "" (delq nil args))) ; delete nil and "" from arguments
475f9031
KH
1095 (unwind-protect
1096 (let ((directory default-directory)
1097 proc)
475f9031
KH
1098 (save-excursion
1099 (set-buffer buffer)
1100 (erase-buffer)
1101 (setq default-directory directory)
4ae69eac
MK
1102 (if (or (memq system-type '(emx ms-dos windows-nt windows-95))
1103 synch)
1104 ;; In OS/2 (emx) do it synchronously, since OS/2 doesn't let us
4ad42cb5
MK
1105 ;; delete files used by other processes. Thus, in ediff-buffers
1106 ;; and similar functions, we can't delete temp files because
4ae69eac 1107 ;; they might be used by the asynch process that computes
4ad42cb5
MK
1108 ;; custom diffs. So, we have to wait till custom diff
1109 ;; subprocess is done.
4ae69eac
MK
1110 ;; Similarly for Windows-*
1111 ;; In DOS, must synchronize because DOS doesn't have
1112 ;; asynchronous processes.
4ad42cb5
MK
1113 (apply 'call-process program nil buffer nil args)
1114 ;; On other systems, do it asynchronously.
1115 (setq proc (get-buffer-process buffer))
1116 (if proc (kill-process proc))
1117 (setq proc
1118 (apply 'start-process "Custom Diff" buffer program args))
1119 (setq mode-line-process '(":%s"))
1120 (set-process-sentinel proc 'ediff-process-sentinel)
1121 (set-process-filter proc 'ediff-process-filter)
1122 )))
2eb4bdca 1123 (store-match-data data))))
475f9031 1124
863312cd 1125;; This is shell-command-filter from simple.el in Emacs.
475f9031 1126;; Copied here because XEmacs doesn't have it.
4ad42cb5 1127(defun ediff-process-filter (proc string)
475f9031
KH
1128 ;; Do save-excursion by hand so that we can leave point numerically unchanged
1129 ;; despite an insertion immediately after it.
1130 (let* ((obuf (current-buffer))
1131 (buffer (process-buffer proc))
1132 opoint
1133 (window (get-buffer-window buffer))
1134 (pos (window-start window)))
1135 (unwind-protect
1136 (progn
1137 (set-buffer buffer)
1138 (or (= (point) (point-max))
1139 (setq opoint (point)))
1140 (goto-char (point-max))
1141 (insert-before-markers string))
1142 ;; insert-before-markers moved this marker: set it back.
1143 (set-window-start window pos)
1144 ;; Finish our save-excursion.
1145 (if opoint
1146 (goto-char opoint))
1147 (set-buffer obuf))))
1148
1149;; like shell-command-sentinel but doesn't print an exit status message
1150;; we do this because diff always exits with status 1, if diffs are found
1151;; so shell-command-sentinel displays a confusing message to the user
4ad42cb5 1152(defun ediff-process-sentinel (process signal)
475f9031
KH
1153 (if (and (memq (process-status process) '(exit signal))
1154 (buffer-name (process-buffer process)))
1155 (progn
1156 (save-excursion
1157 (set-buffer (process-buffer process))
1158 (setq mode-line-process nil))
1159 (delete-process process))))
1160
1161
1162;;; Word functions used to refine the current diff
1163
1164(defvar ediff-forward-word-function 'ediff-forward-word
1165 "*Function to call to move to the next word.
1166Used for splitting difference regions into individual words.")
1167
1168(defvar ediff-whitespace " \n\t\f"
1169 "*Characters constituting white space.
1170These characters are ignored when differing regions are split into words.")
1171
1172;;(defvar ediff-word-1 "a-zA-Z---_`'.?!:"
1173(defvar ediff-word-1 "a-zA-Z---_"
1174 "*Characters that constitute words of type 1.
1175More precisely, [ediff-word-1] is a regexp that matches type 1 words.
1176See `ediff-forward-word' for more details.")
1177
1178(defvar ediff-word-2 "0-9.,"
1179 "*Characters that constitute words of type 2.
1180More precisely, [ediff-word-2] is a regexp that matches type 2 words.
1181See `ediff-forward-word' for more details.")
1182
1183(defvar ediff-word-3 "`'?!:;\"{}[]()"
1184 "*Characters that constitute words of type 3.
1185More precisely, [ediff-word-3] is a regexp that matches type 3 words.
1186See `ediff-forward-word' for more details.")
1187
1188(defvar ediff-word-4
1189 (concat "^" ediff-word-1 ediff-word-2 ediff-word-3 ediff-whitespace)
1190 "*Characters that constitute words of type 4.
1191More precisely, [ediff-word-4] is a regexp that matches type 4 words.
1192See `ediff-forward-word' for more details.")
1193
1194;; Split region along word boundaries. Each word will be on its own line.
1195;; Output to buffer out-buffer.
1196(defun ediff-forward-word ()
1197 "Move point one word forward.
1198There are four types of words, each of which consists entirely of
1199characters in `ediff-word-1', `ediff-word-2', `ediff-word-3', or
1200`ediff-word-4'. Words are recognized by passing these in turn as the
1201argument to `skip-chars-forward'."
1202 (or (> (skip-chars-forward ediff-word-1) 0)
1203 (> (skip-chars-forward ediff-word-2) 0)
1204 (> (skip-chars-forward ediff-word-3) 0)
1205 (> (skip-chars-forward ediff-word-4) 0)
1206 ))
1207
1208(defun ediff-wordify (beg end in-buffer out-buffer &optional control-buf)
1209 (let (sv-point string)
1210 (save-excursion
1211 (set-buffer in-buffer)
e756eb9f 1212 (setq string (buffer-substring-no-properties beg end))
475f9031
KH
1213
1214 (set-buffer out-buffer)
1215 (erase-buffer)
1216 (insert string)
1217 (goto-char (point-min))
1218 (skip-chars-forward ediff-whitespace)
1219 (delete-region (point-min) (point))
1220
1221 (while (not (eobp))
1222 ;; eval incontrol buf to let user create local versions for
1223 ;; different invocations
1224 (if control-buf
1225 (funcall
e756eb9f 1226 (ediff-with-current-buffer control-buf ediff-forward-word-function))
475f9031
KH
1227 (funcall ediff-forward-word-function))
1228 (setq sv-point (point))
1229 (skip-chars-forward ediff-whitespace)
1230 (delete-region sv-point (point))
1231 (insert "\n")))))
1232
1233;; copy string from BEG END from IN-BUF to OUT-BUF
1234(defun ediff-copy-to-buffer (beg end in-buffer out-buffer)
1235 (let (string)
1236 (save-excursion
1237 (set-buffer in-buffer)
1238 (setq string (buffer-substring beg end))
1239
1240 (set-buffer out-buffer)
1241 (erase-buffer)
1242 (insert string)
1243 (goto-char (point-min)))))
1244
1245
1246;; goto word #n starting at current position in buffer `buf'
1247;; For ediff, a word is either a string of a-z,A-Z, incl `-' and `_';
1248;; or a string of other non-blanks. A blank is a \n\t\f
1249;; If `flag' is non-nil, goto the end of the n-th word.
1250(defun ediff-goto-word (n buf &optional flag)
1251 ;; remember val ediff-forward-word-function has in ctl buf
1252 (let ((fwd-word-fun ediff-forward-word-function))
e756eb9f 1253 (ediff-with-current-buffer buf
475f9031
KH
1254 (skip-chars-forward ediff-whitespace)
1255 (while (> n 1)
1256 (funcall fwd-word-fun)
1257 (skip-chars-forward ediff-whitespace)
1258 (setq n (1- n)))
1259 (if (and flag (> n 0))
1260 (funcall fwd-word-fun))
1261 (point))))
1262
328b4b70
MK
1263(defun ediff-same-file-contents (f1 f2)
1264 "T if F1 and F2 have identical contents."
3af0304a
MK
1265 (let ((res
1266 (apply 'call-process ediff-cmp-program nil nil nil
1267 (append ediff-cmp-options (list f1 f2)))))
328b4b70
MK
1268 (and (numberp res) (eq res 0))))
1269
475f9031 1270
bbe6126c
MK
1271;;; Local Variables:
1272;;; eval: (put 'ediff-defvar-local 'lisp-indent-hook 'defun)
e756eb9f
MK
1273;;; eval: (put 'ediff-with-current-buffer 'lisp-indent-hook 1)
1274;;; eval: (put 'ediff-with-current-buffer 'edebug-form-spec '(form body))
bbe6126c
MK
1275;;; End:
1276
4ae69eac 1277
475f9031 1278;; ediff-diff.el ends here