annotate lisp/ediff/ediff-diff.el @ 134:34a5b81f86ba r20-2b1

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