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