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