Mercurial > emacs
annotate lisp/ediff-init.el @ 20275:0e102e83c51d
(isearch-yank-string): New helper function.
(isearch-yank-kill, isearch-yank-word, isearch-yank-line): Use it.
(isearch-yank-x-selection): New function.
(isearch-yank): Function deleted.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Tue, 18 Nov 1997 22:31:16 +0000 |
parents | f44ff2c52fac |
children | 4327dd36b71b |
rev | line source |
---|---|
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1 ;;; ediff-init.el --- Macros, variables, and defsubsts used by Ediff |
14169 | 2 |
18054 | 3 ;; Copyright (C) 1994, 1995, 1996, 1997 Free Software Foundation, Inc. |
11042 | 4 |
5 ;; Author: Michael Kifer <kifer@cs.sunysb.edu> | |
6 | |
7 ;; This file is part of GNU Emacs. | |
8 | |
9 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
10 ;; it under the terms of the GNU General Public License as published by | |
11 ;; the Free Software Foundation; either version 2, or (at your option) | |
12 ;; any later version. | |
13 | |
14 ;; GNU Emacs is distributed in the hope that it will be useful, | |
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 ;; GNU General Public License for more details. | |
18 | |
19 ;; You should have received a copy of the GNU General Public License | |
14169 | 20 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
22 ;; Boston, MA 02111-1307, USA. | |
11042 | 23 |
14169 | 24 ;;; Code: |
11042 | 25 |
15480
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
26 ;; Start compiler pacifier |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
27 (defvar ediff-metajob-name) |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
28 (defvar ediff-meta-buffer) |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
29 (defvar pm-color-alist) |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
30 (defvar ediff-grab-mouse) |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
31 (defvar ediff-mouse-pixel-position) |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
32 (defvar ediff-mouse-pixel-threshold) |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
33 (defvar ediff-whitespace) |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
34 (defvar ediff-multiframe) |
18054 | 35 |
36 (and noninteractive | |
37 (eval-when-compile | |
38 (load "ange-ftp" 'noerror))) | |
15480
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
39 ;; end pacifier |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
40 |
12085
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
41 ;; Is it XEmacs? |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
42 (defconst ediff-xemacs-p (string-match "XEmacs" emacs-version)) |
12085
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
43 ;; Is it Emacs? |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
44 (defconst ediff-emacs-p (not ediff-xemacs-p)) |
15480
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
45 |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
46 (defvar ediff-force-faces nil |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
47 "If t, Ediff will think that it is running on a display that supports faces. |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
48 This is provided as a temporary relief for users of face-capable displays |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
49 that Ediff doesn't know about.") |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
50 |
12085
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
51 ;; Are we running as a window application or on a TTY? |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
52 (defsubst ediff-device-type () |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
53 (if ediff-emacs-p |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
54 window-system |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
55 (device-type (selected-device)))) |
15480
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
56 |
12085
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
57 ;; in XEmacs: device-type is tty on tty and stream in batch. |
14582
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
58 (defun ediff-window-display-p () |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
59 (and (ediff-device-type) (not (memq (ediff-device-type) '(tty pc stream))))) |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
60 |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
61 ;; test if supports faces |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
62 ;; ediff-force-faces is for those devices that support faces, but we don't know |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
63 ;; this yet |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
64 (defun ediff-has-face-support-p () |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
65 (cond ((ediff-window-display-p)) |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
66 (ediff-force-faces) |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
67 (ediff-emacs-p (memq (ediff-device-type) '(pc))) |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
68 (ediff-xemacs-p (memq (ediff-device-type) '(tty pc))))) |
16766
beb94a5271e2
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16248
diff
changeset
|
69 |
15480
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
70 |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
71 ;; Defines SYMBOL as an advertised local variable. |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
72 ;; Performs a defvar, then executes `make-variable-buffer-local' on |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
73 ;; the variable. Also sets the `permanent-local' property, |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
74 ;; so that `kill-all-local-variables' (called by major-mode setting |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
75 ;; commands) won't destroy Ediff control variables. |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
76 ;; |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
77 ;; Plagiarised from `emerge-defvar-local' for XEmacs. |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
78 (defmacro ediff-defvar-local (var value doc) |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
79 (` (progn |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
80 (defvar (, var) (, value) (, doc)) |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
81 (make-variable-buffer-local '(, var)) |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
82 (put '(, var) 'permanent-local t)))) |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
83 |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
84 |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
85 |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
86 ;; Variables that control each Ediff session---local to the control buffer. |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
87 |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
88 ;; Mode variables |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
89 ;; The buffer in which the A variant is stored. |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
90 (ediff-defvar-local ediff-buffer-A nil "") |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
91 ;; The buffer in which the B variant is stored. |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
92 (ediff-defvar-local ediff-buffer-B nil "") |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
93 ;; The buffer in which the C variant is stored. |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
94 (ediff-defvar-local ediff-buffer-C nil "") |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
95 ;; Ancestor buffer |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
96 (ediff-defvar-local ediff-ancestor-buffer nil "") |
18054 | 97 ;; The Ediff control buffer |
15480
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
98 (ediff-defvar-local ediff-control-buffer nil "") |
11042 | 99 |
19047 | 100 |
101 ;; Association between buff-type and ediff-buffer-* | |
102 (defconst ediff-buffer-alist | |
103 '((?A . ediff-buffer-A) | |
104 (?B . ediff-buffer-B) | |
105 (?C . ediff-buffer-C))) | |
106 | |
11042 | 107 ;;; Macros |
108 (defmacro ediff-odd-p (arg) | |
109 (` (eq (logand (, arg) 1) 1))) | |
110 | |
111 (defmacro ediff-buffer-live-p (buf) | |
112 (` (and (, buf) (get-buffer (, buf)) (buffer-name (get-buffer (, buf)))))) | |
113 | |
114 (defmacro ediff-get-buffer (arg) | |
115 (` (cond ((eq (, arg) 'A) ediff-buffer-A) | |
116 ((eq (, arg) 'B) ediff-buffer-B) | |
117 ((eq (, arg) 'C) ediff-buffer-C) | |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
118 ((eq (, arg) 'Ancestor) ediff-ancestor-buffer) |
11042 | 119 ) |
120 )) | |
121 | |
122 (defmacro ediff-get-value-according-to-buffer-type (buf-type list) | |
123 (` (cond ((eq (, buf-type) 'A) (nth 0 (, list))) | |
124 ((eq (, buf-type) 'B) (nth 1 (, list))) | |
125 ((eq (, buf-type) 'C) (nth 2 (, list)))))) | |
126 | |
127 (defmacro ediff-char-to-buftype (arg) | |
128 (` (cond ((memq (, arg) '(?a ?A)) 'A) | |
129 ((memq (, arg) '(?b ?B)) 'B) | |
130 ((memq (, arg) '(?c ?C)) 'C) | |
131 ) | |
132 )) | |
19047 | 133 |
19241 | 134 |
19047 | 135 ;; A-list is supposed to be of the form (A . symb) (B . symb)...) |
136 ;; where the first part of any association is a buffer type and the second is | |
137 ;; an appropriate symbol. Given buffer-type, this function returns the | |
138 ;; symbol. This is used to avoid using `intern' | |
139 (defsubst ediff-get-symbol-from-alist (buf-type alist) | |
140 (cdr (assoc buf-type alist))) | |
11042 | 141 |
19047 | 142 (defconst ediff-difference-vector-alist |
143 '((A . ediff-difference-vector-A) | |
144 (B . ediff-difference-vector-B) | |
145 (C . ediff-difference-vector-C) | |
146 (Ancestor . ediff-difference-vector-Ancestor))) | |
147 | |
11042 | 148 (defmacro ediff-get-difference (n buf-type) |
149 (` (aref | |
150 (symbol-value | |
19047 | 151 (ediff-get-symbol-from-alist |
152 (, buf-type) ediff-difference-vector-alist)) | |
153 (, n)))) | |
11042 | 154 |
18054 | 155 ;; Tell if it has been previously determined that the region has |
11042 | 156 ;; no diffs other than the white space and newlines |
157 ;; The argument, N, is the diff region number used by Ediff to index the | |
158 ;; diff vector. It is 1 less than the number seen by the user. | |
18054 | 159 ;; Returns: |
160 ;; t if the diffs are whitespace in all buffers | |
161 ;; 'A (in 3-buf comparison only) if there are only whitespace | |
162 ;; diffs in bufs B and C | |
163 ;; 'B (in 3-buf comparison only) if there are only whitespace | |
164 ;; diffs in bufs A and C | |
165 ;; 'C (in 3-buf comparison only) if there are only whitespace | |
166 ;; diffs in bufs A and B | |
11042 | 167 ;; |
168 ;; A difference vector has the form: | |
169 ;; [diff diff diff ...] | |
170 ;; where each diff has the form: | |
171 ;; [overlay fine-diff-vector no-fine-diffs-flag] | |
172 ;; fine-diff-vector is a vector [fine-diff fine-diff fine-diff ...] | |
173 (defmacro ediff-no-fine-diffs-p (n) | |
174 (` (aref (ediff-get-difference (, n) 'A) 2))) | |
175 | |
176 (defmacro ediff-get-diff-overlay-from-diff-record (diff-rec) | |
177 (` (aref (, diff-rec) 0))) | |
178 | |
179 (defmacro ediff-get-diff-overlay (n buf-type) | |
180 (` (ediff-get-diff-overlay-from-diff-record | |
181 (ediff-get-difference (, n) (, buf-type))))) | |
182 | |
183 (defmacro ediff-get-fine-diff-vector-from-diff-record (diff-rec) | |
184 (` (aref (, diff-rec) 1))) | |
185 | |
186 (defmacro ediff-set-fine-diff-vector (n buf-type fine-vec) | |
187 (` (aset (ediff-get-difference (, n) (, buf-type)) 1 (, fine-vec)))) | |
188 | |
189 (defmacro ediff-get-state-of-diff (n buf-type) | |
190 (` (if (ediff-buffer-live-p ediff-buffer-C) | |
191 (aref (ediff-get-difference (, n) (, buf-type)) 3)))) | |
192 (defmacro ediff-set-state-of-diff (n buf-type val) | |
193 (` (aset (ediff-get-difference (, n) (, buf-type)) 3 (, val)))) | |
194 (defmacro ediff-get-state-of-merge (n) | |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
195 (` (if ediff-state-of-merge |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
196 (aref (aref ediff-state-of-merge (, n)) 0)))) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
197 (defmacro ediff-get-state-of-ancestor (n) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
198 (` (if ediff-state-of-merge |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
199 (aref (aref ediff-state-of-merge (, n)) 1)))) |
11042 | 200 (defmacro ediff-set-state-of-merge (n val) |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
201 (` (if ediff-state-of-merge |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
202 (aset (aref ediff-state-of-merge (, n)) 0 (, val))))) |
11042 | 203 |
204 ;; if flag is t, puts a mark on diff region saying that | |
205 ;; the differences are in white space only. If flag is nil, | |
206 ;; the region is marked as essential (i.e., differences are | |
207 ;; not just in the white space and newlines.) | |
208 (defmacro ediff-mark-diff-as-space-only (n flag) | |
209 (` (aset (ediff-get-difference (, n) 'A) 2 (, flag)))) | |
210 | |
211 (defmacro ediff-get-fine-diff-vector (n buf-type) | |
212 (` (ediff-get-fine-diff-vector-from-diff-record | |
213 (ediff-get-difference (, n) (, buf-type))))) | |
214 | |
19047 | 215 ;; Macro to switch to BUFFER, evaluate BODY, returns to original buffer. |
216 ;; Doesn't save the point and mark. | |
217 ;; This is `with-current-buffer' with the added test for live buffers." | |
218 (defmacro ediff-with-current-buffer (buffer &rest body) | |
219 (` (if (ediff-buffer-live-p (, buffer)) | |
220 (save-current-buffer | |
221 (set-buffer (, buffer)) | |
222 (,@ body)) | |
223 (or (eq this-command 'ediff-quit) | |
224 (error ediff-KILLED-VITAL-BUFFER)) | |
225 ))) | |
226 | |
11042 | 227 |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
228 (defsubst ediff-multiframe-setup-p () |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
229 (and (ediff-window-display-p) ediff-multiframe)) |
11042 | 230 |
231 (defmacro ediff-narrow-control-frame-p () | |
232 (` (and (ediff-multiframe-setup-p) | |
233 (equal ediff-help-message ediff-brief-message-string)))) | |
234 | |
235 (defmacro ediff-3way-comparison-job () | |
236 (` (memq | |
237 ediff-job-name | |
238 '(ediff-files3 ediff-buffers3)))) | |
239 (ediff-defvar-local ediff-3way-comparison-job nil "") | |
240 | |
241 (defmacro ediff-merge-job () | |
242 (` (memq | |
243 ediff-job-name | |
244 '(ediff-merge-files | |
245 ediff-merge-buffers | |
246 ediff-merge-files-with-ancestor | |
247 ediff-merge-buffers-with-ancestor | |
248 ediff-merge-revisions | |
249 ediff-merge-revisions-with-ancestor)))) | |
250 (ediff-defvar-local ediff-merge-job nil "") | |
251 | |
252 (defmacro ediff-merge-with-ancestor-job () | |
253 (` (memq | |
254 ediff-job-name | |
255 '(ediff-merge-files-with-ancestor | |
256 ediff-merge-buffers-with-ancestor | |
257 ediff-merge-revisions-with-ancestor)))) | |
258 (ediff-defvar-local ediff-merge-with-ancestor-job nil "") | |
259 | |
260 (defmacro ediff-3way-job () | |
261 (` (or ediff-3way-comparison-job ediff-merge-job))) | |
262 (ediff-defvar-local ediff-3way-job nil "") | |
263 | |
264 ;; A diff3 job is like a 3way job, but ediff-merge doesn't require the use | |
265 ;; of diff3. | |
266 (defmacro ediff-diff3-job () | |
267 (` (or ediff-3way-comparison-job | |
268 ediff-merge-with-ancestor-job))) | |
269 (ediff-defvar-local ediff-diff3-job nil "") | |
270 | |
12085
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
271 (defmacro ediff-windows-job () |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
272 (` (memq ediff-job-name '(ediff-windows-wordwise ediff-windows-linewise)))) |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
273 (ediff-defvar-local ediff-windows-job nil "") |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
274 |
11042 | 275 (defmacro ediff-word-mode-job () |
12085
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
276 (` (memq ediff-job-name '(ediff-windows-wordwise ediff-regions-wordwise)))) |
11042 | 277 (ediff-defvar-local ediff-word-mode-job nil "") |
278 | |
12085
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
279 (defmacro ediff-narrow-job () |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
280 (` (memq ediff-job-name '(ediff-windows-wordwise |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
281 ediff-regions-wordwise |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
282 ediff-windows-linewise |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
283 ediff-regions-linewise)))) |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
284 (ediff-defvar-local ediff-narrow-job nil "") |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
285 |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
286 ;; Note: ediff-merge-directory-revisions-with-ancestor is not treated as an |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
287 ;; ancestor metajob, since it behaves differently. |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
288 (defsubst ediff-ancestor-metajob (&optional metajob) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
289 (memq (or metajob ediff-metajob-name) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
290 '(ediff-merge-directories-with-ancestor |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
291 ediff-merge-filegroups-with-ancestor))) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
292 (defsubst ediff-revision-metajob (&optional metajob) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
293 (memq (or metajob ediff-metajob-name) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
294 '(ediff-directory-revisions |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
295 ediff-merge-directory-revisions |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
296 ediff-merge-directory-revisions-with-ancestor))) |
15480
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
297 (defsubst ediff-patch-metajob (&optional metajob) |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
298 (memq (or metajob ediff-metajob-name) |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
299 '(ediff-multifile-patch))) |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
300 ;; metajob involving only one group of files, such as multipatch or directory |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
301 ;; revision |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
302 (defsubst ediff-one-filegroup-metajob (&optional metajob) |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
303 (or (ediff-revision-metajob metajob) |
15480
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
304 (ediff-patch-metajob metajob) |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
305 ;; add more here |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
306 )) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
307 (defsubst ediff-collect-diffs-metajob (&optional metajob) |
14582
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
308 (memq (or metajob ediff-metajob-name) |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
309 '(ediff-directories |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
310 ediff-directory-revisions |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
311 ediff-merge-directories |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
312 ediff-merge-directories-with-ancestor |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
313 ediff-merge-directory-revisions |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
314 ediff-merge-directory-revisions-with-ancestor |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
315 ;; add more here |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
316 ))) |
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
317 (defsubst ediff-merge-metajob (&optional metajob) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
318 (memq (or metajob ediff-metajob-name) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
319 '(ediff-merge-directories |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
320 ediff-merge-directories-with-ancestor |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
321 ediff-merge-directory-revisions |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
322 ediff-merge-directory-revisions-with-ancestor |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
323 ediff-merge-filegroups-with-ancestor |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
324 ;; add more here |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
325 ))) |
14582
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
326 |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
327 (defsubst ediff-metajob3 (&optional metajob) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
328 (memq (or metajob ediff-metajob-name) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
329 '(ediff-merge-directories-with-ancestor |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
330 ediff-merge-filegroups-with-ancestor |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
331 ediff-directories3 |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
332 ediff-filegroups3))) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
333 (defsubst ediff-comparison-metajob3 (&optional metajob) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
334 (memq (or metajob ediff-metajob-name) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
335 '(ediff-directories3 ediff-filegroups3))) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
336 |
16766
beb94a5271e2
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16248
diff
changeset
|
337 ;; with no argument, checks if we are in ediff-control-buffer |
beb94a5271e2
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16248
diff
changeset
|
338 ;; with argument, checks if we are in ediff-meta-buffer |
beb94a5271e2
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16248
diff
changeset
|
339 (defun ediff-in-control-buffer-p (&optional meta-buf-p) |
beb94a5271e2
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16248
diff
changeset
|
340 (and (boundp 'ediff-control-buffer) |
beb94a5271e2
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16248
diff
changeset
|
341 (eq (if meta-buf-p ediff-meta-buffer ediff-control-buffer) |
beb94a5271e2
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16248
diff
changeset
|
342 (current-buffer)))) |
beb94a5271e2
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16248
diff
changeset
|
343 |
beb94a5271e2
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16248
diff
changeset
|
344 (defsubst ediff-barf-if-not-control-buffer (&optional meta-buf-p) |
beb94a5271e2
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16248
diff
changeset
|
345 (or (ediff-in-control-buffer-p meta-buf-p) |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
346 (error "%S: This command runs in Ediff Control Buffer only!" |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
347 this-command))) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
348 |
20206 | 349 (defgroup ediff-highlighting nil |
350 "Hilighting of difference regions in Ediff" | |
351 :prefix "ediff-" | |
352 :group 'ediff) | |
353 | |
354 (defgroup ediff-merge nil | |
355 "Merging utilities" | |
356 :prefix "ediff-" | |
357 :group 'ediff) | |
358 | |
359 (defgroup ediff-hook nil | |
360 "Hooks called by Ediff" | |
361 :prefix "ediff-" | |
362 :group 'ediff) | |
363 | |
11042 | 364 ;; Hook variables |
365 | |
18839 | 366 (defcustom ediff-before-setup-windows-hook nil |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
367 "*Hooks to run before Ediff sets its window configuration. |
11042 | 368 This can be used to save the previous window config, which can be restored |
18839 | 369 on ediff-quit or ediff-suspend." |
370 :type 'hook | |
20206 | 371 :group 'ediff-hook) |
18839 | 372 (defcustom ediff-after-setup-windows-hook nil |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
373 "*Hooks to run after Ediff sets its window configuration. |
18839 | 374 This can be used to set up control window or icon in a desired place." |
375 :type 'hook | |
20206 | 376 :group 'ediff-hook) |
18839 | 377 (defcustom ediff-before-setup-control-frame-hook nil |
11042 | 378 "*Hooks run before setting up the frame to display Ediff Control Panel. |
379 Can be used to change control frame parameters to position it where it | |
18839 | 380 is desirable." |
381 :type 'hook | |
20206 | 382 :group 'ediff-hook) |
18839 | 383 (defcustom ediff-after-setup-control-frame-hook nil |
11042 | 384 "*Hooks run after setting up the frame to display Ediff Control Panel. |
18839 | 385 Can be used to move the frame where it is desired." |
386 :type 'hook | |
20206 | 387 :group 'ediff-hook) |
18839 | 388 (defcustom ediff-startup-hook nil |
389 "*Hooks to run in the control buffer after Ediff has been set up." | |
390 :type 'hook | |
20206 | 391 :group 'ediff-hook) |
18839 | 392 (defcustom ediff-select-hook nil |
393 "*Hooks to run after a difference has been selected." | |
394 :type 'hook | |
20206 | 395 :group 'ediff-hook) |
18839 | 396 (defcustom ediff-unselect-hook nil |
397 "*Hooks to run after a difference has been unselected." | |
398 :type 'hook | |
20206 | 399 :group 'ediff-hook) |
18839 | 400 (defcustom ediff-prepare-buffer-hook nil |
401 "*Hooks called after buffers A, B, and C are set up." | |
402 :type 'hook | |
20206 | 403 :group 'ediff-hook) |
18839 | 404 (defcustom ediff-load-hook nil |
405 "*Hook run after Ediff is loaded. Can be used to change defaults." | |
406 :type 'hook | |
20206 | 407 :group 'ediff-hook) |
11042 | 408 |
18839 | 409 (defcustom ediff-mode-hook nil |
11042 | 410 "*Hook run just after ediff-mode is set up in the control buffer. |
411 This is done before any windows or frames are created. One can use it to | |
18839 | 412 set local variables that determine how the display looks like." |
413 :type 'hook | |
20206 | 414 :group 'ediff-hook) |
18839 | 415 (defcustom ediff-keymap-setup-hook nil |
416 "*Hook run just after the default bindings in Ediff keymap are set up." | |
417 :type 'hook | |
20206 | 418 :group 'ediff-hook) |
11042 | 419 |
18839 | 420 (defcustom ediff-display-help-hook nil |
421 "*Hooks run after preparing the help message." | |
422 :type 'hook | |
20206 | 423 :group 'ediff-hook) |
11042 | 424 |
18839 | 425 (defcustom ediff-suspend-hook (list 'ediff-default-suspend-function) |
426 "*Hooks to run in the Ediff control buffer when Ediff is suspended." | |
427 :type 'hook | |
20206 | 428 :group 'ediff-hook) |
18839 | 429 (defcustom ediff-quit-hook (list 'ediff-cleanup-mess) |
430 "*Hooks to run in the Ediff control buffer after finishing Ediff." | |
431 :type 'hook | |
20206 | 432 :group 'ediff-hook) |
18839 | 433 (defcustom ediff-cleanup-hook nil |
12085
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
434 "*Hooks to run on exiting Ediff but before killing the control buffer. |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
435 This is a place to do various cleanups, such as deleting the variant buffers. |
18839 | 436 Ediff provides a function, `ediff-janitor', as one such possible hook." |
437 :type 'hook | |
20206 | 438 :group 'ediff-hook) |
14582
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
439 |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
440 ;; Error messages |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
441 (defconst ediff-KILLED-VITAL-BUFFER |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
442 "You have killed a vital Ediff buffer---you must leave Ediff now!") |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
443 (defconst ediff-NO-DIFFERENCES |
15480
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
444 "Sorry, comparison of identical variants is not what I am made for...") |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
445 (defconst ediff-BAD-DIFF-NUMBER |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
446 ;; %S stands for this-command, %d - diff number, %d - max diff |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
447 "%S: Bad diff region number, %d. Valid numbers are 1 to %d") |
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
448 (defconst ediff-BAD-INFO (format " |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
449 *** The Info file for Ediff, a part of the standard distribution |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
450 *** of %sEmacs, does not seem to be properly installed. |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
451 *** |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
452 *** Please contact your system administrator. " |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
453 (if ediff-xemacs-p "X" ""))) |
11042 | 454 |
455 ;; Selective browsing | |
456 | |
457 (ediff-defvar-local ediff-skip-diff-region-function 'ediff-show-all-diffs | |
458 "Function that determines the next/previous diff region to show. | |
459 Should return t for regions to be ignored and nil otherwise. | |
460 This function gets a region number as an argument. The region number | |
461 is the one used internally by Ediff. It is 1 less than the number seen | |
462 by the user.") | |
463 | |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
464 (ediff-defvar-local ediff-hide-regexp-matches-function |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
465 'ediff-hide-regexp-matches |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
466 "Function to use in determining which regions to hide. |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
467 See the documentation string of `ediff-hide-regexp-matches' for details.") |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
468 (ediff-defvar-local ediff-focus-on-regexp-matches-function |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
469 'ediff-focus-on-regexp-matches |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
470 "Function to use in determining which regions to focus on. |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
471 See the documentation string of `ediff-focus-on-regexp-matches' for details.") |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
472 |
11042 | 473 ;; Regexp that determines buf A regions to focus on when skipping to diff |
474 (ediff-defvar-local ediff-regexp-focus-A "" "") | |
475 ;; Regexp that determines buf B regions to focus on when skipping to diff | |
476 (ediff-defvar-local ediff-regexp-focus-B "" "") | |
477 ;; Regexp that determines buf C regions to focus on when skipping to diff | |
478 (ediff-defvar-local ediff-regexp-focus-C "" "") | |
479 ;; connective that determines whether to focus regions that match both or | |
480 ;; one of the regexps | |
481 (ediff-defvar-local ediff-focus-regexp-connective 'and "") | |
482 | |
483 ;; Regexp that determines buf A regions to ignore when skipping to diff | |
484 (ediff-defvar-local ediff-regexp-hide-A "" "") | |
485 ;; Regexp that determines buf B regions to ignore when skipping to diff | |
486 (ediff-defvar-local ediff-regexp-hide-B "" "") | |
487 ;; Regexp that determines buf C regions to ignore when skipping to diff | |
488 (ediff-defvar-local ediff-regexp-hide-C "" "") | |
489 ;; connective that determines whether to hide regions that match both or | |
490 ;; one of the regexps | |
491 (ediff-defvar-local ediff-hide-regexp-connective 'and "") | |
492 | |
493 | |
18839 | 494 ;;; Copying difference regions between buffers. |
495 | |
496 ;; A list of killed diffs. | |
497 ;; A diff is saved here if it is replaced by a diff | |
498 ;; from another buffer. This alist has the form: | |
499 ;; \((num (buff-object . diff) (buff-object . diff) (buff-object . diff)) ...), | |
500 ;; where some buffer-objects may be missing. | |
501 (ediff-defvar-local ediff-killed-diffs-alist nil "") | |
11042 | 502 |
503 | |
504 ;; Highlighting | |
18839 | 505 (defcustom ediff-before-flag-bol (if ediff-xemacs-p (make-glyph "->>") "->>") |
506 "*Flag placed before a highlighted block of differences, if block starts at beginning of a line." | |
507 :type 'string | |
508 :tag "Region before-flag at beginning of line" | |
509 :group 'ediff) | |
11042 | 510 |
18839 | 511 (defcustom ediff-after-flag-eol (if ediff-xemacs-p (make-glyph "<<-") "<<-") |
512 "*Flag placed after a highlighted block of differences, if block ends at end of a line." | |
513 :type 'string | |
514 :tag "Region after-flag at end of line" | |
515 :group 'ediff) | |
516 | |
517 (defcustom ediff-before-flag-mol (if ediff-xemacs-p (make-glyph "->>") "->>") | |
518 "*Flag placed before a highlighted block of differences, if block starts in mid-line." | |
519 :type 'string | |
520 :tag "Region before-flag in the middle of line" | |
521 :group 'ediff) | |
522 (defcustom ediff-after-flag-mol (if ediff-xemacs-p (make-glyph "<<-") "<<-") | |
523 "*Flag placed after a highlighted block of differences, if block ends in mid-line." | |
524 :type 'string | |
525 :tag "Region after-flag in the middle of line" | |
526 :group 'ediff) | |
11042 | 527 |
528 | |
529 (ediff-defvar-local ediff-use-faces t | |
14582
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
530 "If t, differences are highlighted using faces, if device supports faces. |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
531 If nil, differences are highlighted using ASCII flags, ediff-before-flag |
11042 | 532 and ediff-after-flag. On a non-window system, differences are always |
533 highlighted using ASCII flags. | |
534 This variable can be set either in .emacs or toggled interactively. | |
535 Use `setq-default' if setting it in .emacs") | |
536 | |
537 ;; this indicates that diff regions are word-size, so fine diffs are | |
12085
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
538 ;; permanently nixed; used in ediff-windows-wordwise and ediff-regions-wordwise |
11042 | 539 (ediff-defvar-local ediff-word-mode nil "") |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
540 ;; Name of the job (ediff-files, ediff-windows, etc.) |
11042 | 541 (ediff-defvar-local ediff-job-name nil "") |
542 | |
543 ;; Narrowing and ediff-region/windows support | |
544 ;; This is a list (overlay-A overlay-B overlay-C) | |
545 ;; If set, Ediff compares only those parts of buffers A/B/C that lie within | |
546 ;; the bounds of these overlays. | |
547 (ediff-defvar-local ediff-narrow-bounds nil "") | |
548 | |
549 ;; List (overlay-A overlay-B overlay-C), where each overlay spans the | |
550 ;; entire corresponding buffer. | |
551 (ediff-defvar-local ediff-wide-bounds nil "") | |
552 | |
553 ;; Current visibility boundaries in buffers A, B, and C. | |
554 ;; This is also a list of overlays. When the user toggles narrow/widen, | |
555 ;; this list changes from ediff-wide-bounds to ediff-narrow-bounds. | |
556 ;; and back. | |
557 (ediff-defvar-local ediff-visible-bounds nil "") | |
558 | |
559 (ediff-defvar-local ediff-start-narrowed t | |
12085
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
560 "Non-nil means start narrowed, if doing ediff-windows-* or ediff-regions-*") |
11042 | 561 (ediff-defvar-local ediff-quit-widened t |
562 "*Non-nil means: when finished, Ediff widens buffers A/B. | |
563 Actually, Ediff restores the scope of visibility that existed at startup.") | |
18839 | 564 |
565 (defcustom ediff-keep-variants t | |
566 "*Nil means that non-modified variant buffers should be removed at the end of the session after some interrogation. | |
13977
11784c04028a
(ediff-keep-variants): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
13494
diff
changeset
|
567 Supplying a prefix argument to the quit command `q' temporarily reverses the |
18839 | 568 meaning of this variable." |
569 :type 'boolean | |
570 :group 'ediff) | |
11042 | 571 |
572 (ediff-defvar-local ediff-highlight-all-diffs t | |
573 "If nil, only the selected differences are highlighted. | |
574 This variable can be set either in .emacs or toggled interactively, using | |
575 ediff-toggle-hilit. Use `setq-default' to set it.") | |
576 | |
577 ;; A var local to each control panel buffer. Indicates highlighting style | |
578 ;; in effect for this buffer: `face', `ascii', nil -- temporarily | |
579 ;; unhighlighted, `off' -- turned off \(on a dumb terminal only\). | |
580 (ediff-defvar-local ediff-highlighting-style nil "") | |
581 | |
582 | |
583 ;; The suffix of the control buffer name. | |
584 (ediff-defvar-local ediff-control-buffer-suffix nil "") | |
585 ;; Same as ediff-control-buffer-suffix, but without <,>. | |
586 ;; It's a number rather than string. | |
587 (ediff-defvar-local ediff-control-buffer-number nil "") | |
588 | |
589 | |
590 ;; The original values of ediff-protected-variables for buffer A | |
12085
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
591 (ediff-defvar-local ediff-buffer-values-orig-A nil "") |
11042 | 592 ;; The original values of ediff-protected-variables for buffer B |
12085
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
593 (ediff-defvar-local ediff-buffer-values-orig-B nil "") |
11042 | 594 ;; The original values of ediff-protected-variables for buffer C |
12085
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
595 (ediff-defvar-local ediff-buffer-values-orig-C nil "") |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
596 ;; The original values of ediff-protected-variables for buffer Ancestor |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
597 (ediff-defvar-local ediff-buffer-values-orig-Ancestor nil "") |
18839 | 598 |
19047 | 599 ;; association between buff-type and ediff-buffer-values-orig-* |
600 (defconst ediff-buffer-values-orig-alist | |
601 '((A . ediff-buffer-values-orig-A) | |
602 (B . ediff-buffer-values-orig-B) | |
603 (C . ediff-buffer-values-orig-C) | |
604 (Ancestor . ediff-buffer-values-orig-Ancestor))) | |
605 | |
11042 | 606 ;; Buffer-local variables to be saved then restored during Ediff sessions |
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
607 (defconst ediff-protected-variables '( |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
608 ;;buffer-read-only |
11042 | 609 mode-line-format)) |
610 | |
611 ;; Vector of differences between the variants. Each difference is | |
612 ;; represented by a vector of two overlays plus a vector of fine diffs, | |
613 ;; plus a no-fine-diffs flag. The first overlay spans the | |
614 ;; difference region in the A buffer and the second overlays the diff in | |
615 ;; the B buffer. If a difference section is empty, the corresponding | |
616 ;; overlay's endpoints coincide. | |
617 ;; | |
618 ;; The precise form of a difference vector for one buffer is: | |
619 ;; [diff diff diff ...] | |
620 ;; where each diff has the form: | |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
621 ;; [diff-overlay fine-diff-vector no-fine-diffs-flag state-of-difference] |
11042 | 622 ;; fine-diff-vector is a vector [fine-diff-overlay fine-diff-overlay ...] |
623 ;; no-fine-diffs-flag says if there are fine differences. | |
624 ;; state-of-difference is A, B, C, or nil, indicating which buffer is | |
625 ;; different from the other two (used only in 3-way jobs. | |
626 (ediff-defvar-local ediff-difference-vector-A nil "") | |
627 (ediff-defvar-local ediff-difference-vector-B nil "") | |
628 (ediff-defvar-local ediff-difference-vector-C nil "") | |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
629 (ediff-defvar-local ediff-difference-vector-Ancestor nil "") |
19047 | 630 ;; A-list of diff vector types associated with buffer types |
631 (defconst ediff-difference-vector-alist | |
632 '((A . ediff-difference-vector-A) | |
633 (B . ediff-difference-vector-B) | |
634 (C . ediff-difference-vector-C) | |
635 (Ancestor . ediff-difference-vector-Ancestor))) | |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
636 |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
637 ;; [ status status status ...] |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
638 ;; Each status: [state-of-merge state-of-ancestor] |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
639 ;; state-of-merge is default-A, default-B, prefer-A, or prefer-B. It |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
640 ;; indicates the way a diff region was created in buffer C. |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
641 ;; state-of-ancestor says if the corresponding region in ancestor buffer is |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
642 ;; empty. |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
643 (ediff-defvar-local ediff-state-of-merge nil "") |
11042 | 644 |
645 ;; The difference that is currently selected. | |
646 (ediff-defvar-local ediff-current-difference -1 "") | |
647 ;; Number of differences found. | |
648 (ediff-defvar-local ediff-number-of-differences nil "") | |
649 | |
650 ;; Buffer containing the output of diff, which is used by Ediff to step | |
651 ;; through files. | |
652 (ediff-defvar-local ediff-diff-buffer nil "") | |
653 ;; Like ediff-diff-buffer, but contains context diff. It is not used by | |
654 ;; Ediff, but it is saved in a file, if user requests so. | |
655 (ediff-defvar-local ediff-custom-diff-buffer nil "") | |
656 ;; Buffer used for diff-style fine differences between regions. | |
657 (ediff-defvar-local ediff-fine-diff-buffer nil "") | |
658 ;; Temporary buffer used for computing fine differences. | |
659 (defconst ediff-tmp-buffer " *ediff-tmp*" "") | |
660 ;; Buffer used for messages | |
661 (defconst ediff-msg-buffer " *ediff-message*" "") | |
662 ;; Buffer containing the output of diff when diff returns errors. | |
663 (ediff-defvar-local ediff-error-buffer nil "") | |
664 ;; Buffer to display debug info | |
665 (ediff-defvar-local ediff-debug-buffer "*ediff-debug*" "") | |
666 | |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
667 ;; List of ediff control panels associated with each buffer A/B/C/Ancestor. |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
668 ;; Not used any more, but may be needed in the future. |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
669 (ediff-defvar-local ediff-this-buffer-ediff-sessions nil "") |
11042 | 670 |
671 ;; to be deleted in due time | |
672 ;; List of difference overlays disturbed by working with the current diff. | |
673 (defvar ediff-disturbed-overlays nil "") | |
674 | |
675 ;; Priority of non-selected overlays. | |
676 (defvar ediff-shadow-overlay-priority 100 "") | |
677 | |
18839 | 678 (defcustom ediff-version-control-package 'vc |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
679 "Version control package used. |
14582
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
680 Currently, Ediff supports vc.el, rcs.el, pcl-cvs.el, and generic-sc.el. The |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
681 standard Emacs interface to RCS, CVS, SCCS, etc., is vc.el. However, some |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
682 people find the other two packages more convenient. Set this variable to the |
18839 | 683 appropriate symbol: `rcs', `pcl-cvs', or `generic-sc' if you so desire." |
684 :type 'symbol | |
685 :group 'ediff) | |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
686 |
11042 | 687 |
688 (if ediff-xemacs-p | |
689 (progn | |
690 (fset 'ediff-read-event (symbol-function 'next-command-event)) | |
691 (fset 'ediff-overlayp (symbol-function 'extentp)) | |
692 (fset 'ediff-make-overlay (symbol-function 'make-extent)) | |
14582
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
693 (fset 'ediff-delete-overlay (symbol-function 'delete-extent))) |
11042 | 694 (fset 'ediff-read-event (symbol-function 'read-event)) |
695 (fset 'ediff-overlayp (symbol-function 'overlayp)) | |
696 (fset 'ediff-make-overlay (symbol-function 'make-overlay)) | |
14582
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
697 (fset 'ediff-delete-overlay (symbol-function 'delete-overlay))) |
11042 | 698 |
12085
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
699 ;; Check the current version against the major and minor version numbers |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
700 ;; using op: cur-vers op major.minor If emacs-major-version or |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
701 ;; emacs-minor-version are not defined, we assume that the current version |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
702 ;; is hopelessly outdated. We assume that emacs-major-version and |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
703 ;; emacs-minor-version are defined. Otherwise, for Emacs/XEmacs 19, if the |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
704 ;; current minor version is < 10 (xemacs) or < 23 (emacs) the return value |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
705 ;; will be nil (when op is =, >, or >=) and t (when op is <, <=), which may be |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
706 ;; incorrect. However, this gives correct result in our cases, since we are |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
707 ;; testing for sufficiently high Emacs versions. |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
708 (defun ediff-check-version (op major minor &optional type-of-emacs) |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
709 (if (and (boundp 'emacs-major-version) (boundp 'emacs-minor-version)) |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
710 (and (cond ((eq type-of-emacs 'xemacs) ediff-xemacs-p) |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
711 ((eq type-of-emacs 'emacs) ediff-emacs-p) |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
712 (t t)) |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
713 (cond ((eq op '=) (and (= emacs-minor-version minor) |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
714 (= emacs-major-version major))) |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
715 ((memq op '(> >= < <=)) |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
716 (and (or (funcall op emacs-major-version major) |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
717 (= emacs-major-version major)) |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
718 (if (= emacs-major-version major) |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
719 (funcall op emacs-minor-version minor) |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
720 t))) |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
721 (t |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
722 (error "%S: Invalid op in ediff-check-version" op)))) |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
723 (cond ((memq op '(= > >=)) nil) |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
724 ((memq op '(< <=)) t)))) |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
725 |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
726 |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
727 |
11042 | 728 ;; A fix for NeXT Step |
729 ;; Should probably be eliminated in later versions. | |
12085
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
730 (if (and (ediff-window-display-p) (eq (ediff-device-type) 'ns)) |
11042 | 731 (progn |
732 (fset 'x-display-color-p (symbol-function 'ns-display-color-p)) | |
733 (fset 'x-color-defined-p (symbol-function 'ns-color-defined-p)) | |
734 (fset 'x-display-pixel-height (symbol-function 'ns-display-pixel-height)) | |
735 (fset 'x-display-pixel-width (symbol-function 'ns-display-pixel-width)) | |
736 )) | |
12085
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
737 |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
738 |
12085
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
739 (defsubst ediff-color-display-p () |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
740 (if ediff-emacs-p |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
741 (x-display-color-p) |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
742 (eq (device-class (selected-device)) 'color))) |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
743 |
11042 | 744 |
14582
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
745 (if (ediff-has-face-support-p) |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
746 (if ediff-xemacs-p |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
747 (progn |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
748 (fset 'ediff-valid-color-p (symbol-function 'valid-color-name-p)) |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
749 (fset 'ediff-get-face (symbol-function 'get-face))) |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
750 ;; Temporary fix for OS/2 port of Emacs |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
751 ;; pm-win.el in PM-Emacs should be fixed. |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
752 (if (eq (ediff-device-type) 'pm) |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
753 (fset 'ediff-valid-color-p |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
754 (function (lambda (color) (assoc color pm-color-alist)))) |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
755 (fset 'ediff-valid-color-p (symbol-function 'x-color-defined-p))) |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
756 (fset 'ediff-get-face (symbol-function 'internal-get-face)))) |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
757 |
12085
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
758 (if (ediff-window-display-p) |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
759 (if ediff-xemacs-p |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
760 (progn |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
761 (fset 'ediff-display-pixel-width |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
762 (symbol-function 'device-pixel-width)) |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
763 (fset 'ediff-display-pixel-height |
14582
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
764 (symbol-function 'device-pixel-height))) |
12085
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
765 (fset 'ediff-display-pixel-width |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
766 (symbol-function 'x-display-pixel-width)) |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
767 (fset 'ediff-display-pixel-height |
14582
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
768 (symbol-function 'x-display-pixel-height)))) |
11042 | 769 |
19047 | 770 ;; A-list of current-diff-overlay symbols asssociated with buf types |
771 (defconst ediff-current-diff-overlay-alist | |
772 '((A . ediff-current-diff-overlay-A) | |
773 (B . ediff-current-diff-overlay-B) | |
774 (C . ediff-current-diff-overlay-C) | |
775 (Ancestor . ediff-current-diff-overlay-Ancestor))) | |
776 | |
777 ;; A-list of current-diff-face-* symbols asssociated with buf types | |
778 (defconst ediff-current-diff-face-alist | |
779 '((A . ediff-current-diff-face-A) | |
780 (B . ediff-current-diff-face-B) | |
781 (C . ediff-current-diff-face-C) | |
782 (Ancestor . ediff-current-diff-face-Ancestor))) | |
783 | |
11042 | 784 |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
785 (defun ediff-make-current-diff-overlay (type) |
14582
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
786 (if (ediff-has-face-support-p) |
19047 | 787 (let ((overlay (ediff-get-symbol-from-alist |
788 type ediff-current-diff-overlay-alist)) | |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
789 (buffer (ediff-get-buffer type)) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
790 (face (face-name |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
791 (symbol-value |
19047 | 792 (ediff-get-symbol-from-alist |
793 type ediff-current-diff-face-alist))))) | |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
794 (set overlay |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
795 (ediff-make-bullet-proof-overlay (point-max) (point-max) buffer)) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
796 (ediff-set-overlay-face (symbol-value overlay) face) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
797 (ediff-overlay-put (symbol-value overlay) 'ediff ediff-control-buffer)) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
798 )) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
799 |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
800 (defun ediff-set-overlay-face (extent face) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
801 (ediff-overlay-put extent 'face face) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
802 (ediff-overlay-put extent 'help-echo 'ediff-region-help-echo)) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
803 |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
804 ;; This does nothing in Emacs, since overlays there have no help-echo property |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
805 (defun ediff-region-help-echo (extent) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
806 (let ((is-current (ediff-overlay-get extent 'ediff)) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
807 (face (ediff-overlay-get extent 'face)) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
808 (diff-num (ediff-overlay-get extent 'ediff-diff-num)) |
15480
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
809 face-help) |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
810 |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
811 ;; This happens only for refinement overlays |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
812 (setq face-help (and face (get face 'ediff-help-echo))) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
813 |
15480
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
814 (cond ((and is-current diff-num) ; current diff region |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
815 (format "Difference region %S -- current" (1+ diff-num))) |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
816 (face-help) ; refinement of current diff region |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
817 (diff-num ; non-current |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
818 (format "Difference region %S -- non-current" (1+ diff-num))) |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
819 (t "")) ; none |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
820 )) |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
821 |
19241 | 822 ;;(defun ediff-set-face (ground face color) |
823 ;; "Set face foreground/background." | |
824 ;; (if (ediff-has-face-support-p) | |
825 ;; (if (ediff-valid-color-p color) | |
826 ;; (if (eq ground 'foreground) | |
827 ;; (set-face-foreground face color) | |
828 ;; (set-face-background face color)) | |
829 ;; (cond ((memq face | |
830 ;; '(ediff-current-diff-face-A | |
831 ;; ediff-current-diff-face-B | |
832 ;; ediff-current-diff-face-C | |
833 ;; ediff-current-diff-face-Ancestor)) | |
834 ;; (copy-face 'highlight face)) | |
835 ;; ((memq face | |
836 ;; '(ediff-fine-diff-face-A | |
837 ;; ediff-fine-diff-face-B | |
838 ;; ediff-fine-diff-face-C | |
839 ;; ediff-fine-diff-face-Ancestor)) | |
840 ;; (copy-face 'secondary-selection face) | |
841 ;; (set-face-underline-p face t)) | |
842 ;; ((memq face | |
843 ;; '(ediff-even-diff-face-A | |
844 ;; ediff-odd-diff-face-A | |
845 ;; ediff-even-diff-face-B ediff-odd-diff-face-B | |
846 ;; ediff-even-diff-face-C ediff-odd-diff-face-C | |
847 ;; ediff-even-diff-face-Ancestor | |
848 ;; ediff-odd-diff-face-Ancestor)) | |
849 ;; (copy-face 'secondary-selection face)))) | |
850 ;; )) | |
14534
3c38a5112cb6
Make sure `facemenu-unlisted-faces' is bound.
Richard M. Stallman <rms@gnu.org>
parents:
14419
diff
changeset
|
851 |
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
852 (defun ediff-set-face-pixmap (face pixmap) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
853 "Set face pixmap on a monochrome display." |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
854 (if (and (ediff-window-display-p) (not (ediff-color-display-p))) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
855 (condition-case nil |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
856 (set-face-background-pixmap face pixmap) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
857 (error |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
858 (message "Pixmap not found for %S: %s" (face-name face) pixmap) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
859 (sit-for 1))))) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
860 |
14582
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
861 (defun ediff-hide-face (face) |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
862 (if (and (ediff-has-face-support-p) ediff-emacs-p) |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
863 (add-to-list 'facemenu-unlisted-faces face))) |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
864 |
19241 | 865 |
866 ;;(defvar ediff-current-diff-face-A | |
867 ;; (if (ediff-has-face-support-p) | |
868 ;; (progn | |
869 ;; (make-face 'ediff-current-diff-face-A) | |
870 ;; (or (face-differs-from-default-p 'ediff-current-diff-face-A) | |
871 ;; (cond ((ediff-color-display-p) | |
872 ;; (ediff-set-face | |
873 ;; 'foreground 'ediff-current-diff-face-A "firebrick") | |
874 ;; (ediff-set-face | |
875 ;; 'background 'ediff-current-diff-face-A "pale green")) | |
876 ;; (t | |
877 ;; (if ediff-xemacs-p | |
878 ;; (copy-face 'modeline 'ediff-current-diff-face-A) | |
879 ;; (copy-face 'highlight 'ediff-current-diff-face-A)) | |
880 ;; ))) | |
881 ;; 'ediff-current-diff-face-A)) | |
882 ;; "Face for highlighting the selected difference in buffer A.") | |
883 | |
884 (defface ediff-current-diff-face-A | |
885 '((((class color)) (:foreground "firebrick" :background "pale green")) | |
886 (t (:inverse-video t))) | |
887 "Face for highlighting the selected difference in buffer A." | |
888 :group 'ediff-highlighting) | |
889 ;; An internal variable. Ediff takes the face from here. When unhighlighting, | |
890 ;; this variable is set to nil, then again to the appropriate face. | |
20003 | 891 (defvar ediff-current-diff-face-A 'ediff-current-diff-face-A |
892 "Face for highlighting the selected difference in buffer A. | |
893 DO NOT CHANGE this variable. Instead, use the customization | |
894 widget to customize the actual face object `ediff-current-diff-face-A' | |
895 this variable represents.") | |
19241 | 896 (ediff-hide-face 'ediff-current-diff-face-A) |
897 ;; Until custom.el for XEmacs starts supporting :inverse-video we do this. | |
898 ;; This means that some user customization may be trashed. | |
899 (if (and ediff-xemacs-p | |
900 (ediff-has-face-support-p) | |
901 (not (ediff-color-display-p))) | |
902 (copy-face 'modeline 'ediff-current-diff-face-A)) | |
903 | |
904 | |
11042 | 905 |
19241 | 906 ;;(defvar ediff-current-diff-face-B |
907 ;; (if (ediff-has-face-support-p) | |
908 ;; (progn | |
909 ;; (make-face 'ediff-current-diff-face-B) | |
910 ;; (or (face-differs-from-default-p 'ediff-current-diff-face-B) | |
911 ;; (cond ((ediff-color-display-p) | |
912 ;; (ediff-set-face | |
913 ;; 'foreground 'ediff-current-diff-face-B "DarkOrchid") | |
914 ;; (ediff-set-face | |
915 ;; 'background 'ediff-current-diff-face-B "Yellow")) | |
916 ;; (t | |
917 ;; (if ediff-xemacs-p | |
918 ;; (copy-face 'modeline 'ediff-current-diff-face-B) | |
919 ;; (copy-face 'highlight 'ediff-current-diff-face-B)) | |
920 ;; ))) | |
921 ;; 'ediff-current-diff-face-B)) | |
922 ;; "Face for highlighting the selected difference in buffer B.") | |
11042 | 923 |
19241 | 924 (defface ediff-current-diff-face-B |
925 '((((class color)) (:foreground "DarkOrchid" :background "Yellow")) | |
926 (t (:inverse-video t))) | |
927 "Face for highlighting the selected difference in buffer B." | |
928 :group 'ediff-highlighting) | |
929 ;; An internal variable. Ediff takes the face from here. When unhighlighting, | |
930 ;; this variable is set to nil, then again to the appropriate face. | |
20003 | 931 (defvar ediff-current-diff-face-B 'ediff-current-diff-face-B |
932 "Face for highlighting the selected difference in buffer B. | |
933 this variable. Instead, use the customization | |
934 widget to customize the actual face `ediff-current-diff-face-B' | |
935 this variable represents.") | |
19241 | 936 (ediff-hide-face 'ediff-current-diff-face-B) |
937 ;; Until custom.el for XEmacs starts supporting :inverse-video we do this. | |
938 ;; This means that some user customization may be trashed. | |
939 (if (and ediff-xemacs-p | |
940 (ediff-has-face-support-p) | |
941 (not (ediff-color-display-p))) | |
942 (copy-face 'modeline 'ediff-current-diff-face-B)) | |
943 | |
944 ;;(defvar ediff-current-diff-face-C | |
945 ;; (if (ediff-has-face-support-p) | |
946 ;; (progn | |
947 ;; (make-face 'ediff-current-diff-face-C) | |
948 ;; (or (face-differs-from-default-p 'ediff-current-diff-face-C) | |
949 ;; (cond ((ediff-color-display-p) | |
950 ;; (ediff-set-face | |
951 ;; 'foreground 'ediff-current-diff-face-C "Navy") | |
952 ;; (ediff-set-face | |
953 ;; 'background 'ediff-current-diff-face-C "Pink")) | |
954 ;; (t | |
955 ;; (if ediff-xemacs-p | |
956 ;; (copy-face 'modeline 'ediff-current-diff-face-C) | |
957 ;; (copy-face 'highlight 'ediff-current-diff-face-C)) | |
958 ;; ))) | |
959 ;; 'ediff-current-diff-face-C)) | |
960 ;; "Face for highlighting the selected difference in buffer C.") | |
11042 | 961 |
19241 | 962 (defface ediff-current-diff-face-C |
963 '((((class color)) (:foreground "Navy" :background "Pink")) | |
964 (t (:inverse-video t))) | |
965 "Face for highlighting the selected difference in buffer C." | |
966 :group 'ediff-highlighting) | |
967 ;; An internal variable. Ediff takes the face from here. When unhighlighting, | |
968 ;; this variable is set to nil, then again to the appropriate face. | |
20003 | 969 (defvar ediff-current-diff-face-C 'ediff-current-diff-face-C |
970 "Face for highlighting the selected difference in buffer C. | |
971 DO NOT CHANGE this variable. Instead, use the customization | |
972 widget to customize the actual face object `ediff-current-diff-face-C' | |
973 this variable represents.") | |
19241 | 974 (ediff-hide-face 'ediff-current-diff-face-C) |
975 ;; Until custom.el for XEmacs starts supporting :inverse-video we do this. | |
976 ;; This means that some user customization may be trashed. | |
977 (if (and ediff-xemacs-p | |
978 (ediff-has-face-support-p) | |
979 (not (ediff-color-display-p))) | |
980 (copy-face 'modeline 'ediff-current-diff-face-C)) | |
981 | |
982 ;;(defvar ediff-current-diff-face-Ancestor | |
983 ;; (if (ediff-has-face-support-p) | |
984 ;; (progn | |
985 ;; (make-face 'ediff-current-diff-face-Ancestor) | |
986 ;; (or (face-differs-from-default-p 'ediff-current-diff-face-Ancestor) | |
987 ;; (copy-face | |
988 ;; 'ediff-current-diff-face-C 'ediff-current-diff-face-Ancestor)) | |
989 ;; 'ediff-current-diff-face-Ancestor)) | |
990 ;; "Face for highlighting the selected difference in the ancestor buffer.") | |
991 | |
992 (defface ediff-current-diff-face-Ancestor | |
993 '((((class color)) (:foreground "Black" :background "VioletRed")) | |
994 (t (:inverse-video t))) | |
995 "Face for highlighting the selected difference in buffer Ancestor." | |
996 :group 'ediff-highlighting) | |
997 ;; An internal variable. Ediff takes the face from here. When unhighlighting, | |
998 ;; this variable is set to nil, then again to the appropriate face. | |
20003 | 999 (defvar ediff-current-diff-face-Ancestor 'ediff-current-diff-face-Ancestor |
1000 "Face for highlighting the selected difference in buffer Ancestor. | |
1001 DO NOT CHANGE this variable. Instead, use the customization | |
1002 widget to customize the actual face object `ediff-current-diff-face-Ancestor' | |
1003 this variable represents.") | |
19241 | 1004 (ediff-hide-face 'ediff-current-diff-face-Ancestor) |
1005 ;; Until custom.el for XEmacs starts supporting :inverse-video we do this. | |
1006 ;; This means that some user customization may be trashed. | |
1007 (if (and ediff-xemacs-p | |
1008 (ediff-has-face-support-p) | |
1009 (not (ediff-color-display-p))) | |
1010 (copy-face 'modeline 'ediff-current-diff-face-Ancestor)) | |
1011 | |
1012 ;;(defvar ediff-fine-diff-pixmap "gray3" | |
1013 ;; "Pixmap to use for highlighting fine differences.") | |
1014 ;;(defvar ediff-odd-diff-pixmap "gray1" | |
1015 ;; "Pixmap to use for highlighting odd differences.") | |
1016 ;;(defvar ediff-even-diff-pixmap "Stipple" | |
1017 ;; "Pixmap to use for highlighting even differences.") | |
11042 | 1018 |
19241 | 1019 ;;(defvar ediff-fine-diff-face-A |
1020 ;; (if (ediff-has-face-support-p) | |
1021 ;; (progn | |
1022 ;; (make-face 'ediff-fine-diff-face-A) | |
1023 ;; (or (face-differs-from-default-p 'ediff-fine-diff-face-A) | |
1024 ;; (cond ((ediff-color-display-p) | |
1025 ;; (ediff-set-face 'foreground 'ediff-fine-diff-face-A | |
1026 ;; "Navy") | |
1027 ;; (ediff-set-face 'background 'ediff-fine-diff-face-A | |
1028 ;; "sky blue")) | |
1029 ;; (t | |
1030 ;; (set-face-underline-p 'ediff-fine-diff-face-A t) | |
1031 ;; (ediff-set-face-pixmap 'ediff-fine-diff-face-A | |
1032 ;; ediff-fine-diff-pixmap) | |
1033 ;; ))) | |
1034 ;; 'ediff-fine-diff-face-A)) | |
1035 ;; "Face for highlighting the refinement of the selected diff in buffer A.") | |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1036 |
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1037 |
19241 | 1038 (defface ediff-fine-diff-face-A |
1039 '((((class color)) (:foreground "Navy" :background "sky blue")) | |
1040 (t (:underline t :stipple "gray3"))) | |
1041 "Face for highlighting the refinement of the selected diff in buffer A." | |
1042 :group 'ediff-highlighting) | |
1043 ;; An internal variable. Ediff takes the face from here. When unhighlighting, | |
1044 ;; this variable is set to nil, then again to the appropriate face. | |
20003 | 1045 (defvar ediff-fine-diff-face-A 'ediff-fine-diff-face-A |
1046 "Face for highlighting the fine differences in buffer A. | |
1047 DO NOT CHANGE this variable. Instead, use the customization | |
1048 widget to customize the actual face object `ediff-fine-diff-face-A' | |
1049 this variable represents.") | |
19241 | 1050 (ediff-hide-face 'ediff-fine-diff-face-A) |
1051 ;; Until custom.el for XEmacs starts supporting :stipple we do this. | |
1052 ;; This means that some use customization may be trashed. | |
1053 (if (and ediff-xemacs-p | |
1054 (ediff-has-face-support-p) | |
1055 (not (ediff-color-display-p))) | |
1056 (ediff-set-face-pixmap 'ediff-fine-diff-face-A "gray3")) | |
1057 | |
1058 ;;(defvar ediff-fine-diff-face-B | |
1059 ;; (if (ediff-has-face-support-p) | |
1060 ;; (progn | |
1061 ;; (make-face 'ediff-fine-diff-face-B) | |
1062 ;; (or (face-differs-from-default-p 'ediff-fine-diff-face-B) | |
1063 ;; (cond ((ediff-color-display-p) | |
1064 ;; (ediff-set-face 'foreground 'ediff-fine-diff-face-B "Black") | |
1065 ;; (ediff-set-face 'background 'ediff-fine-diff-face-B "cyan")) | |
1066 ;; (t | |
1067 ;; (set-face-underline-p 'ediff-fine-diff-face-B t) | |
1068 ;; (ediff-set-face-pixmap 'ediff-fine-diff-face-B | |
1069 ;; ediff-fine-diff-pixmap) | |
1070 ;; ))) | |
1071 ;; 'ediff-fine-diff-face-B)) | |
1072 ;; "Face for highlighting the refinement of the selected diff in buffer B.") | |
11042 | 1073 |
19241 | 1074 (defface ediff-fine-diff-face-B |
1075 '((((class color)) (:foreground "Black" :background "cyan")) | |
1076 (t (:underline t :stipple "gray3"))) | |
1077 "Face for highlighting the refinement of the selected diff in buffer B." | |
1078 :group 'ediff-highlighting) | |
1079 ;; An internal variable. Ediff takes the face from here. When unhighlighting, | |
1080 ;; this variable is set to nil, then again to the appropriate face. | |
20003 | 1081 (defvar ediff-fine-diff-face-B 'ediff-fine-diff-face-B |
1082 "Face for highlighting the fine differences in buffer B. | |
1083 DO NOT CHANGE this variable. Instead, use the customization | |
1084 widget to customize the actual face object `ediff-fine-diff-face-B' | |
1085 this variable represents.") | |
19241 | 1086 (ediff-hide-face 'ediff-fine-diff-face-B) |
1087 ;; Until custom.el for XEmacs starts supporting :stipple we do this. | |
1088 ;; This means that some use customization may be trashed. | |
1089 (if (and ediff-xemacs-p | |
1090 (ediff-has-face-support-p) | |
1091 (not (ediff-color-display-p))) | |
1092 (ediff-set-face-pixmap 'ediff-fine-diff-face-B "gray3")) | |
11042 | 1093 |
19241 | 1094 ;;(defvar ediff-fine-diff-face-C |
1095 ;; (if (ediff-has-face-support-p) | |
1096 ;; (progn | |
1097 ;; (make-face 'ediff-fine-diff-face-C) | |
1098 ;; (or (face-differs-from-default-p 'ediff-fine-diff-face-C) | |
1099 ;; (cond ((ediff-color-display-p) | |
1100 ;; (ediff-set-face 'foreground 'ediff-fine-diff-face-C "black") | |
1101 ;; (ediff-set-face | |
1102 ;; 'background 'ediff-fine-diff-face-C "Turquoise")) | |
1103 ;; (t | |
1104 ;; (set-face-underline-p 'ediff-fine-diff-face-C t) | |
1105 ;; (ediff-set-face-pixmap 'ediff-fine-diff-face-C | |
1106 ;; ediff-fine-diff-pixmap) | |
1107 ;; ))) | |
1108 ;; 'ediff-fine-diff-face-C)) | |
1109 ;; "Face for highlighting the refinement of the selected diff in buffer C.") | |
1110 | |
1111 (defface ediff-fine-diff-face-C | |
1112 '((((class color)) (:foreground "Black" :background "Turquoise")) | |
1113 (t (:underline t :stipple "gray3"))) | |
1114 "Face for highlighting the refinement of the selected diff in buffer C." | |
1115 :group 'ediff-highlighting) | |
1116 ;; An internal variable. Ediff takes the face from here. When unhighlighting, | |
1117 ;; this variable is set to nil, then again to the appropriate face. | |
20003 | 1118 (defvar ediff-fine-diff-face-C 'ediff-fine-diff-face-C |
1119 "Face for highlighting the fine differences in buffer C. | |
1120 DO NOT CHANGE this variable. Instead, use the customization | |
1121 widget to customize the actual face object `ediff-fine-diff-face-C' | |
1122 this variable represents.") | |
19241 | 1123 (ediff-hide-face 'ediff-fine-diff-face-C) |
1124 ;; Until custom.el for XEmacs starts supporting :stipple we do this. | |
1125 ;; This means that some use customization may be trashed. | |
1126 (if (and ediff-xemacs-p | |
1127 (ediff-has-face-support-p) | |
1128 (not (ediff-color-display-p))) | |
1129 (ediff-set-face-pixmap 'ediff-fine-diff-face-C "gray3")) | |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1130 |
19241 | 1131 ;;(defvar ediff-fine-diff-face-Ancestor |
1132 ;; (if (ediff-has-face-support-p) | |
1133 ;; (progn | |
1134 ;; (make-face 'ediff-fine-diff-face-Ancestor) | |
1135 ;; (ediff-hide-face 'ediff-fine-diff-face-Ancestor) | |
1136 ;; (or (face-differs-from-default-p 'ediff-fine-diff-face-Ancestor) | |
1137 ;; (progn | |
1138 ;; (copy-face | |
1139 ;; 'ediff-fine-diff-face-C 'ediff-fine-diff-face-Ancestor) | |
1140 ;; (ediff-set-face-pixmap 'ediff-fine-diff-face-Ancestor | |
1141 ;; ediff-fine-diff-pixmap)) | |
1142 ;; ))) | |
1143 ;; "Face highlighting refinements of the selected diff in ancestor buffer. | |
1144 ;;Presently, this is not used, as difference regions are not refined in the | |
1145 ;;ancestor buffer.") | |
1146 | |
1147 (defface ediff-fine-diff-face-Ancestor | |
1148 '((((class color)) (:foreground "Black" :background "Green")) | |
1149 (t (:underline t :stipple "gray3"))) | |
1150 "Face for highlighting the refinement of the selected diff in the ancestor buffer. | |
1151 At present, this face is not used and no fine differences are computed for the | |
1152 ancestor buffer." | |
1153 :group 'ediff-highlighting) | |
1154 ;; An internal variable. Ediff takes the face from here. When unhighlighting, | |
1155 ;; this variable is set to nil, then again to the appropriate face. | |
20003 | 1156 (defvar ediff-fine-diff-face-Ancestor 'ediff-fine-diff-face-Ancestor |
1157 "Face for highlighting the fine differences in buffer Ancestor. | |
1158 DO NOT CHANGE this variable. Instead, use the customization | |
1159 widget to customize the actual face object `ediff-fine-diff-face-Ancestor' | |
1160 this variable represents.") | |
19241 | 1161 (ediff-hide-face 'ediff-fine-diff-face-Ancestor) |
1162 ;; Until custom.el for XEmacs starts supporting :stipple we do this. | |
1163 ;; This means that some use customization may be trashed. | |
1164 (if (and ediff-xemacs-p | |
1165 (ediff-has-face-support-p) | |
1166 (not (ediff-color-display-p))) | |
1167 (ediff-set-face-pixmap | |
1168 'ediff-fine-diff-face-Ancestor "gray3")) | |
11042 | 1169 |
19241 | 1170 ;;(defvar ediff-even-diff-face-A |
1171 ;; (if (ediff-has-face-support-p) | |
1172 ;; (progn | |
1173 ;; (make-face 'ediff-even-diff-face-A) | |
1174 ;; (or (face-differs-from-default-p 'ediff-even-diff-face-A) | |
1175 ;; (cond ((ediff-color-display-p) | |
1176 ;; (ediff-set-face | |
1177 ;; 'foreground 'ediff-even-diff-face-A "black") | |
1178 ;; (ediff-set-face | |
1179 ;; 'background 'ediff-even-diff-face-A "light grey")) | |
1180 ;; (t | |
1181 ;; (copy-face 'italic 'ediff-even-diff-face-A) | |
1182 ;; (ediff-set-face-pixmap 'ediff-even-diff-face-A | |
1183 ;; ediff-even-diff-pixmap) | |
1184 ;; ))) | |
1185 ;; 'ediff-even-diff-face-A)) | |
1186 ;; "Face used for highlighting even-numbered differences in buffer A.") | |
1187 | |
1188 (defface ediff-even-diff-face-A | |
1189 '((((class color)) (:foreground "Black" :background "light grey")) | |
1190 (t (:italic t :stipple "Stipple"))) | |
1191 "Face for highlighting even-numbered non-current differences in buffer A." | |
1192 :group 'ediff-highlighting) | |
1193 ;; An internal variable. Ediff takes the face from here. When unhighlighting, | |
1194 ;; this variable is set to nil, then again to the appropriate face. | |
20003 | 1195 (defvar ediff-even-diff-face-A 'ediff-even-diff-face-A |
1196 "Face for highlighting even-numbered non-current differences in buffer A. | |
1197 DO NOT CHANGE this variable. Instead, use the customization | |
1198 widget to customize the actual face object `ediff-even-diff-face-A' | |
1199 this variable represents.") | |
19241 | 1200 (ediff-hide-face 'ediff-even-diff-face-A) |
1201 ;; Until custom.el for XEmacs starts supporting :stipple we do this. | |
1202 ;; This means that some use customization may be trashed. | |
1203 (if (and ediff-xemacs-p | |
1204 (ediff-has-face-support-p) | |
1205 (not (ediff-color-display-p))) | |
1206 (ediff-set-face-pixmap 'ediff-even-diff-face-A "Stipple")) | |
11042 | 1207 |
19241 | 1208 ;;(defvar ediff-even-diff-face-B |
1209 ;; (if (ediff-has-face-support-p) | |
1210 ;; (progn | |
1211 ;; (make-face 'ediff-even-diff-face-B) | |
1212 ;; (or (face-differs-from-default-p 'ediff-even-diff-face-B) | |
1213 ;; (cond ((ediff-color-display-p) | |
1214 ;; (ediff-set-face | |
1215 ;; 'foreground 'ediff-even-diff-face-B "White") | |
1216 ;; (ediff-set-face | |
1217 ;; 'background 'ediff-even-diff-face-B "Gray")) | |
1218 ;; (t | |
1219 ;; (copy-face 'italic 'ediff-even-diff-face-B) | |
1220 ;; (ediff-set-face-pixmap 'ediff-even-diff-face-B | |
1221 ;; ediff-even-diff-pixmap) | |
1222 ;; ))) | |
1223 ;; 'ediff-even-diff-face-B)) | |
1224 ;; "Face used for highlighting even-numbered differences in buffer B.") | |
1225 | |
1226 (defface ediff-even-diff-face-B | |
1227 '((((class color)) (:foreground "White" :background "Grey")) | |
1228 (t (:italic t :stipple "Stipple"))) | |
1229 "Face for highlighting even-numbered non-current differences in buffer B." | |
1230 :group 'ediff-highlighting) | |
1231 ;; An internal variable. Ediff takes the face from here. When unhighlighting, | |
1232 ;; this variable is set to nil, then again to the appropriate face. | |
20003 | 1233 (defvar ediff-even-diff-face-B 'ediff-even-diff-face-B |
1234 "Face for highlighting even-numbered non-current differences in buffer B. | |
1235 DO NOT CHANGE this variable. Instead, use the customization | |
1236 widget to customize the actual face object `ediff-even-diff-face-B' | |
1237 this variable represents.") | |
19241 | 1238 (ediff-hide-face 'ediff-even-diff-face-B) |
1239 ;; Until custom.el for XEmacs starts supporting :stipple we do this. | |
1240 ;; This means that some use customization may be trashed. | |
1241 (if (and ediff-xemacs-p | |
1242 (ediff-has-face-support-p) | |
1243 (not (ediff-color-display-p))) | |
1244 (ediff-set-face-pixmap 'ediff-even-diff-face-B "Stipple")) | |
11042 | 1245 |
19241 | 1246 ;;(defvar ediff-even-diff-face-C |
1247 ;; (if (ediff-has-face-support-p) | |
1248 ;; (progn | |
1249 ;; (make-face 'ediff-even-diff-face-C) | |
1250 ;; (ediff-hide-face 'ediff-even-diff-face-C) | |
1251 ;; (or (face-differs-from-default-p 'ediff-even-diff-face-C) | |
1252 ;; (progn | |
1253 ;; (copy-face 'ediff-even-diff-face-A 'ediff-even-diff-face-C) | |
1254 ;; (ediff-set-face-pixmap 'ediff-even-diff-face-C | |
1255 ;; ediff-even-diff-pixmap))) | |
1256 ;; 'ediff-even-diff-face-C)) | |
1257 ;; "Face used for highlighting even-numbered differences in buffer C.") | |
1258 | |
1259 (defface ediff-even-diff-face-C | |
1260 '((((class color)) (:foreground "Black" :background "light grey")) | |
1261 (t (:italic t :stipple "Stipple"))) | |
1262 "Face for highlighting even-numbered non-current differences in buffer C." | |
1263 :group 'ediff-highlighting) | |
1264 ;; An internal variable. Ediff takes the face from here. When unhighlighting, | |
1265 ;; this variable is set to nil, then again to the appropriate face. | |
20003 | 1266 (defvar ediff-even-diff-face-C 'ediff-even-diff-face-C |
1267 "Face for highlighting even-numbered non-current differences in buffer C. | |
1268 DO NOT CHANGE this variable. Instead, use the customization | |
1269 widget to customize the actual face object `ediff-even-diff-face-C' | |
1270 this variable represents.") | |
19241 | 1271 (ediff-hide-face 'ediff-even-diff-face-C) |
1272 ;; Until custom.el for XEmacs starts supporting :stipple we do this. | |
1273 ;; This means that some use customization may be trashed. | |
1274 (if (and ediff-xemacs-p | |
1275 (ediff-has-face-support-p) | |
1276 (not (ediff-color-display-p))) | |
1277 (ediff-set-face-pixmap 'ediff-even-diff-face-C "Stipple")) | |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1278 |
19241 | 1279 ;;(defvar ediff-even-diff-face-Ancestor |
1280 ;; (if (ediff-has-face-support-p) | |
1281 ;; (progn | |
1282 ;; (make-face 'ediff-even-diff-face-Ancestor) | |
1283 ;; (ediff-hide-face 'ediff-even-diff-face-Ancestor) | |
1284 ;; (or (face-differs-from-default-p 'ediff-even-diff-face-Ancestor) | |
1285 ;; (progn | |
1286 ;; (copy-face | |
1287 ;; 'ediff-even-diff-face-C 'ediff-even-diff-face-Ancestor) | |
1288 ;; (ediff-set-face-pixmap 'ediff-even-diff-face-Ancestor | |
1289 ;; ediff-even-diff-pixmap))) | |
1290 ;; 'ediff-even-diff-face-Ancestor)) | |
1291 ;; "Face highlighting even-numbered differences in the ancestor buffer.") | |
1292 | |
1293 (defface ediff-even-diff-face-Ancestor | |
1294 '((((class color)) (:foreground "White" :background "Grey")) | |
1295 (t (:italic t :stipple "Stipple"))) | |
1296 "Face for highlighting even-numbered non-current differences in the ancestor buffer." | |
1297 :group 'ediff-highlighting) | |
1298 ;; An internal variable. Ediff takes the face from here. When unhighlighting, | |
1299 ;; this variable is set to nil, then again to the appropriate face. | |
20003 | 1300 (defvar ediff-even-diff-face-Ancestor 'ediff-even-diff-face-Ancestor |
1301 "Face for highlighting even-numbered non-current differences in buffer Ancestor. | |
1302 DO NOT CHANGE this variable. Instead, use the customization | |
1303 widget to customize the actual face object `ediff-even-diff-face-Ancestor' | |
1304 this variable represents.") | |
19241 | 1305 (ediff-hide-face 'ediff-even-diff-face-Ancestor) |
1306 ;; Until custom.el for XEmacs starts supporting :stipple we do this. | |
1307 ;; This means that some use customization may be trashed. | |
1308 (if (and ediff-xemacs-p | |
1309 (ediff-has-face-support-p) | |
1310 (not (ediff-color-display-p))) | |
1311 (ediff-set-face-pixmap | |
1312 'ediff-even-diff-face-Ancestor "Stipple")) | |
19047 | 1313 |
1314 ;; Association between buffer types and even-diff-face symbols | |
1315 (defconst ediff-even-diff-face-alist | |
1316 '((A . ediff-even-diff-face-A) | |
1317 (B . ediff-even-diff-face-B) | |
1318 (C . ediff-even-diff-face-C) | |
1319 (Ancestor . ediff-even-diff-face-Ancestor))) | |
1320 | |
19241 | 1321 ;;(defvar ediff-odd-diff-face-A |
1322 ;; (if (ediff-has-face-support-p) | |
1323 ;; (progn | |
1324 ;; (make-face 'ediff-odd-diff-face-A) | |
1325 ;; (or (face-differs-from-default-p 'ediff-odd-diff-face-A) | |
1326 ;; (cond ((ediff-color-display-p) | |
1327 ;; (ediff-set-face | |
1328 ;; 'foreground 'ediff-odd-diff-face-A "White") | |
1329 ;; (ediff-set-face | |
1330 ;; 'background 'ediff-odd-diff-face-A "Gray")) | |
1331 ;; (t | |
1332 ;; (copy-face 'italic 'ediff-odd-diff-face-A) | |
1333 ;; (ediff-set-face-pixmap 'ediff-odd-diff-face-A | |
1334 ;; ediff-odd-diff-pixmap) | |
1335 ;; ))) | |
1336 ;; 'ediff-odd-diff-face-A)) | |
1337 ;; "Face used for highlighting odd-numbered differences in buffer A.") | |
1338 | |
1339 (defface ediff-odd-diff-face-A | |
1340 '((((class color)) (:foreground "White" :background "Grey")) | |
1341 (t (:italic t :stipple "gray1"))) | |
1342 "Face for highlighting odd-numbered non-current differences in buffer A." | |
1343 :group 'ediff-highlighting) | |
1344 ;; An internal variable. Ediff takes the face from here. When unhighlighting, | |
1345 ;; this variable is set to nil, then again to the appropriate face. | |
20003 | 1346 (defvar ediff-odd-diff-face-A 'ediff-odd-diff-face-A |
1347 "Face for highlighting odd-numbered non-current differences in buffer A. | |
1348 DO NOT CHANGE this variable. Instead, use the customization | |
1349 widget to customize the actual face object `ediff-odd-diff-face-A' | |
1350 this variable represents.") | |
19241 | 1351 (ediff-hide-face 'ediff-odd-diff-face-A) |
1352 ;; Until custom.el for XEmacs starts supporting :stipple we do this. | |
1353 ;; This means that some use customization may be trashed. | |
1354 (if (and ediff-xemacs-p | |
1355 (ediff-has-face-support-p) | |
1356 (not (ediff-color-display-p))) | |
1357 (ediff-set-face-pixmap 'ediff-odd-diff-face-A "gray1")) | |
11042 | 1358 |
19241 | 1359 ;;(defvar ediff-odd-diff-face-B |
1360 ;; (if (ediff-has-face-support-p) | |
1361 ;; (progn | |
1362 ;; (make-face 'ediff-odd-diff-face-B) | |
1363 ;; (ediff-hide-face 'ediff-odd-diff-face-B) | |
1364 ;; (or (face-differs-from-default-p 'ediff-odd-diff-face-B) | |
1365 ;; (cond ((ediff-color-display-p) | |
1366 ;; (ediff-set-face | |
1367 ;; 'foreground 'ediff-odd-diff-face-B "Black") | |
1368 ;; (ediff-set-face | |
1369 ;; 'background 'ediff-odd-diff-face-B "light grey")) | |
1370 ;; (t | |
1371 ;; (copy-face 'italic 'ediff-odd-diff-face-B) | |
1372 ;; (ediff-set-face-pixmap 'ediff-odd-diff-face-B | |
1373 ;; ediff-odd-diff-pixmap) | |
1374 ;; ))) | |
1375 ;; 'ediff-odd-diff-face-B)) | |
1376 ;; "Face used for highlighting odd-numbered differences in buffer B.") | |
1377 | |
1378 (defface ediff-odd-diff-face-B | |
1379 '((((class color)) (:foreground "Black" :background "light grey")) | |
1380 (t (:italic t :stipple "gray1"))) | |
1381 "Face for highlighting odd-numbered non-current differences in buffer B." | |
1382 :group 'ediff-highlighting) | |
1383 ;; An internal variable. Ediff takes the face from here. When unhighlighting, | |
1384 ;; this variable is set to nil, then again to the appropriate face. | |
20003 | 1385 (defvar ediff-odd-diff-face-B 'ediff-odd-diff-face-B |
1386 "Face for highlighting odd-numbered non-current differences in buffer B. | |
1387 DO NOT CHANGE this variable. Instead, use the customization | |
1388 widget to customize the actual face object `ediff-odd-diff-face-B' | |
1389 this variable represents.") | |
19241 | 1390 (ediff-hide-face 'ediff-odd-diff-face-B) |
1391 ;; Until custom.el for XEmacs starts supporting :stipple we do this. | |
1392 ;; This means that some use customization may be trashed. | |
1393 (if (and ediff-xemacs-p | |
1394 (ediff-has-face-support-p) | |
1395 (not (ediff-color-display-p))) | |
1396 (ediff-set-face-pixmap 'ediff-odd-diff-face-B "gray1")) | |
11042 | 1397 |
19241 | 1398 ;;(defvar ediff-odd-diff-face-C |
1399 ;; (if (ediff-has-face-support-p) | |
1400 ;; (progn | |
1401 ;; (make-face 'ediff-odd-diff-face-C) | |
1402 ;; (or (face-differs-from-default-p 'ediff-odd-diff-face-C) | |
1403 ;; (progn | |
1404 ;; (copy-face 'ediff-odd-diff-face-A 'ediff-odd-diff-face-C) | |
1405 ;; (ediff-set-face-pixmap 'ediff-odd-diff-face-C | |
1406 ;; ediff-odd-diff-pixmap))) | |
1407 ;; 'ediff-odd-diff-face-C)) | |
1408 ;; "Face used for highlighting odd-numbered differences in buffer C.") | |
1409 | |
1410 (defface ediff-odd-diff-face-C | |
1411 '((((class color)) (:foreground "White" :background "Grey")) | |
1412 (t (:italic t :stipple "gray1"))) | |
1413 "Face for highlighting odd-numbered non-current differences in buffer C." | |
1414 :group 'ediff-highlighting) | |
1415 ;; An internal variable. Ediff takes the face from here. When unhighlighting, | |
1416 ;; this variable is set to nil, then again to the appropriate face. | |
20003 | 1417 (defvar ediff-odd-diff-face-C 'ediff-odd-diff-face-C |
1418 "Face for highlighting odd-numbered non-current differences in buffer C. | |
1419 DO NOT CHANGE this variable. Instead, use the customization | |
1420 widget to customize the actual face object `ediff-odd-diff-face-C' | |
1421 this variable represents.") | |
19241 | 1422 (ediff-hide-face 'ediff-odd-diff-face-C) |
1423 ;; Until custom.el for XEmacs starts supporting :stipple we do this. | |
1424 ;; This means that some use customization may be trashed. | |
1425 (if (and ediff-xemacs-p | |
1426 (ediff-has-face-support-p) | |
1427 (not (ediff-color-display-p))) | |
1428 (ediff-set-face-pixmap 'ediff-odd-diff-face-C "gray1")) | |
11042 | 1429 |
19241 | 1430 ;;(defvar ediff-odd-diff-face-Ancestor |
1431 ;; (if (ediff-has-face-support-p) | |
1432 ;; (progn | |
1433 ;; (make-face 'ediff-odd-diff-face-Ancestor) | |
1434 ;; (or (face-differs-from-default-p 'ediff-odd-diff-face-Ancestor) | |
1435 ;; (progn | |
1436 ;; (copy-face 'ediff-odd-diff-face-C 'ediff-odd-diff-face-Ancestor) | |
1437 ;; (ediff-set-face-pixmap 'ediff-odd-diff-face-Ancestor | |
1438 ;; ediff-odd-diff-pixmap))) | |
1439 ;; 'ediff-odd-diff-face-Ancestor)) | |
1440 ;; "Face used for highlighting even-numbered differences in the ancestor buffer.") | |
1441 | |
1442 (defface ediff-odd-diff-face-Ancestor | |
1443 '((((class color)) (:foreground "Black" :background "light grey")) | |
1444 (t (:italic t :stipple "gray1"))) | |
1445 "Face for highlighting odd-numbered non-current differences in the ancestor buffer." | |
1446 :group 'ediff-highlighting) | |
1447 ;; An internal variable. Ediff takes the face from here. When unhighlighting, | |
1448 ;; this variable is set to nil, then again to the appropriate face. | |
20003 | 1449 (defvar ediff-odd-diff-face-Ancestor 'ediff-odd-diff-face-Ancestor |
1450 "Face for highlighting odd-numbered non-current differences in buffer Ancestor. | |
1451 DO NOT CHANGE this variable. Instead, use the customization | |
1452 widget to customize the actual face object `ediff-odd-diff-face-Ancestor' | |
1453 this variable represents.") | |
19241 | 1454 (ediff-hide-face 'ediff-odd-diff-face-Ancestor) |
1455 ;; Until custom.el for XEmacs starts supporting :stipple we do this. | |
1456 ;; This means that some use customization may be trashed. | |
1457 (if (and ediff-xemacs-p | |
1458 (ediff-has-face-support-p) | |
1459 (not (ediff-color-display-p))) | |
1460 (ediff-set-face-pixmap 'ediff-odd-diff-face-Ancestor "gray1")) | |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1461 |
19047 | 1462 ;; Association between buffer types and odd-diff-face symbols |
1463 (defconst ediff-odd-diff-face-alist | |
1464 '((A . ediff-odd-diff-face-A) | |
1465 (B . ediff-odd-diff-face-B) | |
1466 (C . ediff-odd-diff-face-C) | |
1467 (Ancestor . ediff-odd-diff-face-Ancestor))) | |
1468 | |
1469 ;; A-list of fine-diff face symbols associated with buffer types | |
1470 (defconst ediff-fine-diff-face-alist | |
1471 '((A . ediff-fine-diff-face-A) | |
1472 (B . ediff-fine-diff-face-B) | |
1473 (C . ediff-fine-diff-face-C) | |
1474 (Ancestor . ediff-fine-diff-face-Ancestor))) | |
1475 | |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1476 ;; Help echo |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1477 (put 'ediff-fine-diff-face-A 'ediff-help-echo |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1478 "A `refinement' of the current difference region") |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1479 (put 'ediff-fine-diff-face-B 'ediff-help-echo |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1480 "A `refinement' of the current difference region") |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1481 (put 'ediff-fine-diff-face-C 'ediff-help-echo |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1482 "A `refinement' of the current difference region") |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1483 (put 'ediff-fine-diff-face-Ancestor 'ediff-help-echo |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1484 "A `refinement' of the current difference region") |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1485 |
11042 | 1486 |
1487 ;;; Overlays | |
1488 | |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1489 (ediff-defvar-local ediff-current-diff-overlay-A nil |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1490 "Overlay for the current difference region in buffer A.") |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1491 (ediff-defvar-local ediff-current-diff-overlay-B nil |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1492 "Overlay for the current difference region in buffer B.") |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1493 (ediff-defvar-local ediff-current-diff-overlay-C nil |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1494 "Overlay for the current difference region in buffer C.") |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1495 (ediff-defvar-local ediff-current-diff-overlay-Ancestor nil |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1496 "Overlay for the current difference region in the ancestor buffer.") |
19047 | 1497 |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1498 ;; Compute priority of ediff overlay. |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1499 (defun ediff-highest-priority (start end buffer) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1500 (let ((pos (max 1 (1- start))) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1501 ovr-list) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1502 (if ediff-xemacs-p |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1503 (1+ ediff-shadow-overlay-priority) |
19047 | 1504 (ediff-with-current-buffer buffer |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1505 (while (< pos (min (point-max) (1+ end))) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1506 (setq ovr-list (append (overlays-at pos) ovr-list)) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1507 (setq pos (next-overlay-change pos))) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1508 (1+ (apply '+ |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1509 (mapcar (function |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1510 (lambda (ovr) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1511 (if ovr |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1512 (or (ediff-overlay-get ovr 'priority) 0) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1513 0))) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1514 ovr-list) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1515 )) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1516 )))) |
11042 | 1517 |
1518 | |
1519 (defvar ediff-toggle-read-only-function nil | |
1520 "*Specifies the function to be used to toggle read-only. | |
1521 If nil, Ediff tries to deduce the function from the binding of C-x C-q. | |
1522 Normally, this is the `toggle-read-only' function, but, if version | |
1523 control is used, it could be `vc-toggle-read-only' or `rcs-toggle-read-only'.") | |
1524 | |
18839 | 1525 (defcustom ediff-make-buffers-readonly-at-startup nil |
1526 "*Make all variant buffers read-only when Ediff starts up. | |
1527 This property can be toggled interactively." | |
1528 :type 'boolean | |
1529 :group 'ediff) | |
1530 | |
11042 | 1531 |
1532 ;;; Misc | |
1533 | |
1534 ;; if nil, this silences some messages | |
1535 (defconst ediff-verbose-p t) | |
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1536 |
20206 | 1537 (defcustom ediff-autostore-merges 'group-jobs-only |
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1538 "*Save the results of merge jobs automatically. |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1539 Nil means don't save automatically. t means always save. Anything but nil or t |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1540 means save automatically only if the merge job is part of a group of jobs, such |
20206 | 1541 as `ediff-merge-directory' or `ediff-merge-directory-revisions'." |
1542 :type '(choice (const nil) (const t) (const group-jobs-only)) | |
1543 :group 'ediff-merge) | |
1544 (make-variable-buffer-local 'ediff-autostore-merges) | |
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1545 |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1546 ;; file where the result of the merge is to be saved. used internally |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1547 (ediff-defvar-local ediff-merge-store-file nil "") |
11042 | 1548 |
18839 | 1549 (defcustom ediff-no-emacs-help-in-control-buffer nil |
11042 | 1550 "*Non-nil means C-h should not invoke Emacs help in control buffer. |
18839 | 1551 Instead, C-h would jump to previous difference." |
1552 :type 'boolean | |
1553 :group 'ediff) | |
11042 | 1554 |
20206 | 1555 (defcustom ediff-temp-file-prefix |
11042 | 1556 (let ((env (or (getenv "TMPDIR") |
1557 (getenv "TMP") | |
1558 (getenv "TEMP"))) | |
1559 d) | |
1560 (setq d (if (and env (> (length env) 0)) | |
1561 env | |
14582
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
1562 (cond ((memq system-type '(vax-vms axp-vms)) "SYS$SCRATCH:") |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
1563 ((eq system-type 'ms-dos) "c:/") |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
1564 (t "/tmp")))) |
11042 | 1565 ;; The following is to make sure we get something to which we can |
20206 | 1566 ;; add directory levels under VMS. |
11042 | 1567 (setq d (file-name-as-directory (directory-file-name d))) |
1568 ) | |
1569 "*Prefix to put on Ediff temporary file names. | |
20206 | 1570 Do not start with `~/' or `~user-name/'." |
1571 :type 'string | |
1572 :group 'ediff) | |
11042 | 1573 |
20206 | 1574 (defcustom ediff-temp-file-mode 384 ; u=rw only |
1575 "*Mode for Ediff temporary files." | |
1576 :type 'integer | |
1577 :group 'ediff) | |
11042 | 1578 |
1579 ;; Metacharacters that have to be protected from the shell when executing | |
1580 ;; a diff/diff3 command. | |
20206 | 1581 (defcustom ediff-metachars "[ \t\n!\"#$&'()*;<=>?[\\^`{|~]" |
1582 "Regexp that matches characters that must be quoted with `\\' in shell command line. | |
1583 This default should work without changes." | |
1584 :type 'string | |
1585 :group 'ediff) | |
11042 | 1586 |
14582
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
1587 ;; needed to simulate frame-char-width in XEmacs. |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
1588 (defvar ediff-H-glyph (if ediff-xemacs-p (make-glyph "H"))) |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
1589 |
11042 | 1590 |
18839 | 1591 ;; Temporary file used for refining difference regions in buffer A. |
1592 (ediff-defvar-local ediff-temp-file-A nil "") | |
1593 ;; Temporary file used for refining difference regions in buffer B. | |
1594 (ediff-defvar-local ediff-temp-file-B nil "") | |
1595 ;; Temporary file used for refining difference regions in buffer C. | |
1596 (ediff-defvar-local ediff-temp-file-C nil "") | |
1597 | |
11042 | 1598 |
1599 ;;; In-line functions | |
1600 | |
18054 | 1601 (or (fboundp 'ediff-file-remote-p) ; user supplied his own function: use it |
1602 (defun ediff-file-remote-p (file-name) | |
1603 (car (cond ((featurep 'efs-auto) (efs-ftp-path file-name)) | |
1604 ((fboundp 'file-remote-p) (file-remote-p file-name)) | |
1605 (t (require 'ange-ftp) | |
1606 ;; Can happen only in Emacs, since XEmacs has file-remote-p | |
1607 (ange-ftp-ftp-name file-name)))))) | |
11042 | 1608 |
1609 | |
1610 (defsubst ediff-frame-unsplittable-p (frame) | |
12085
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
1611 (cdr (assq 'unsplittable (frame-parameters frame)))) |
11042 | 1612 |
1613 (defsubst ediff-get-next-window (wind prev-wind) | |
1614 (or (window-live-p wind) | |
1615 (setq wind (if prev-wind | |
1616 (next-window wind) | |
1617 (selected-window))))) | |
1618 | |
1619 | |
1620 (defsubst ediff-kill-buffer-carefully (buf) | |
1621 "Kill buffer BUF if it exists." | |
1622 (if (ediff-buffer-live-p buf) | |
1623 (kill-buffer (get-buffer buf)))) | |
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1624 |
18054 | 1625 (defsubst ediff-background-face (buf-type dif-num) |
1626 ;; The value of dif-num is always 1- the one that user sees. | |
1627 ;; This is why even face is used when dif-num is odd. | |
19047 | 1628 (ediff-get-symbol-from-alist |
1629 buf-type (if (ediff-odd-p dif-num) | |
1630 ediff-even-diff-face-alist | |
1631 ediff-odd-diff-face-alist) | |
1632 )) | |
18054 | 1633 |
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1634 |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1635 ;; activate faces on diff regions in buffer |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1636 (defun ediff-paint-background-regions-in-one-buffer (buf-type unhighlight) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1637 (let ((diff-vector |
19047 | 1638 (eval (ediff-get-symbol-from-alist |
1639 buf-type ediff-difference-vector-alist))) | |
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1640 overl diff-num) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1641 (mapcar (function |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1642 (lambda (rec) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1643 (setq overl (ediff-get-diff-overlay-from-diff-record rec) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1644 diff-num (ediff-overlay-get overl 'ediff-diff-num)) |
18054 | 1645 (if (ediff-overlay-buffer overl) |
1646 ;; only if overlay is alive | |
1647 (ediff-set-overlay-face | |
1648 overl | |
1649 (if (not unhighlight) | |
1650 (ediff-background-face buf-type diff-num)))) | |
1651 )) | |
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1652 diff-vector))) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1653 |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1654 |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1655 ;; activate faces on diff regions in all buffers |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1656 (defun ediff-paint-background-regions (&optional unhighlight) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1657 (ediff-paint-background-regions-in-one-buffer |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1658 'A unhighlight) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1659 (ediff-paint-background-regions-in-one-buffer |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1660 'B unhighlight) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1661 (ediff-paint-background-regions-in-one-buffer |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1662 'C unhighlight) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1663 (ediff-paint-background-regions-in-one-buffer |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1664 'Ancestor unhighlight)) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1665 |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1666 (defun ediff-highlight-diff-in-one-buffer (n buf-type) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1667 (if (ediff-buffer-live-p (ediff-get-buffer buf-type)) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1668 (let* ((buff (ediff-get-buffer buf-type)) |
19047 | 1669 (last (ediff-with-current-buffer buff (point-max))) |
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1670 (begin (ediff-get-diff-posn buf-type 'beg n)) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1671 (end (ediff-get-diff-posn buf-type 'end n)) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1672 (xtra (if (equal begin end) 1 0)) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1673 (end-hilit (min last (+ end xtra))) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1674 (current-diff-overlay |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1675 (symbol-value |
19047 | 1676 (ediff-get-symbol-from-alist |
1677 buf-type ediff-current-diff-overlay-alist)))) | |
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1678 |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1679 (if ediff-xemacs-p |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1680 (ediff-move-overlay current-diff-overlay begin end-hilit) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1681 (ediff-move-overlay current-diff-overlay begin end-hilit buff)) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1682 (ediff-overlay-put current-diff-overlay 'priority |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1683 (ediff-highest-priority begin end-hilit buff)) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1684 (ediff-overlay-put current-diff-overlay 'ediff-diff-num n) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1685 |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1686 ;; unhighlight the background overlay for diff n so it won't |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1687 ;; interfere with the current diff overlay |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1688 (ediff-set-overlay-face (ediff-get-diff-overlay n buf-type) nil) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1689 ))) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1690 |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1691 |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1692 (defun ediff-unhighlight-diff-in-one-buffer (buf-type) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1693 (if (ediff-buffer-live-p (ediff-get-buffer buf-type)) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1694 (let ((current-diff-overlay |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1695 (symbol-value |
19047 | 1696 (ediff-get-symbol-from-alist |
1697 buf-type ediff-current-diff-overlay-alist))) | |
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1698 (overlay |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1699 (ediff-get-diff-overlay ediff-current-difference buf-type)) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1700 ) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1701 |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1702 (ediff-move-overlay current-diff-overlay 1 1) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1703 |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1704 ;; rehighlight the overlay in the background of the |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1705 ;; current difference region |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1706 (ediff-set-overlay-face |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1707 overlay |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1708 (if (and (ediff-has-face-support-p) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1709 ediff-use-faces ediff-highlight-all-diffs) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1710 (ediff-background-face buf-type ediff-current-difference))) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1711 ))) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1712 |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1713 (defun ediff-unhighlight-diffs-totally-in-one-buffer (buf-type) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1714 (ediff-unselect-and-select-difference -1) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1715 (if (and (ediff-has-face-support-p) ediff-use-faces) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1716 (let* ((inhibit-quit t) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1717 (current-diff-overlay-var |
19047 | 1718 (ediff-get-symbol-from-alist |
1719 buf-type ediff-current-diff-overlay-alist)) | |
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1720 (current-diff-overlay (symbol-value current-diff-overlay-var))) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1721 (ediff-paint-background-regions 'unhighlight) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1722 (if (ediff-overlayp current-diff-overlay) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1723 (ediff-delete-overlay current-diff-overlay)) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1724 (set current-diff-overlay-var nil) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1725 ))) |
11042 | 1726 |
1727 | |
1728 (defsubst ediff-highlight-diff (n) | |
1729 "Put face on diff N. Invoked for X displays only." | |
1730 (ediff-highlight-diff-in-one-buffer n 'A) | |
1731 (ediff-highlight-diff-in-one-buffer n 'B) | |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1732 (ediff-highlight-diff-in-one-buffer n 'C) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1733 (ediff-highlight-diff-in-one-buffer n 'Ancestor) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1734 ) |
11042 | 1735 |
1736 | |
1737 (defsubst ediff-unhighlight-diff () | |
1738 "Remove overlays from buffers A, B, and C." | |
1739 (ediff-unhighlight-diff-in-one-buffer 'A) | |
1740 (ediff-unhighlight-diff-in-one-buffer 'B) | |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1741 (ediff-unhighlight-diff-in-one-buffer 'C) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1742 (ediff-unhighlight-diff-in-one-buffer 'Ancestor) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1743 ) |
11042 | 1744 |
1745 ;; delete highlighting overlays, restore faces to their original form | |
1746 (defsubst ediff-unhighlight-diffs-totally () | |
1747 (ediff-unhighlight-diffs-totally-in-one-buffer 'A) | |
1748 (ediff-unhighlight-diffs-totally-in-one-buffer 'B) | |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1749 (ediff-unhighlight-diffs-totally-in-one-buffer 'C) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1750 (ediff-unhighlight-diffs-totally-in-one-buffer 'Ancestor) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1751 ) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1752 |
11042 | 1753 |
1754 ;; arg is a record for a given diff in a difference vector | |
1755 ;; this record is itself a vector | |
1756 (defsubst ediff-clear-fine-diff-vector (diff-record) | |
1757 (if diff-record | |
1758 (mapcar 'ediff-delete-overlay | |
1759 (ediff-get-fine-diff-vector-from-diff-record diff-record)))) | |
1760 | |
1761 (defsubst ediff-clear-fine-differences-in-one-buffer (n buf-type) | |
1762 (ediff-clear-fine-diff-vector (ediff-get-difference n buf-type)) | |
1763 (ediff-set-fine-diff-vector n buf-type nil)) | |
1764 | |
1765 (defsubst ediff-clear-fine-differences (n) | |
1766 (ediff-clear-fine-differences-in-one-buffer n 'A) | |
1767 (ediff-clear-fine-differences-in-one-buffer n 'B) | |
1768 (if ediff-3way-job | |
1769 (ediff-clear-fine-differences-in-one-buffer n 'C))) | |
1770 | |
1771 | |
1772 (defsubst ediff-convert-fine-diffs-to-overlays (diff-list region-num) | |
1773 (ediff-set-fine-overlays-in-one-buffer 'A diff-list region-num) | |
1774 (ediff-set-fine-overlays-in-one-buffer 'B diff-list region-num) | |
1775 (if ediff-3way-job | |
1776 (ediff-set-fine-overlays-in-one-buffer 'C diff-list region-num) | |
1777 )) | |
1778 | |
1779 (defsubst ediff-mouse-event-p (event) | |
1780 (if ediff-xemacs-p | |
1781 (button-event-p event) | |
1782 (string-match "mouse" (format "%S" (event-basic-type event))) | |
1783 )) | |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1784 |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1785 |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1786 (defsubst ediff-key-press-event-p (event) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1787 (if ediff-xemacs-p |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1788 (key-press-event-p event) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1789 (or (char-or-string-p event) (symbolp event)))) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1790 |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1791 (defun ediff-event-point (event) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1792 (cond ((ediff-mouse-event-p event) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1793 (if ediff-xemacs-p |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1794 (event-point event) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1795 (posn-point (event-start event)))) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1796 ((ediff-key-press-event-p event) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1797 (point)) |
14582
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
1798 (t (error)))) |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1799 |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1800 (defun ediff-event-buffer (event) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1801 (cond ((ediff-mouse-event-p event) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1802 (if ediff-xemacs-p |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1803 (event-buffer event) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1804 (window-buffer (posn-window (event-start event))))) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1805 ((ediff-key-press-event-p event) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1806 (current-buffer)) |
14582
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
1807 (t (error)))) |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1808 |
11042 | 1809 |
1810 (defsubst ediff-frame-iconified-p (frame) | |
12085
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
1811 (if (and (ediff-window-display-p) (frame-live-p frame)) |
11042 | 1812 (if ediff-xemacs-p |
12085
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
1813 (frame-iconified-p frame) |
11042 | 1814 (eq (frame-visible-p frame) 'icon)))) |
1815 | |
1816 (defsubst ediff-window-visible-p (wind) | |
12085
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
1817 ;; under TTY, window-live-p also means window is visible |
11042 | 1818 (and (window-live-p wind) |
12085
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
1819 (or (not (ediff-window-display-p)) |
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
1820 (frame-visible-p (window-frame wind))))) |
11042 | 1821 |
1822 | |
1823 (defsubst ediff-frame-char-width (frame) | |
1824 (if ediff-xemacs-p | |
12085
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
1825 (/ (frame-pixel-width frame) (frame-width frame)) |
11042 | 1826 (frame-char-width frame))) |
1827 | |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1828 (defun ediff-reset-mouse (&optional frame do-not-grab-mouse) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1829 (or frame (setq frame (selected-frame))) |
12085
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
1830 (if (ediff-window-display-p) |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1831 (let ((frame-or-wind frame)) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1832 (if ediff-xemacs-p |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1833 (setq frame-or-wind (frame-selected-window frame))) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1834 (or do-not-grab-mouse |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1835 ;; don't set mouse if the user said to never do this |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1836 (not ediff-grab-mouse) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1837 ;; Don't grab on quit, if the user doesn't want to. |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1838 ;; If ediff-grab-mouse = t, then mouse won't be grabbed for |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1839 ;; sessions that are not part of a group (this is done in |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1840 ;; ediff-recenter). The condition below affects only terminating |
13977
11784c04028a
(ediff-keep-variants): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
13494
diff
changeset
|
1841 ;; sessions in session groups (in which case mouse is warped into |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1842 ;; a meta buffer). |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1843 (and (eq ediff-grab-mouse 'maybe) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1844 (memq this-command '(ediff-quit ediff-update-diffs))) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1845 (set-mouse-position frame-or-wind 1 0)) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1846 ))) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1847 |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1848 (defsubst ediff-spy-after-mouse () |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1849 (setq ediff-mouse-pixel-position (mouse-pixel-position))) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1850 |
14582
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
1851 ;; It is not easy to find out when the user grabs the mouse, since emacs and |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
1852 ;; xemacs behave differently when mouse is not in any frame. Also, this is |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
1853 ;; sensitive to when the user grabbed mouse. Not used for now. |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1854 (defun ediff-user-grabbed-mouse () |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1855 (if ediff-mouse-pixel-position |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1856 (cond ((not (eq (car ediff-mouse-pixel-position) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1857 (car (mouse-pixel-position))))) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1858 ((and (car (cdr ediff-mouse-pixel-position)) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1859 (car (cdr (mouse-pixel-position))) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1860 (cdr (cdr ediff-mouse-pixel-position)) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1861 (cdr (cdr (mouse-pixel-position)))) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1862 (not (and (< (abs (- (car (cdr ediff-mouse-pixel-position)) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1863 (car (cdr (mouse-pixel-position))))) |
13977
11784c04028a
(ediff-keep-variants): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
13494
diff
changeset
|
1864 ediff-mouse-pixel-threshold) |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1865 (< (abs (- (cdr (cdr ediff-mouse-pixel-position)) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1866 (cdr (cdr (mouse-pixel-position))))) |
13977
11784c04028a
(ediff-keep-variants): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
13494
diff
changeset
|
1867 ediff-mouse-pixel-threshold)))) |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1868 (t nil)))) |
12085
589a32fa67a9
Converted xemacs *screen* nomenclature to *frame*.
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
1869 |
11042 | 1870 (defsubst ediff-frame-char-height (frame) |
1871 (if ediff-xemacs-p | |
14582
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
1872 (glyph-height ediff-H-glyph (selected-window frame)) |
11042 | 1873 (frame-char-height frame))) |
1874 | |
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1875 ;; Some overlay functions |
11042 | 1876 |
18054 | 1877 (defsubst ediff-overlay-start (overl) |
1878 (if (ediff-overlayp overl) | |
1879 (if ediff-emacs-p | |
1880 (overlay-start overl) | |
1881 (extent-start-position overl)))) | |
1882 | |
1883 (defsubst ediff-overlay-end (overl) | |
1884 (if (ediff-overlayp overl) | |
1885 (if ediff-emacs-p | |
1886 (overlay-end overl) | |
1887 (extent-end-position overl)))) | |
1888 | |
11042 | 1889 (defsubst ediff-empty-overlay-p (overl) |
1890 (= (ediff-overlay-start overl) (ediff-overlay-end overl))) | |
14582
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
1891 |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
1892 ;; like overlay-buffer in Emacs. In XEmacs, returns nil if the extent is |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
1893 ;; dead. Otherwise, works like extent-buffer |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
1894 (defun ediff-overlay-buffer (overl) |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
1895 (if ediff-emacs-p |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
1896 (overlay-buffer overl) |
15480
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
1897 (and (extent-live-p overl) (extent-object overl)))) |
14582
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
1898 |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
1899 ;; like overlay-get in Emacs. In XEmacs, returns nil if the extent is |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
1900 ;; dead. Otherwise, like extent-property |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
1901 (defun ediff-overlay-get (overl property) |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
1902 (if ediff-emacs-p |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
1903 (overlay-get overl property) |
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
1904 (and (extent-live-p overl) (extent-property overl property)))) |
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1905 |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1906 |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1907 ;; These two functions are here because XEmacs refuses to |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1908 ;; handle overlays whose buffers were deleted. |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1909 (defun ediff-move-overlay (overlay beg end &optional buffer) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1910 "Calls `move-overlay' in Emacs and `set-extent-endpoints' in Lemacs. |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1911 Checks if overlay's buffer exists before actually doing the move." |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1912 (let ((buf (and overlay (ediff-overlay-buffer overlay)))) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1913 (if (ediff-buffer-live-p buf) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1914 (if ediff-xemacs-p |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1915 (set-extent-endpoints overlay beg end) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1916 (move-overlay overlay beg end buffer)) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1917 ;; buffer's dead |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1918 (if overlay |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1919 (ediff-delete-overlay overlay))))) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1920 |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1921 (defun ediff-overlay-put (overlay prop value) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1922 "Calls `overlay-put' or `set-extent-property' depending on Emacs version. |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1923 Checks if overlay's buffer exists." |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1924 (if (ediff-buffer-live-p (ediff-overlay-buffer overlay)) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1925 (if ediff-xemacs-p |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1926 (set-extent-property overlay prop value) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1927 (overlay-put overlay prop value)) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1928 (ediff-delete-overlay overlay))) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1929 |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
1930 ;; Some diff region tests |
11042 | 1931 |
1932 ;; t if diff region is empty. | |
1933 ;; In case of buffer C, t also if it is not a 3way | |
1934 ;; comparison job (merging jobs return t as well). | |
1935 (defun ediff-empty-diff-region-p (n buf-type) | |
1936 (if (eq buf-type 'C) | |
1937 (or (not ediff-3way-comparison-job) | |
1938 (= (ediff-get-diff-posn 'C 'beg n) | |
1939 (ediff-get-diff-posn 'C 'end n))) | |
1940 (= (ediff-get-diff-posn buf-type 'beg n) | |
1941 (ediff-get-diff-posn buf-type 'end n)))) | |
1942 | |
1943 ;; Test if diff region is white space only. | |
1944 ;; If 2-way job and buf-type = C, then returns t. | |
1945 (defun ediff-whitespace-diff-region-p (n buf-type) | |
1946 (or (and (eq buf-type 'C) (not ediff-3way-job)) | |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1947 (ediff-empty-diff-region-p n buf-type) |
11042 | 1948 (let ((beg (ediff-get-diff-posn buf-type 'beg n)) |
1949 (end (ediff-get-diff-posn buf-type 'end n))) | |
19047 | 1950 (ediff-with-current-buffer (ediff-get-buffer buf-type) |
11042 | 1951 (save-excursion |
1952 (goto-char beg) | |
1953 (skip-chars-forward ediff-whitespace) | |
1954 (>= (point) end)))))) | |
1955 | |
1956 ;; temporarily uses DIR to abbreviate file name | |
1957 ;; if DIR is nil, use default-directory | |
14582
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
1958 (defun ediff-abbreviate-file-name (file &optional dir) |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1959 (cond ((stringp dir) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1960 (let ((directory-abbrev-alist (list (cons dir "")))) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1961 (abbreviate-file-name file))) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1962 (ediff-emacs-p (abbreviate-file-name file)) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1963 (t ; XEmacs requires addl argument |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1964 (abbreviate-file-name file t)))) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1965 |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1966 ;; Takes a directory and returns the parent directory. |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1967 ;; does nothing to `/'. If the ARG is a regular file, |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1968 ;; strip the file AND the last dir. |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1969 (defun ediff-strip-last-dir (dir) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1970 (if (not (stringp dir)) (setq dir default-directory)) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1971 (setq dir (expand-file-name dir)) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1972 (or (file-directory-p dir) (setq dir (file-name-directory dir))) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1973 (let* ((pos (1- (length dir))) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1974 (last-char (aref dir pos))) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1975 (if (and (> pos 0) (= last-char ?/)) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1976 (setq dir (substring dir 0 pos))) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1977 (ediff-abbreviate-file-name (file-name-directory dir)))) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1978 |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1979 (defun ediff-truncate-string-left (str newlen) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1980 ;; leave space for ... on the left |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1981 (let ((len (length str)) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1982 substr) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1983 (if (<= len newlen) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1984 str |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1985 (setq newlen (max 0 (- newlen 3))) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1986 (setq substr (substring str (max 0 (- len 1 newlen)))) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1987 (concat "..." substr)))) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1988 |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1989 (defun ediff-abbrev-jobname (jobname) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1990 (cond ((eq jobname 'ediff-directories) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1991 "Compare two directories") |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1992 ((eq jobname 'ediff-files) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1993 "Compare two files") |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1994 ((eq jobname 'ediff-buffers) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1995 "Compare two buffers") |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1996 ((eq jobname 'ediff-directories3) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1997 "Compare three directories") |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1998 ((eq jobname 'ediff-files3) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
1999 "Compare three files") |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
2000 ((eq jobname 'ediff-buffers3) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
2001 "Compare three buffers") |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
2002 ((eq jobname 'ediff-revision) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
2003 "Compare file with a version") |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
2004 ((eq jobname 'ediff-directory-revisions) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
2005 "Compare dir files with versions") |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
2006 ((eq jobname 'ediff-merge-directory-revisions) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
2007 "Merge dir files with versions") |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
2008 ((eq jobname 'ediff-merge-directory-revisions-with-ancestor) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
2009 "Merge dir versions via ancestors") |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
2010 (t |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
2011 (let* ((str (substring (symbol-name jobname) 6)) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
2012 (len (length str)) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
2013 (pos 0)) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
2014 (while (< pos len) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
2015 (if (= pos 0) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
2016 (aset str pos (upcase (aref str pos)))) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
2017 (if (= (aref str pos) ?-) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
2018 (aset str pos ?\ )) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
2019 (setq pos (1+ pos))) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
2020 str)))) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
2021 |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
2022 |
11042 | 2023 |
2024 (defsubst ediff-get-region-contents (n buf-type ctrl-buf &optional start end) | |
19047 | 2025 (ediff-with-current-buffer |
2026 (ediff-with-current-buffer ctrl-buf (ediff-get-buffer buf-type)) | |
11042 | 2027 (buffer-substring |
2028 (or start (ediff-get-diff-posn buf-type 'beg n ctrl-buf)) | |
2029 (or end (ediff-get-diff-posn buf-type 'end n ctrl-buf))))) | |
2030 | |
2031 ;; If ediff modified mode line, strip the modification | |
2032 (defsubst ediff-strip-mode-line-format () | |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
2033 (if (member (car mode-line-format) '(" A: " " B: " " C: " " Ancestor: ")) |
11042 | 2034 (setq mode-line-format (nth 2 mode-line-format)))) |
2035 | |
2036 ;; Verify that we have a difference selected. | |
2037 (defsubst ediff-valid-difference-p (&optional n) | |
2038 (or n (setq n ediff-current-difference)) | |
2039 (and (>= n 0) (< n ediff-number-of-differences))) | |
2040 | |
2041 (defsubst ediff-show-all-diffs (n) | |
2042 "Don't skip difference regions." | |
2043 nil) | |
13128
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
2044 |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
2045 (defsubst Xor (a b) |
b0ec8d932b35
(ediff-abbreviate-file-name): function modified.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12212
diff
changeset
|
2046 (or (and a (not b)) (and (not a) b))) |
13216
b9dc8cc658d5
Moved defsubsts up.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
13128
diff
changeset
|
2047 |
b9dc8cc658d5
Moved defsubsts up.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
13128
diff
changeset
|
2048 (defsubst ediff-message-if-verbose (string &rest args) |
b9dc8cc658d5
Moved defsubsts up.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
13128
diff
changeset
|
2049 (if ediff-verbose-p |
b9dc8cc658d5
Moved defsubsts up.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
13128
diff
changeset
|
2050 (apply 'message string args))) |
14582
c768f6d7daaa
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14534
diff
changeset
|
2051 |
15480
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
2052 (defun ediff-file-attributes (filename attr-number) |
18054 | 2053 (if (ediff-file-remote-p filename) |
2054 -1 | |
2055 (nth attr-number (file-attributes filename)))) | |
2056 | |
15480
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
2057 (defsubst ediff-file-size (filename) |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
2058 (ediff-file-attributes filename 7)) |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
2059 (defsubst ediff-file-modtime (filename) |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
2060 (ediff-file-attributes filename 5)) |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
2061 |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
2062 |
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
2063 (defun ediff-convert-standard-filename (fname) |
18054 | 2064 (if (fboundp 'convert-standard-filename) |
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
2065 (convert-standard-filename fname) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
2066 fname)) |
15480
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
2067 |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14582
diff
changeset
|
2068 |
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
2069 ;;; Local Variables: |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
2070 ;;; eval: (put 'ediff-defvar-local 'lisp-indent-hook 'defun) |
19047 | 2071 ;;; eval: (put 'ediff-with-current-buffer 'lisp-indent-hook 1) |
2072 ;;; eval: (put 'ediff-with-current-buffer 'edebug-form-spec '(form body)) | |
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16169
diff
changeset
|
2073 ;;; End: |
11042 | 2074 |
2075 (provide 'ediff-init) | |
2076 | |
2077 | |
2078 ;;; ediff-init.el ends here |