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