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