]> code.delx.au - gnu-emacs/blob - lisp/vc/ediff-util.el
* lisp/simple.el (shell-command): Add save-match-data comment
[gnu-emacs] / lisp / vc / ediff-util.el
1 ;;; ediff-util.el --- the core commands and utilities of ediff -*- lexical-binding:t -*-
2
3 ;; Copyright (C) 1994-2016 Free Software Foundation, Inc.
4
5 ;; Author: Michael Kifer <kifer@cs.stonybrook.edu>
6 ;; Package: ediff
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
22
23 ;;; Commentary:
24
25 ;;; Code:
26
27
28 (provide 'ediff-util)
29
30 ;; Compiler pacifier
31 (defvar ediff-use-toolbar-p)
32 (defvar ediff-toolbar-height)
33 (defvar ediff-toolbar)
34 (defvar ediff-toolbar-3way)
35 (defvar bottom-toolbar)
36 (defvar bottom-toolbar-visible-p)
37 (defvar bottom-toolbar-height)
38 (defvar mark-active)
39
40 (defvar ediff-after-quit-hook-internal nil)
41
42 (eval-and-compile
43 (unless (fboundp 'declare-function) (defmacro declare-function (&rest _r))))
44
45 ;; end pacifier
46
47
48 (require 'ediff-init)
49 (require 'ediff-help)
50 (require 'ediff-mult)
51 (require 'ediff-wind)
52 (require 'ediff-diff)
53 (require 'ediff-merg)
54 ;; for compatibility with current stable version of xemacs
55 (if (featurep 'xemacs)
56 (require 'ediff-tbar))
57
58 \f
59 ;;; Functions
60
61 (defun ediff-mode ()
62 "Ediff mode controls all operations in a single Ediff session.
63 This mode is entered through one of the following commands:
64 `ediff'
65 `ediff-files'
66 `ediff-buffers'
67 `ebuffers'
68 `ediff3'
69 `ediff-files3'
70 `ediff-buffers3'
71 `ebuffers3'
72 `ediff-merge'
73 `ediff-merge-files'
74 `ediff-merge-files-with-ancestor'
75 `ediff-merge-buffers'
76 `ediff-merge-buffers-with-ancestor'
77 `ediff-merge-revisions'
78 `ediff-merge-revisions-with-ancestor'
79 `ediff-windows-wordwise'
80 `ediff-windows-linewise'
81 `ediff-regions-wordwise'
82 `ediff-regions-linewise'
83 `epatch'
84 `ediff-patch-file'
85 `ediff-patch-buffer'
86 `epatch-buffer'
87 `erevision'
88 `ediff-revision'
89
90 Commands:
91 \\{ediff-mode-map}"
92 ;; FIXME: Use define-derived-mode.
93 (kill-all-local-variables)
94 (setq major-mode 'ediff-mode)
95 (setq mode-name "Ediff")
96 ;; We use run-hooks instead of run-mode-hooks for two reasons.
97 ;; The ediff control buffer is read-only and it is not supposed to be
98 ;; modified by minor modes and such. So, run-mode-hooks doesn't do anything
99 ;; useful here on top of what run-hooks does.
100 ;; Second, changing run-hooks to run-mode-hooks would require an
101 ;; if-statement, since XEmacs doesn't have this.
102 (run-hooks 'ediff-mode-hook))
103
104
105 \f
106 ;;; Build keymaps
107
108 (ediff-defvar-local ediff-mode-map nil
109 "Local keymap used in Ediff mode.
110 This is local to each Ediff Control Panel, so they may vary from invocation
111 to invocation.")
112
113 ;; Set up the keymap in the control buffer
114 (defun ediff-set-keys ()
115 "Set up Ediff keymap, if necessary."
116 (if (null ediff-mode-map)
117 (ediff-setup-keymap))
118 (use-local-map ediff-mode-map))
119
120 ;; Reload Ediff keymap. For debugging only.
121 (defun ediff-reload-keymap ()
122 (interactive)
123 (setq ediff-mode-map nil)
124 (ediff-set-keys))
125
126
127 (defun ediff-setup-keymap ()
128 "Set up the keymap used in the control buffer of Ediff."
129 (setq ediff-mode-map (make-sparse-keymap))
130 (suppress-keymap ediff-mode-map)
131
132 (define-key ediff-mode-map
133 (if (featurep 'emacs) [mouse-2] [button2]) 'ediff-help-for-quick-help)
134 (define-key ediff-mode-map "\C-m" 'ediff-help-for-quick-help)
135
136 (define-key ediff-mode-map "p" 'ediff-previous-difference)
137 (define-key ediff-mode-map "\C-?" 'ediff-previous-difference)
138 (define-key ediff-mode-map [delete] 'ediff-previous-difference)
139 (define-key ediff-mode-map "\C-h" (if ediff-no-emacs-help-in-control-buffer
140 'ediff-previous-difference nil))
141 ;; must come after C-h, or else C-h wipes out backspace's binding in XEmacs
142 (define-key ediff-mode-map [backspace] 'ediff-previous-difference)
143 (define-key ediff-mode-map [?\S-\ ] 'ediff-previous-difference)
144 (define-key ediff-mode-map "n" 'ediff-next-difference)
145 (define-key ediff-mode-map " " 'ediff-next-difference)
146 (define-key ediff-mode-map "j" 'ediff-jump-to-difference)
147 (define-key ediff-mode-map "g" nil)
148 (define-key ediff-mode-map "ga" 'ediff-jump-to-difference-at-point)
149 (define-key ediff-mode-map "gb" 'ediff-jump-to-difference-at-point)
150 (define-key ediff-mode-map "q" 'ediff-quit)
151 (define-key ediff-mode-map "D" 'ediff-show-diff-output)
152 (define-key ediff-mode-map "z" 'ediff-suspend)
153 (define-key ediff-mode-map "\C-l" 'ediff-recenter)
154 (define-key ediff-mode-map "|" 'ediff-toggle-split)
155 (define-key ediff-mode-map "h" 'ediff-toggle-hilit)
156 (or ediff-word-mode
157 (define-key ediff-mode-map "@" 'ediff-toggle-autorefine))
158 (if ediff-narrow-job
159 (define-key ediff-mode-map "%" 'ediff-toggle-narrow-region))
160 (define-key ediff-mode-map "~" 'ediff-swap-buffers)
161 (define-key ediff-mode-map "v" 'ediff-scroll-vertically)
162 (define-key ediff-mode-map "\C-v" 'ediff-scroll-vertically)
163 (define-key ediff-mode-map "^" 'ediff-scroll-vertically)
164 (define-key ediff-mode-map "\M-v" 'ediff-scroll-vertically)
165 (define-key ediff-mode-map "V" 'ediff-scroll-vertically)
166 (define-key ediff-mode-map "<" 'ediff-scroll-horizontally)
167 (define-key ediff-mode-map ">" 'ediff-scroll-horizontally)
168 (define-key ediff-mode-map "i" 'ediff-status-info)
169 (define-key ediff-mode-map "E" 'ediff-documentation)
170 (define-key ediff-mode-map "?" 'ediff-toggle-help)
171 (define-key ediff-mode-map "!" 'ediff-update-diffs)
172 (define-key ediff-mode-map "M" 'ediff-show-current-session-meta-buffer)
173 (define-key ediff-mode-map "R" 'ediff-show-registry)
174 (or ediff-word-mode
175 (define-key ediff-mode-map "*" 'ediff-make-or-kill-fine-diffs))
176 (define-key ediff-mode-map "a" nil)
177 (define-key ediff-mode-map "b" nil)
178 (define-key ediff-mode-map "r" nil)
179 (cond (ediff-merge-job
180 ;; Will barf if no ancestor
181 (define-key ediff-mode-map "/" 'ediff-show-ancestor)
182 ;; In merging, we allow only A->C and B->C copying.
183 (define-key ediff-mode-map "a" 'ediff-copy-A-to-C)
184 (define-key ediff-mode-map "b" 'ediff-copy-B-to-C)
185 (define-key ediff-mode-map "r" 'ediff-restore-diff-in-merge-buffer)
186 (define-key ediff-mode-map "s" 'ediff-shrink-window-C)
187 (define-key ediff-mode-map "+" 'ediff-combine-diffs)
188 (define-key ediff-mode-map "$" nil)
189 (define-key ediff-mode-map "$$" 'ediff-toggle-show-clashes-only)
190 (define-key ediff-mode-map "$*" 'ediff-toggle-skip-changed-regions)
191 (define-key ediff-mode-map "&" 'ediff-re-merge))
192 (ediff-3way-comparison-job
193 (define-key ediff-mode-map "ab" 'ediff-copy-A-to-B)
194 (define-key ediff-mode-map "ba" 'ediff-copy-B-to-A)
195 (define-key ediff-mode-map "ac" 'ediff-copy-A-to-C)
196 (define-key ediff-mode-map "bc" 'ediff-copy-B-to-C)
197 (define-key ediff-mode-map "c" nil)
198 (define-key ediff-mode-map "ca" 'ediff-copy-C-to-A)
199 (define-key ediff-mode-map "cb" 'ediff-copy-C-to-B)
200 (define-key ediff-mode-map "ra" 'ediff-restore-diff)
201 (define-key ediff-mode-map "rb" 'ediff-restore-diff)
202 (define-key ediff-mode-map "rc" 'ediff-restore-diff)
203 (define-key ediff-mode-map "C" 'ediff-toggle-read-only))
204 (t ; 2-way comparison
205 (define-key ediff-mode-map "a" 'ediff-copy-A-to-B)
206 (define-key ediff-mode-map "b" 'ediff-copy-B-to-A)
207 (define-key ediff-mode-map "ra" 'ediff-restore-diff)
208 (define-key ediff-mode-map "rb" 'ediff-restore-diff))
209 ) ; cond
210 (define-key ediff-mode-map "G" 'ediff-submit-report)
211 (define-key ediff-mode-map "#" nil)
212 (define-key ediff-mode-map "#h" 'ediff-toggle-regexp-match)
213 (define-key ediff-mode-map "#f" 'ediff-toggle-regexp-match)
214 (define-key ediff-mode-map "#c" 'ediff-toggle-ignore-case)
215 (or ediff-word-mode
216 (define-key ediff-mode-map "##" 'ediff-toggle-skip-similar))
217 (define-key ediff-mode-map "o" nil)
218 (define-key ediff-mode-map "A" 'ediff-toggle-read-only)
219 (define-key ediff-mode-map "B" 'ediff-toggle-read-only)
220 (define-key ediff-mode-map "w" nil)
221 (define-key ediff-mode-map "wa" 'ediff-save-buffer)
222 (define-key ediff-mode-map "wb" 'ediff-save-buffer)
223 (define-key ediff-mode-map "wd" 'ediff-save-buffer)
224 (define-key ediff-mode-map "=" 'ediff-inferior-compare-regions)
225 (if (and (fboundp 'ediff-show-patch-diagnostics) (ediff-patch-job))
226 (define-key ediff-mode-map "P" 'ediff-show-patch-diagnostics))
227 (if ediff-3way-job
228 (progn
229 (define-key ediff-mode-map "wc" 'ediff-save-buffer)
230 (define-key ediff-mode-map "gc" 'ediff-jump-to-difference-at-point)
231 ))
232
233 (define-key ediff-mode-map "m" 'ediff-toggle-wide-display)
234
235 ;; Allow ediff-mode-map to be referenced indirectly
236 (fset 'ediff-mode-map ediff-mode-map)
237 (run-hooks 'ediff-keymap-setup-hook))
238
239
240 ;;; Setup functions
241
242 ;; Common startup entry for all Ediff functions It now returns control buffer
243 ;; so other functions can do post-processing SETUP-PARAMETERS is a list of the
244 ;; form ((param .val) (param . val)...) This serves a similar purpose to
245 ;; STARTUP-HOOKS, but these parameters are set in the new control buffer right
246 ;; after this buf is created and before any windows are set and such.
247 (defun ediff-setup (buffer-A file-A buffer-B file-B buffer-C file-C
248 startup-hooks setup-parameters
249 &optional merge-buffer-file)
250 (run-hooks 'ediff-before-setup-hook)
251 ;; ediff-convert-standard-filename puts file names in the form appropriate
252 ;; for the OS at hand.
253 (setq file-A (ediff-convert-standard-filename (expand-file-name file-A)))
254 (setq file-B (ediff-convert-standard-filename (expand-file-name file-B)))
255 (if (stringp file-C)
256 (setq file-C
257 (ediff-convert-standard-filename (expand-file-name file-C))))
258 (if (stringp merge-buffer-file)
259 (progn
260 (setq merge-buffer-file
261 (ediff-convert-standard-filename
262 (expand-file-name merge-buffer-file)))
263 ;; check the directory exists
264 (or (file-exists-p (file-name-directory merge-buffer-file))
265 (error "Directory %s given as place to save the merge doesn't exist"
266 (abbreviate-file-name
267 (file-name-directory merge-buffer-file))))
268 (if (and (file-exists-p merge-buffer-file)
269 (file-directory-p merge-buffer-file))
270 (error "The merge buffer file %s must not be a directory"
271 (abbreviate-file-name merge-buffer-file)))
272 ))
273 (let* ((control-buffer-name
274 (ediff-unique-buffer-name "*Ediff Control Panel" "*"))
275 (control-buffer (ediff-with-current-buffer buffer-A
276 (get-buffer-create control-buffer-name))))
277 (ediff-with-current-buffer control-buffer
278 (ediff-mode)
279
280 (make-local-variable 'ediff-use-long-help-message)
281 (make-local-variable 'ediff-prefer-iconified-control-frame)
282 (make-local-variable 'ediff-split-window-function)
283 (make-local-variable 'ediff-default-variant)
284 (make-local-variable 'ediff-merge-window-share)
285 (make-local-variable 'ediff-window-setup-function)
286 (make-local-variable 'ediff-keep-variants)
287
288 (make-local-variable 'window-min-height)
289 (setq window-min-height 2)
290
291 (if (featurep 'xemacs)
292 (make-local-hook 'ediff-after-quit-hook-internal))
293
294 ;; unwrap set up parameters passed as argument
295 (while setup-parameters
296 (set (car (car setup-parameters)) (cdr (car setup-parameters)))
297 (setq setup-parameters (cdr setup-parameters)))
298
299 ;; set variables classifying the current ediff job
300 ;; must come AFTER setup-parameters
301 (setq ediff-3way-comparison-job (ediff-3way-comparison-job)
302 ediff-merge-job (ediff-merge-job)
303 ediff-merge-with-ancestor-job (ediff-merge-with-ancestor-job)
304 ediff-3way-job (ediff-3way-job)
305 ediff-diff3-job (ediff-diff3-job)
306 ediff-narrow-job (ediff-narrow-job)
307 ediff-windows-job (ediff-windows-job)
308 ediff-word-mode-job (ediff-word-mode-job))
309
310 ;; Don't delete variants in case of ediff-buffer-* jobs without asking.
311 ;; This is because one may lose work---dangerous.
312 (if (string-match "buffer" (symbol-name ediff-job-name))
313 (setq ediff-keep-variants t))
314
315 (if (featurep 'xemacs)
316 (make-local-hook 'pre-command-hook))
317
318 (if (ediff-window-display-p)
319 (add-hook 'pre-command-hook 'ediff-spy-after-mouse nil 'local))
320 (setq ediff-mouse-pixel-position (mouse-pixel-position))
321
322 ;; adjust for merge jobs
323 (if ediff-merge-job
324 (let ((buf
325 ;; If default variant is `combined', the right stuff is
326 ;; inserted by ediff-do-merge
327 ;; Note: at some point, we tried to put ancestor buffer here
328 ;; (which is currently buffer C. This didn't work right
329 ;; because the merge buffer will contain lossage: diff regions
330 ;; in the ancestor, which correspond to revisions that agree
331 ;; in both buf A and B.
332 (cond ((eq ediff-default-variant 'default-B)
333 buffer-B)
334 (t buffer-A))))
335
336 (setq ediff-split-window-function
337 ediff-merge-split-window-function)
338
339 ;; remember the ancestor buffer, if any
340 (setq ediff-ancestor-buffer buffer-C)
341
342 (setq buffer-C
343 (get-buffer-create
344 (ediff-unique-buffer-name "*ediff-merge" "*")))
345 (with-current-buffer buffer-C
346 (insert-buffer-substring buf)
347 (goto-char (point-min))
348 (funcall (ediff-with-current-buffer buf major-mode))
349 (widen) ; merge buffer is always widened
350 (add-hook 'local-write-file-hooks 'ediff-set-merge-mode nil t)
351 )))
352 (setq buffer-read-only nil
353 ediff-buffer-A buffer-A
354 ediff-buffer-B buffer-B
355 ediff-buffer-C buffer-C
356 ediff-control-buffer control-buffer)
357
358 (ediff-choose-syntax-table)
359
360 (setq ediff-control-buffer-suffix
361 (if (string-match "<[0-9]*>" control-buffer-name)
362 (substring control-buffer-name
363 (match-beginning 0) (match-end 0))
364 "")
365 ediff-control-buffer-number
366 (max
367 0
368 (1-
369 (string-to-number
370 (substring
371 ediff-control-buffer-suffix
372 (or
373 (string-match "[0-9]+" ediff-control-buffer-suffix)
374 0))))))
375
376 (setq ediff-error-buffer
377 (get-buffer-create (ediff-unique-buffer-name "*ediff-errors" "*")))
378
379 (with-current-buffer ediff-error-buffer
380 (setq buffer-undo-list t))
381
382 (ediff-with-current-buffer buffer-A (ediff-strip-mode-line-format))
383 (ediff-with-current-buffer buffer-B (ediff-strip-mode-line-format))
384 (if ediff-3way-job
385 (ediff-with-current-buffer buffer-C (ediff-strip-mode-line-format)))
386 (if (ediff-buffer-live-p ediff-ancestor-buffer)
387 (ediff-with-current-buffer ediff-ancestor-buffer
388 (ediff-strip-mode-line-format)))
389
390 (ediff-save-protected-variables) ; save variables to be restored on exit
391
392 ;; ediff-setup-diff-regions-function must be set after setup
393 ;; parameters are processed.
394 (setq ediff-setup-diff-regions-function
395 (if ediff-diff3-job
396 'ediff-setup-diff-regions3
397 'ediff-setup-diff-regions))
398
399 (setq ediff-wide-bounds
400 (list (ediff-make-bullet-proof-overlay
401 '(point-min) '(point-max) ediff-buffer-A)
402 (ediff-make-bullet-proof-overlay
403 '(point-min) '(point-max) ediff-buffer-B)
404 (ediff-make-bullet-proof-overlay
405 '(point-min) '(point-max) ediff-buffer-C)))
406
407 ;; This has effect only on ediff-windows/regions
408 ;; In all other cases, ediff-visible-region sets visibility bounds to
409 ;; ediff-wide-bounds, and ediff-narrow-bounds are ignored.
410 (if ediff-start-narrowed
411 (setq ediff-visible-bounds ediff-narrow-bounds)
412 (setq ediff-visible-bounds ediff-wide-bounds))
413
414 (ediff-set-keys) ; comes after parameter setup
415
416 ;; set up ediff-narrow-bounds, if not set
417 (or ediff-narrow-bounds
418 (setq ediff-narrow-bounds ediff-wide-bounds))
419
420 ;; All these must be inside ediff-with-current-buffer control-buffer,
421 ;; since these vars are local to control-buffer
422 ;; These won't run if there are errors in diff
423 (ediff-with-current-buffer ediff-buffer-A
424 (ediff-nuke-selective-display)
425 (run-hooks 'ediff-prepare-buffer-hook)
426 (if (ediff-with-current-buffer control-buffer ediff-merge-job)
427 (setq buffer-read-only t))
428 ;; add control-buffer to the list of sessions--no longer used, but may
429 ;; be used again in the future
430 (or (memq control-buffer ediff-this-buffer-ediff-sessions)
431 (setq ediff-this-buffer-ediff-sessions
432 (cons control-buffer ediff-this-buffer-ediff-sessions)))
433 (if ediff-make-buffers-readonly-at-startup
434 (setq buffer-read-only t))
435 )
436
437 (ediff-with-current-buffer ediff-buffer-B
438 (ediff-nuke-selective-display)
439 (run-hooks 'ediff-prepare-buffer-hook)
440 (if (ediff-with-current-buffer control-buffer ediff-merge-job)
441 (setq buffer-read-only t))
442 ;; add control-buffer to the list of sessions
443 (or (memq control-buffer ediff-this-buffer-ediff-sessions)
444 (setq ediff-this-buffer-ediff-sessions
445 (cons control-buffer ediff-this-buffer-ediff-sessions)))
446 (if ediff-make-buffers-readonly-at-startup
447 (setq buffer-read-only t))
448 )
449
450 (if ediff-3way-job
451 (ediff-with-current-buffer ediff-buffer-C
452 (ediff-nuke-selective-display)
453 ;; the merge buffer should never be narrowed
454 ;; (it can happen if it is on rmail-mode or similar)
455 (if (ediff-with-current-buffer control-buffer ediff-merge-job)
456 (widen))
457 (run-hooks 'ediff-prepare-buffer-hook)
458 ;; add control-buffer to the list of sessions
459 (or (memq control-buffer ediff-this-buffer-ediff-sessions)
460 (setq ediff-this-buffer-ediff-sessions
461 (cons control-buffer
462 ediff-this-buffer-ediff-sessions)))
463 (if ediff-make-buffers-readonly-at-startup
464 (setq buffer-read-only t)
465 (setq buffer-read-only nil))
466 ))
467
468 (if (ediff-buffer-live-p ediff-ancestor-buffer)
469 (ediff-with-current-buffer ediff-ancestor-buffer
470 (ediff-nuke-selective-display)
471 (setq buffer-read-only t)
472 (run-hooks 'ediff-prepare-buffer-hook)
473 (or (memq control-buffer ediff-this-buffer-ediff-sessions)
474 (setq ediff-this-buffer-ediff-sessions
475 (cons control-buffer
476 ediff-this-buffer-ediff-sessions)))
477 ))
478
479 ;; the following must be after setting up ediff-narrow-bounds AND after
480 ;; nuking selective display
481 (funcall ediff-setup-diff-regions-function file-A file-B file-C)
482 (setq ediff-number-of-differences (length ediff-difference-vector-A))
483 (setq ediff-current-difference -1)
484
485 (ediff-make-current-diff-overlay 'A)
486 (ediff-make-current-diff-overlay 'B)
487 (if ediff-3way-job
488 (ediff-make-current-diff-overlay 'C))
489 (if ediff-merge-with-ancestor-job
490 (ediff-make-current-diff-overlay 'Ancestor))
491
492 (ediff-setup-windows buffer-A buffer-B buffer-C control-buffer)
493
494 (let ((shift-A (ediff-overlay-start
495 (ediff-get-value-according-to-buffer-type
496 'A ediff-narrow-bounds)))
497 (shift-B (ediff-overlay-start
498 (ediff-get-value-according-to-buffer-type
499 'B ediff-narrow-bounds)))
500 (shift-C (ediff-overlay-start
501 (ediff-get-value-according-to-buffer-type
502 'C ediff-narrow-bounds))))
503 ;; position point in buf A
504 (save-excursion
505 (select-window ediff-window-A)
506 (goto-char shift-A))
507 ;; position point in buf B
508 (save-excursion
509 (select-window ediff-window-B)
510 (goto-char shift-B))
511 (if ediff-3way-job
512 (save-excursion
513 (select-window ediff-window-C)
514 (goto-char shift-C)))
515 )
516
517 (select-window ediff-control-window)
518 (ediff-visible-region)
519
520 (mapc #'funcall startup-hooks)
521 (ediff-arrange-autosave-in-merge-jobs merge-buffer-file)
522
523 (ediff-refresh-mode-lines)
524 (setq buffer-read-only t)
525 (setq ediff-session-registry
526 (cons control-buffer ediff-session-registry))
527 (ediff-update-registry)
528 (if (ediff-buffer-live-p ediff-meta-buffer)
529 (ediff-update-meta-buffer
530 ediff-meta-buffer nil ediff-meta-session-number))
531 (run-hooks 'ediff-startup-hook)
532 ) ; eval in control-buffer
533 control-buffer))
534
535
536 ;; This function assumes that we are in the window where control buffer is
537 ;; to reside.
538 (defun ediff-setup-control-buffer (ctl-buf)
539 "Set up window for control buffer."
540 (if (window-dedicated-p)
541 (set-buffer ctl-buf) ; we are in control frame but just in case
542 (switch-to-buffer ctl-buf))
543 (let ((window-min-height 2))
544 (erase-buffer)
545 (ediff-set-help-message)
546 (insert ediff-help-message)
547 (shrink-window-if-larger-than-buffer)
548 (or (ediff-multiframe-setup-p)
549 (ediff-indent-help-message))
550 (ediff-set-help-overlays)
551
552 (set-buffer-modified-p nil)
553 (ediff-refresh-mode-lines)
554 (setq ediff-control-window (selected-window))
555 (setq ediff-window-config-saved
556 (format "%S%S%S%S%S%S%S"
557 ediff-control-window
558 ediff-window-A
559 ediff-window-B
560 ediff-window-C
561 ediff-split-window-function
562 (ediff-multiframe-setup-p)
563 ediff-wide-display-p))
564
565 (set-window-dedicated-p (selected-window) t)
566 ;; In multiframe, toolbar is set in ediff-setup-control-frame
567 (if (not (ediff-multiframe-setup-p))
568 (ediff-make-bottom-toolbar)) ; this checks if toolbar is requested
569 (goto-char (point-min))
570 (skip-chars-forward ediff-whitespace)))
571
572 ;; This executes in control buffer and sets auto-save, visited file name, etc,
573 ;; in the merge buffer
574 (defun ediff-arrange-autosave-in-merge-jobs (merge-buffer-file)
575 (if (not ediff-merge-job)
576 ()
577 (if (stringp merge-buffer-file)
578 (setq ediff-autostore-merges t
579 ediff-merge-store-file merge-buffer-file))
580 (if (stringp ediff-merge-store-file)
581 (progn
582 ;; save before leaving ctl buffer
583 (ediff-verify-file-merge-buffer ediff-merge-store-file)
584 (setq merge-buffer-file ediff-merge-store-file)
585 (ediff-with-current-buffer ediff-buffer-C
586 (set-visited-file-name merge-buffer-file))))
587 (ediff-with-current-buffer ediff-buffer-C
588 (setq buffer-offer-save t) ; ask before killing buffer
589 ;; make sure the contents is auto-saved
590 (auto-save-mode 1))
591 ))
592
593 \f
594 ;;; Commands for working with Ediff
595
596 (defun ediff-update-diffs ()
597 "Recompute difference regions in buffers A, B, and C.
598 Buffers are not synchronized with their respective files, so changes done
599 to these buffers are not saved at this point---the user can do this later,
600 if necessary."
601 (interactive)
602 (ediff-barf-if-not-control-buffer)
603 (if (and (ediff-buffer-live-p ediff-ancestor-buffer)
604 (not
605 (y-or-n-p
606 "Ancestor buffer will not be used. Recompute diffs anyway? ")))
607 (error "Recomputation of differences canceled"))
608
609 (let ((point-A (ediff-with-current-buffer ediff-buffer-A (point)))
610 ;;(point-B (ediff-with-current-buffer ediff-buffer-B (point)))
611 (tmp-buffer (get-buffer-create ediff-tmp-buffer))
612 (buf-A-file-name (buffer-file-name ediff-buffer-A))
613 (buf-B-file-name (buffer-file-name ediff-buffer-B))
614 ;; (null ediff-buffer-C) is no problem, as we later check if
615 ;; ediff-buffer-C is alive
616 (buf-C-file-name (buffer-file-name ediff-buffer-C))
617 (overl-A (ediff-get-value-according-to-buffer-type
618 'A ediff-narrow-bounds))
619 (overl-B (ediff-get-value-according-to-buffer-type
620 'B ediff-narrow-bounds))
621 (overl-C (ediff-get-value-according-to-buffer-type
622 'C ediff-narrow-bounds))
623 beg-A end-A beg-B end-B beg-C end-C
624 file-A file-B file-C)
625
626 (if (stringp buf-A-file-name)
627 (setq buf-A-file-name (file-name-nondirectory buf-A-file-name)))
628 (if (stringp buf-B-file-name)
629 (setq buf-B-file-name (file-name-nondirectory buf-B-file-name)))
630 (if (stringp buf-C-file-name)
631 (setq buf-C-file-name (file-name-nondirectory buf-C-file-name)))
632
633 (ediff-unselect-and-select-difference -1)
634
635 (setq beg-A (ediff-overlay-start overl-A)
636 beg-B (ediff-overlay-start overl-B)
637 beg-C (ediff-overlay-start overl-C)
638 end-A (ediff-overlay-end overl-A)
639 end-B (ediff-overlay-end overl-B)
640 end-C (ediff-overlay-end overl-C))
641
642 (if ediff-word-mode
643 (progn
644 (ediff-wordify beg-A end-A ediff-buffer-A tmp-buffer)
645 (setq file-A (ediff-make-temp-file tmp-buffer "regA"))
646 (ediff-wordify beg-B end-B ediff-buffer-B tmp-buffer)
647 (setq file-B (ediff-make-temp-file tmp-buffer "regB"))
648 (if ediff-3way-job
649 (progn
650 (ediff-wordify beg-C end-C ediff-buffer-C tmp-buffer)
651 (setq file-C (ediff-make-temp-file tmp-buffer "regC"))))
652 )
653 ;; not word-mode
654 (setq file-A (ediff-make-temp-file ediff-buffer-A buf-A-file-name))
655 (setq file-B (ediff-make-temp-file ediff-buffer-B buf-B-file-name))
656 (if ediff-3way-job
657 (setq file-C (ediff-make-temp-file ediff-buffer-C buf-C-file-name)))
658 )
659
660 (ediff-clear-diff-vector 'ediff-difference-vector-A 'fine-diffs-also)
661 (ediff-clear-diff-vector 'ediff-difference-vector-B 'fine-diffs-also)
662 (ediff-clear-diff-vector 'ediff-difference-vector-C 'fine-diffs-also)
663 (ediff-clear-diff-vector
664 'ediff-difference-vector-Ancestor 'fine-diffs-also)
665 ;; let them garbage collect. we can't use the ancestor after recomputing
666 ;; the diffs.
667 (setq ediff-difference-vector-Ancestor nil
668 ediff-ancestor-buffer nil
669 ediff-state-of-merge nil)
670
671 (setq ediff-killed-diffs-alist nil) ; invalidate saved killed diff regions
672
673 ;; In case of merge job, fool it into thinking that it is just doing
674 ;; comparison
675 (let ((ediff-setup-diff-regions-function ediff-setup-diff-regions-function)
676 (ediff-3way-comparison-job ediff-3way-comparison-job)
677 (ediff-merge-job ediff-merge-job)
678 (ediff-merge-with-ancestor-job ediff-merge-with-ancestor-job)
679 (ediff-job-name ediff-job-name))
680 (if ediff-merge-job
681 (setq ediff-setup-diff-regions-function 'ediff-setup-diff-regions3
682 ediff-3way-comparison-job t
683 ediff-merge-job nil
684 ediff-merge-with-ancestor-job nil
685 ediff-job-name 'ediff-files3))
686 (funcall ediff-setup-diff-regions-function file-A file-B file-C))
687
688 (setq ediff-number-of-differences (length ediff-difference-vector-A))
689 (delete-file file-A)
690 (delete-file file-B)
691 (if file-C
692 (delete-file file-C))
693
694 (if ediff-3way-job
695 (ediff-set-state-of-all-diffs-in-all-buffers ediff-control-buffer))
696
697 (ediff-jump-to-difference (ediff-diff-at-point 'A point-A))
698 (message "")
699 ))
700
701 ;; Not bound to any key---to dangerous. A user can do it if necessary.
702 (defun ediff-revert-buffers-then-recompute-diffs (noconfirm)
703 "Revert buffers A, B and C. Then rerun Ediff on file A and file B."
704 (interactive "P")
705 (ediff-barf-if-not-control-buffer)
706 (let ((bufA ediff-buffer-A)
707 (bufB ediff-buffer-B)
708 (bufC ediff-buffer-C)
709 (ctl-buf ediff-control-buffer)
710 (keep-variants ediff-keep-variants)
711 (ancestor-buf ediff-ancestor-buffer)
712 (ancestor-job ediff-merge-with-ancestor-job)
713 (merge ediff-merge-job)
714 (comparison ediff-3way-comparison-job))
715 (ediff-with-current-buffer bufA
716 (revert-buffer t noconfirm))
717 (ediff-with-current-buffer bufB
718 (revert-buffer t noconfirm))
719 ;; this should only be executed in a 3way comparison, not in merge
720 (if comparison
721 (ediff-with-current-buffer bufC
722 (revert-buffer t noconfirm)))
723 (if merge
724 (progn
725 (set-buffer ctl-buf)
726 ;; the argument says whether to reverse the meaning of
727 ;; ediff-keep-variants, i.e., ediff-really-quit runs here with
728 ;; variants kept.
729 (ediff-really-quit (not keep-variants))
730 (kill-buffer bufC)
731 (if ancestor-job
732 (ediff-merge-buffers-with-ancestor bufA bufB ancestor-buf)
733 (ediff-merge-buffers bufA bufB)))
734 (ediff-update-diffs))))
735
736
737 ;; optional NO-REHIGHLIGHT says to not rehighlight buffers
738 (defun ediff-recenter (&optional no-rehighlight)
739 "Bring the highlighted region of all buffers being compared into view.
740 Reestablish the default three-window display."
741 (interactive)
742 (ediff-barf-if-not-control-buffer)
743 (let (buffer-read-only)
744 (if (and (ediff-buffer-live-p ediff-buffer-A)
745 (ediff-buffer-live-p ediff-buffer-B)
746 (or (not ediff-3way-job)
747 (ediff-buffer-live-p ediff-buffer-C)))
748 (ediff-setup-windows
749 ediff-buffer-A ediff-buffer-B ediff-buffer-C ediff-control-buffer)
750 (or (eq this-command 'ediff-quit)
751 (message ediff-KILLED-VITAL-BUFFER
752 (beep 1)))
753 ))
754
755 ;; set visibility range appropriate to this invocation of Ediff.
756 (ediff-visible-region)
757 ;; raise
758 (if (and (ediff-window-display-p)
759 (symbolp this-command)
760 (symbolp last-command)
761 ;; Either one of the display-changing commands
762 (or (memq this-command
763 '(ediff-recenter
764 ediff-dir-action ediff-registry-action
765 ediff-patch-action
766 ediff-toggle-wide-display ediff-toggle-multiframe))
767 ;; Or one of the movement cmds and prev cmd was an Ediff cmd
768 ;; This avoids raising frames unnecessarily.
769 (and (memq this-command
770 '(ediff-next-difference
771 ediff-previous-difference
772 ediff-jump-to-difference
773 ediff-jump-to-difference-at-point))
774 (not (string-match "^ediff-" (symbol-name last-command)))
775 )))
776 (progn
777 (if (window-live-p ediff-window-A)
778 (raise-frame (window-frame ediff-window-A)))
779 (if (window-live-p ediff-window-B)
780 (raise-frame (window-frame ediff-window-B)))
781 (if (window-live-p ediff-window-C)
782 (raise-frame (window-frame ediff-window-C)))))
783 (if (and (ediff-window-display-p)
784 (frame-live-p ediff-control-frame)
785 (not ediff-use-long-help-message)
786 (not (ediff-frame-iconified-p ediff-control-frame)))
787 (if (fboundp 'select-frame-set-input-focus)
788 (select-frame-set-input-focus ediff-control-frame)
789 (raise-frame ediff-control-frame)
790 (select-frame ediff-control-frame)
791 (if (fboundp 'focus-frame)
792 (focus-frame ediff-control-frame))))
793
794 ;; Redisplay whatever buffers are showing, if there is a selected difference
795 (let ((control-frame ediff-control-frame)
796 (control-buf ediff-control-buffer))
797 (if (and (ediff-buffer-live-p ediff-buffer-A)
798 (ediff-buffer-live-p ediff-buffer-B)
799 (or (not ediff-3way-job)
800 (ediff-buffer-live-p ediff-buffer-C)))
801 (progn
802 (or no-rehighlight
803 (ediff-select-difference ediff-current-difference))
804
805 (ediff-recenter-one-window 'A)
806 (ediff-recenter-one-window 'B)
807 (if ediff-3way-job
808 (ediff-recenter-one-window 'C))
809
810 (ediff-with-current-buffer control-buf
811 (ediff-recenter-ancestor) ; check if ancestor is alive
812
813 (if (and (ediff-multiframe-setup-p)
814 (not ediff-use-long-help-message)
815 (not (ediff-frame-iconified-p ediff-control-frame)))
816 ;; never grab mouse on quit in this place
817 (ediff-reset-mouse
818 control-frame
819 (eq this-command 'ediff-quit))))
820 ))
821
822 (or no-rehighlight
823 (ediff-restore-highlighting))
824 (ediff-with-current-buffer control-buf (ediff-refresh-mode-lines))
825 ))
826
827 ;; this function returns to the window it was called from
828 ;; (which was the control window)
829 (defun ediff-recenter-one-window (buf-type)
830 (if (ediff-valid-difference-p)
831 ;; context must be saved before switching to windows A/B/C
832 (let* ((ctl-wind (selected-window))
833 (shift (ediff-overlay-start
834 (ediff-get-value-according-to-buffer-type
835 buf-type ediff-narrow-bounds)))
836 (job-name ediff-job-name)
837 (control-buf ediff-control-buffer)
838 (window-name (ediff-get-symbol-from-alist
839 buf-type ediff-window-alist))
840 (window (if (window-live-p (symbol-value window-name))
841 (symbol-value window-name))))
842
843 (if (and window ediff-windows-job)
844 (set-window-start window shift))
845 (if window
846 (progn
847 (select-window window)
848 (ediff-deactivate-mark)
849 (ediff-position-region
850 (ediff-get-diff-posn buf-type 'beg nil control-buf)
851 (ediff-get-diff-posn buf-type 'end nil control-buf)
852 (ediff-get-diff-posn buf-type 'beg nil control-buf)
853 job-name
854 )))
855 (select-window ctl-wind)
856 )))
857
858 (defun ediff-recenter-ancestor ()
859 ;; do half-hearted job by recentering the ancestor buffer, if it is alive and
860 ;; visible.
861 (if (and (ediff-buffer-live-p ediff-ancestor-buffer)
862 (ediff-valid-difference-p))
863 (let ((window (ediff-get-visible-buffer-window ediff-ancestor-buffer))
864 (ctl-wind (selected-window))
865 (job-name ediff-job-name)
866 (ctl-buf ediff-control-buffer))
867 (ediff-with-current-buffer ediff-ancestor-buffer
868 (goto-char (ediff-get-diff-posn 'Ancestor 'beg nil ctl-buf))
869 (if window
870 (progn
871 (select-window window)
872 (ediff-position-region
873 (ediff-get-diff-posn 'Ancestor 'beg nil ctl-buf)
874 (ediff-get-diff-posn 'Ancestor 'end nil ctl-buf)
875 (ediff-get-diff-posn 'Ancestor 'beg nil ctl-buf)
876 job-name))))
877 (select-window ctl-wind)
878 )))
879
880
881 ;; This will have to be refined for 3way jobs
882 (defun ediff-toggle-split ()
883 "Toggle vertical/horizontal window split.
884 Does nothing if file-A and file-B are in different frames."
885 (interactive)
886 (ediff-barf-if-not-control-buffer)
887 (let* ((wind-A (if (window-live-p ediff-window-A) ediff-window-A))
888 (wind-B (if (window-live-p ediff-window-B) ediff-window-B))
889 (wind-C (if (window-live-p ediff-window-C) ediff-window-C))
890 (frame-A (if wind-A (window-frame wind-A)))
891 (frame-B (if wind-B (window-frame wind-B)))
892 (frame-C (if wind-C (window-frame wind-C))))
893 (if (or (eq frame-A frame-B)
894 (not (frame-live-p frame-A))
895 (not (frame-live-p frame-B))
896 (if ediff-3way-comparison-job
897 (or (not (frame-live-p frame-C))
898 (eq frame-A frame-C) (eq frame-B frame-C))))
899 (setq ediff-split-window-function
900 (if (eq ediff-split-window-function 'split-window-vertically)
901 'split-window-horizontally
902 'split-window-vertically))
903 (message "Buffers being compared are in different frames"))
904 (ediff-recenter 'no-rehighlight)))
905
906 (defun ediff-toggle-hilit ()
907 "Switch between highlighting using ASCII flags and highlighting using faces.
908 On a dumb terminal, switches between ASCII highlighting and no highlighting."
909 (interactive)
910 (ediff-barf-if-not-control-buffer)
911
912 (ediff-unselect-and-select-difference
913 ediff-current-difference 'unselect-only)
914 ;; cycle through highlighting
915 (cond ((and ediff-use-faces
916 (ediff-has-face-support-p)
917 ediff-highlight-all-diffs)
918 (message "Unhighlighting unselected difference regions")
919 (setq ediff-highlight-all-diffs nil
920 ediff-highlighting-style 'face))
921 ((or (and ediff-use-faces (ediff-has-face-support-p)
922 (eq ediff-highlighting-style 'face)) ; has face support
923 (and (not (ediff-has-face-support-p)) ; no face support
924 (eq ediff-highlighting-style 'off)))
925 (message "Highlighting with ASCII flags")
926 (setq ediff-highlighting-style 'ascii
927 ediff-highlight-all-diffs nil
928 ediff-use-faces nil))
929 ((eq ediff-highlighting-style 'ascii)
930 (message "ASCII highlighting flags removed")
931 (setq ediff-highlighting-style 'off
932 ediff-highlight-all-diffs nil))
933 ((ediff-has-face-support-p) ; catch-all for cases with face support
934 (message "Re-highlighting all difference regions")
935 (setq ediff-use-faces t
936 ediff-highlighting-style 'face
937 ediff-highlight-all-diffs t)))
938
939 (if (and ediff-use-faces ediff-highlight-all-diffs)
940 (ediff-paint-background-regions)
941 (ediff-paint-background-regions 'unhighlight))
942
943 (ediff-unselect-and-select-difference
944 ediff-current-difference 'select-only))
945
946
947 (defun ediff-toggle-autorefine ()
948 "Toggle auto-refine mode."
949 (interactive)
950 (ediff-barf-if-not-control-buffer)
951 (if ediff-word-mode
952 (error "No fine differences in this mode"))
953 (cond ((eq ediff-auto-refine 'nix)
954 (setq ediff-auto-refine 'on)
955 (ediff-make-fine-diffs ediff-current-difference 'noforce)
956 (message "Auto-refining is ON"))
957 ((eq ediff-auto-refine 'on)
958 (message "Auto-refining is OFF")
959 (setq ediff-auto-refine 'off))
960 (t ;; nix 'em
961 (ediff-set-fine-diff-properties ediff-current-difference t)
962 (message "Refinements are HIDDEN")
963 (setq ediff-auto-refine 'nix))
964 ))
965
966 (defun ediff-show-ancestor ()
967 "Show the ancestor buffer in a suitable window."
968 (interactive)
969 (ediff-recenter)
970 (or (ediff-buffer-live-p ediff-ancestor-buffer)
971 (if ediff-merge-with-ancestor-job
972 (error "Lost connection to ancestor buffer...sorry")
973 (error "Not merging with ancestor")))
974 (let (wind)
975 (cond ((setq wind (ediff-get-visible-buffer-window ediff-ancestor-buffer))
976 (raise-frame (window-frame wind)))
977 (t (set-window-buffer ediff-window-C ediff-ancestor-buffer)))))
978
979 (defun ediff-make-or-kill-fine-diffs (arg)
980 "Compute fine diffs. With negative prefix arg, kill fine diffs.
981 In both cases, operates on the current difference region."
982 (interactive "P")
983 (ediff-barf-if-not-control-buffer)
984 (cond ((eq arg '-)
985 (ediff-clear-fine-differences ediff-current-difference))
986 ((and (numberp arg) (< arg 0))
987 (ediff-clear-fine-differences ediff-current-difference))
988 (t (ediff-make-fine-diffs))))
989
990
991 (defun ediff-toggle-help ()
992 "Toggle short/long help message."
993 (interactive)
994 (ediff-barf-if-not-control-buffer)
995 (let (buffer-read-only)
996 (erase-buffer)
997 (setq ediff-use-long-help-message (not ediff-use-long-help-message))
998 (ediff-set-help-message))
999 ;; remember the icon status of the control frame when the user requested
1000 ;; full control message
1001 (if (and ediff-use-long-help-message (ediff-multiframe-setup-p))
1002 (setq ediff-prefer-iconified-control-frame
1003 (ediff-frame-iconified-p ediff-control-frame)))
1004
1005 (setq ediff-window-config-saved "") ; force redisplay
1006 (ediff-recenter 'no-rehighlight))
1007
1008
1009 ;; If BUF, this is the buffer to toggle, not current buffer.
1010 (defun ediff-toggle-read-only (&optional buf)
1011 "Toggle read-only in current buffer.
1012 If buffer is under version control and locked, check it out first.
1013 If optional argument BUF is specified, toggle read-only in that buffer instead
1014 of the current buffer."
1015 (interactive)
1016 (ediff-barf-if-not-control-buffer)
1017 (let ((ctl-buf (if (null buf) (current-buffer)))
1018 (buf-type (ediff-char-to-buftype (ediff-last-command-char))))
1019 (or buf (ediff-recenter))
1020 (or buf
1021 (setq buf (ediff-get-buffer buf-type)))
1022
1023 (ediff-with-current-buffer buf ; eval in buf A/B/C
1024 (let* ((file (buffer-file-name buf))
1025 (file-writable (and file
1026 (file-exists-p file)
1027 (file-writable-p file)))
1028 (toggle-ro-cmd (cond (ediff-toggle-read-only-function)
1029 ((ediff-file-checked-out-p file)
1030 'read-only-mode)
1031 (file-writable 'read-only-mode)
1032 (t (key-binding "\C-x\C-q")))))
1033 ;; If the file is checked in, make sure we don't make buffer modifiable
1034 ;; without warning the user. The user can fool our checks by making the
1035 ;; buffer non-RO without checking the file out. We regard this as a
1036 ;; user problem.
1037 (if (and (ediff-file-checked-in-p file)
1038 ;; If ctl-buf is null, this means we called this
1039 ;; non-interactively, in which case don't ask questions
1040 ctl-buf)
1041 (cond ((not buffer-read-only)
1042 (setq toggle-ro-cmd 'read-only-mode))
1043 ((and (or (beep 1) t) ; always beep
1044 (y-or-n-p
1045 (format
1046 "File %s is under version control. Check it out? "
1047 (ediff-abbreviate-file-name file))))
1048 ;; if we checked the file out, we should also change the
1049 ;; original state of buffer-read-only to nil. If we don't
1050 ;; do this, the mode line will show %%, since the file was
1051 ;; RO before ediff started, so the user will think the file
1052 ;; is checked in.
1053 (ediff-with-current-buffer ctl-buf
1054 (ediff-change-saved-variable
1055 'buffer-read-only nil buf-type)))
1056 (t
1057 (setq toggle-ro-cmd 'read-only-mode)
1058 (beep 1) (beep 1)
1059 (message
1060 "Boy, this is risky! Don't modify this file...")
1061 (sit-for 3)))) ; let the user see the warning
1062 (if (and toggle-ro-cmd
1063 (string-match "read-only-mode" (symbol-name toggle-ro-cmd)))
1064 (save-excursion
1065 (save-window-excursion
1066 (select-window (ediff-get-visible-buffer-window buf))
1067 (command-execute toggle-ro-cmd)))
1068 (error "Don't know how to toggle read-only in buffer %S" buf))
1069
1070 ;; Check if we made the current buffer updatable, but its file is RO.
1071 ;; Signal a warning in this case.
1072 (if (and file (not buffer-read-only)
1073 (eq this-command 'ediff-toggle-read-only)
1074 (file-exists-p file)
1075 (not (file-writable-p file)))
1076 (progn
1077 (beep 1)
1078 (message "Warning: file %s is read-only"
1079 (ediff-abbreviate-file-name file))))
1080 ))))
1081
1082 ;; checkout if visited file is checked in
1083 (defun ediff-maybe-checkout (buf)
1084 (let ((file (expand-file-name (buffer-file-name buf)))
1085 (checkout-function (key-binding "\C-x\C-q")))
1086 (if (and (ediff-file-checked-in-p file)
1087 (or (beep 1) t)
1088 (y-or-n-p
1089 (format
1090 "File %s is under version control. Check it out? "
1091 (ediff-abbreviate-file-name file))))
1092 (ediff-with-current-buffer buf
1093 (command-execute checkout-function)))))
1094
1095
1096 ;; This is a simple-minded check for whether a file is under version control.
1097 ;; If file,v exists but file doesn't, this file is considered to be not checked
1098 ;; in and not checked out for the purpose of patching (since patch won't be
1099 ;; able to read such a file anyway).
1100 ;; FILE is a string representing file name
1101 ;;(defun ediff-file-under-version-control (file)
1102 ;; (let* ((filedir (file-name-directory file))
1103 ;; (file-nondir (file-name-nondirectory file))
1104 ;; (trial (concat file-nondir ",v"))
1105 ;; (full-trial (concat filedir trial))
1106 ;; (full-rcs-trial (concat filedir "RCS/" trial)))
1107 ;; (and (stringp file)
1108 ;; (file-exists-p file)
1109 ;; (or
1110 ;; (and
1111 ;; (file-exists-p full-trial)
1112 ;; ;; in FAT FS, `file,v' and `file' may turn out to be the same!
1113 ;; ;; don't be fooled by this!
1114 ;; (not (equal (file-attributes file)
1115 ;; (file-attributes full-trial))))
1116 ;; ;; check if a version is in RCS/ directory
1117 ;; (file-exists-p full-rcs-trial)))
1118 ;; ))
1119
1120
1121 (defun ediff-file-checked-out-p (file)
1122 (or (not (featurep 'vc-hooks))
1123 (and (vc-backend file)
1124 (if (fboundp 'vc-state)
1125 (or (memq (vc-state file) '(edited needs-merge))
1126 (stringp (vc-state file)))
1127 ;; XEmacs has no vc-state
1128 (when (featurep 'xemacs) (vc-locking-user file)))
1129 )))
1130
1131 (defun ediff-file-checked-in-p (file)
1132 (and (featurep 'vc-hooks)
1133 ;; Only RCS and SCCS files are considered checked in
1134 (memq (vc-backend file) '(RCS SCCS))
1135 (if (fboundp 'vc-state)
1136 (and
1137 (not (memq (vc-state file) '(edited needs-merge)))
1138 (not (stringp (vc-state file))))
1139 ;; XEmacs has no vc-state
1140 (when (featurep 'xemacs) (not (vc-locking-user file))))
1141 ))
1142
1143 (defun ediff-file-compressed-p (file)
1144 (require 'jka-compr)
1145 (string-match (jka-compr-build-file-regexp) file))
1146
1147
1148 (defun ediff-swap-buffers ()
1149 "Rotate the display of buffers A, B, and C."
1150 (interactive)
1151 (ediff-barf-if-not-control-buffer)
1152 (if (and (window-live-p ediff-window-A) (window-live-p ediff-window-B))
1153 (let ((buf ediff-buffer-A)
1154 (values ediff-buffer-values-orig-A)
1155 (diff-vec ediff-difference-vector-A)
1156 (hide-regexp ediff-regexp-hide-A)
1157 (focus-regexp ediff-regexp-focus-A)
1158 (wide-visibility-p (eq ediff-visible-bounds ediff-wide-bounds))
1159 (overlay (if (ediff-has-face-support-p)
1160 ediff-current-diff-overlay-A)))
1161 (if ediff-3way-comparison-job
1162 (progn
1163 (set-window-buffer ediff-window-A ediff-buffer-C)
1164 (set-window-buffer ediff-window-B ediff-buffer-A)
1165 (set-window-buffer ediff-window-C ediff-buffer-B)
1166 )
1167 (set-window-buffer ediff-window-A ediff-buffer-B)
1168 (set-window-buffer ediff-window-B ediff-buffer-A))
1169 ;; swap diff buffers
1170 (if ediff-3way-comparison-job
1171 (setq ediff-buffer-A ediff-buffer-C
1172 ediff-buffer-C ediff-buffer-B
1173 ediff-buffer-B buf)
1174 (setq ediff-buffer-A ediff-buffer-B
1175 ediff-buffer-B buf))
1176
1177 ;; swap saved buffer characteristics
1178 (if ediff-3way-comparison-job
1179 (setq ediff-buffer-values-orig-A ediff-buffer-values-orig-C
1180 ediff-buffer-values-orig-C ediff-buffer-values-orig-B
1181 ediff-buffer-values-orig-B values)
1182 (setq ediff-buffer-values-orig-A ediff-buffer-values-orig-B
1183 ediff-buffer-values-orig-B values))
1184
1185 ;; swap diff vectors
1186 (if ediff-3way-comparison-job
1187 (setq ediff-difference-vector-A ediff-difference-vector-C
1188 ediff-difference-vector-C ediff-difference-vector-B
1189 ediff-difference-vector-B diff-vec)
1190 (setq ediff-difference-vector-A ediff-difference-vector-B
1191 ediff-difference-vector-B diff-vec))
1192
1193 ;; swap hide/focus regexp
1194 (if ediff-3way-comparison-job
1195 (setq ediff-regexp-hide-A ediff-regexp-hide-C
1196 ediff-regexp-hide-C ediff-regexp-hide-B
1197 ediff-regexp-hide-B hide-regexp
1198 ediff-regexp-focus-A ediff-regexp-focus-C
1199 ediff-regexp-focus-C ediff-regexp-focus-B
1200 ediff-regexp-focus-B focus-regexp)
1201 (setq ediff-regexp-hide-A ediff-regexp-hide-B
1202 ediff-regexp-hide-B hide-regexp
1203 ediff-regexp-focus-A ediff-regexp-focus-B
1204 ediff-regexp-focus-B focus-regexp))
1205
1206 ;; The following is needed for XEmacs, since there one can't move
1207 ;; overlay to another buffer. In Emacs, this swap is redundant.
1208 (if (ediff-has-face-support-p)
1209 (if ediff-3way-comparison-job
1210 (setq ediff-current-diff-overlay-A ediff-current-diff-overlay-C
1211 ediff-current-diff-overlay-C ediff-current-diff-overlay-B
1212 ediff-current-diff-overlay-B overlay)
1213 (setq ediff-current-diff-overlay-A ediff-current-diff-overlay-B
1214 ediff-current-diff-overlay-B overlay)))
1215
1216 ;; swap wide bounds
1217 (setq ediff-wide-bounds
1218 (cond (ediff-3way-comparison-job
1219 (list (nth 2 ediff-wide-bounds)
1220 (nth 0 ediff-wide-bounds)
1221 (nth 1 ediff-wide-bounds)))
1222 (ediff-3way-job
1223 (list (nth 1 ediff-wide-bounds)
1224 (nth 0 ediff-wide-bounds)
1225 (nth 2 ediff-wide-bounds)))
1226 (t
1227 (list (nth 1 ediff-wide-bounds)
1228 (nth 0 ediff-wide-bounds)))))
1229 ;; swap narrow bounds
1230 (setq ediff-narrow-bounds
1231 (cond (ediff-3way-comparison-job
1232 (list (nth 2 ediff-narrow-bounds)
1233 (nth 0 ediff-narrow-bounds)
1234 (nth 1 ediff-narrow-bounds)))
1235 (ediff-3way-job
1236 (list (nth 1 ediff-narrow-bounds)
1237 (nth 0 ediff-narrow-bounds)
1238 (nth 2 ediff-narrow-bounds)))
1239 (t
1240 (list (nth 1 ediff-narrow-bounds)
1241 (nth 0 ediff-narrow-bounds)))))
1242 (if wide-visibility-p
1243 (setq ediff-visible-bounds ediff-wide-bounds)
1244 (setq ediff-visible-bounds ediff-narrow-bounds))
1245 ))
1246 (if ediff-3way-job
1247 (ediff-set-state-of-all-diffs-in-all-buffers ediff-control-buffer))
1248 (ediff-recenter 'no-rehighlight)
1249 )
1250
1251
1252 (defun ediff-toggle-wide-display ()
1253 "Toggle wide/regular display.
1254 This is especially useful when comparing buffers side-by-side."
1255 (interactive)
1256 (ediff-barf-if-not-control-buffer)
1257 (or (ediff-window-display-p)
1258 (error "%sEmacs is not running as a window application"
1259 (if (featurep 'emacs) "" "X")))
1260 (ediff-recenter 'no-rehighlight) ; make sure buffs are displayed in windows
1261 (let ((ctl-buf ediff-control-buffer))
1262 (setq ediff-wide-display-p (not ediff-wide-display-p))
1263 (if (not ediff-wide-display-p)
1264 (ediff-with-current-buffer ctl-buf
1265 (modify-frame-parameters
1266 ediff-wide-display-frame ediff-wide-display-orig-parameters)
1267 ;;(sit-for (if (featurep 'xemacs) 0.4 0))
1268 ;; restore control buf, since ctl window may have been deleted
1269 ;; during resizing
1270 (set-buffer ctl-buf)
1271 (setq ediff-wide-display-orig-parameters nil
1272 ediff-window-B nil) ; force update of window config
1273 (ediff-recenter 'no-rehighlight))
1274 (funcall ediff-make-wide-display-function)
1275 ;;(sit-for (if (featurep 'xemacs) 0.4 0))
1276 (ediff-with-current-buffer ctl-buf
1277 (setq ediff-window-B nil) ; force update of window config
1278 (ediff-recenter 'no-rehighlight)))))
1279
1280 ;;;###autoload
1281 (defun ediff-toggle-multiframe ()
1282 "Switch from multiframe display to single-frame display and back.
1283 To change the default, set the variable `ediff-window-setup-function',
1284 which see."
1285 (interactive)
1286 (let (window-setup-func)
1287 (or (ediff-window-display-p)
1288 (error "%sEmacs is not running as a window application"
1289 (if (featurep 'emacs) "" "X")))
1290
1291 (cond ((eq ediff-window-setup-function 'ediff-setup-windows-multiframe)
1292 (setq ediff-multiframe nil)
1293 (setq window-setup-func 'ediff-setup-windows-plain)
1294 (message "ediff is now in 'plain' mode"))
1295 ((eq ediff-window-setup-function 'ediff-setup-windows-plain)
1296 (if (ediff-in-control-buffer-p)
1297 (ediff-kill-bottom-toolbar))
1298 (if (and (ediff-buffer-live-p ediff-control-buffer)
1299 (window-live-p ediff-control-window))
1300 (set-window-dedicated-p ediff-control-window nil))
1301 (setq ediff-multiframe t)
1302 (setq window-setup-func 'ediff-setup-windows-multiframe)
1303 (message "ediff is now in 'multiframe' mode"))
1304 (t
1305 (if (and (ediff-buffer-live-p ediff-control-buffer)
1306 (window-live-p ediff-control-window))
1307 (set-window-dedicated-p ediff-control-window nil))
1308 (setq ediff-multiframe t)
1309 (setq window-setup-func 'ediff-setup-windows-multiframe))
1310 (message "ediff is now in 'multiframe' mode"))
1311
1312 ;; change default
1313 (setq-default ediff-window-setup-function window-setup-func)
1314 ;; change in all active ediff sessions
1315 (mapc (lambda(buf) (ediff-with-current-buffer buf
1316 (setq ediff-window-setup-function window-setup-func
1317 ediff-window-B nil)))
1318 ediff-session-registry)
1319 (if (ediff-in-control-buffer-p)
1320 (progn
1321 (set-window-dedicated-p (selected-window) nil)
1322 (ediff-recenter 'no-rehighlight)))))
1323
1324
1325 ;;;###autoload
1326 (defun ediff-toggle-use-toolbar ()
1327 "Enable or disable Ediff toolbar.
1328 Works only in versions of Emacs that support toolbars.
1329 To change the default, set the variable `ediff-use-toolbar-p', which see."
1330 (interactive)
1331 (if (featurep 'ediff-tbar)
1332 (progn
1333 (or (ediff-window-display-p)
1334 (error "%sEmacs is not running as a window application"
1335 (if (featurep 'emacs) "" "X")))
1336 (if (ediff-use-toolbar-p)
1337 (ediff-kill-bottom-toolbar))
1338 ;; do this only after killing the toolbar
1339 (setq ediff-use-toolbar-p (not ediff-use-toolbar-p))
1340
1341 (mapc (lambda(buf)
1342 (ediff-with-current-buffer buf
1343 ;; force redisplay
1344 (setq ediff-window-config-saved "")
1345 ))
1346 ediff-session-registry)
1347 (if (ediff-in-control-buffer-p)
1348 (ediff-recenter 'no-rehighlight)))))
1349
1350
1351 ;; if was using toolbar, kill it
1352 (defun ediff-kill-bottom-toolbar ()
1353 ;; Using ctl-buffer or ediff-control-window for LOCALE does not
1354 ;; work properly in XEmacs 19.14: we have to use
1355 ;;(selected-frame).
1356 ;; The problem with this is that any previous bottom-toolbar
1357 ;; will not re-appear after our cleanup here. Is there a way
1358 ;; to do "push" and "pop" toolbars ? --marcpa
1359 (if (featurep 'xemacs)
1360 (when (ediff-use-toolbar-p)
1361 (set-specifier bottom-toolbar (list (selected-frame) nil))
1362 (set-specifier bottom-toolbar-visible-p (list (selected-frame) nil)))))
1363
1364 ;; If wants to use toolbar, make it.
1365 ;; If not, zero the toolbar for XEmacs.
1366 ;; Do nothing for Emacs.
1367 (defun ediff-make-bottom-toolbar (&optional frame)
1368 (when (ediff-window-display-p)
1369 (setq frame (or frame (selected-frame)))
1370 (if (featurep 'xemacs)
1371 (cond ((ediff-use-toolbar-p) ; this checks for XEmacs
1372 (set-specifier
1373 bottom-toolbar
1374 (list frame (if (ediff-3way-comparison-job)
1375 ediff-toolbar-3way ediff-toolbar)))
1376 (set-specifier bottom-toolbar-visible-p (list frame t))
1377 (set-specifier bottom-toolbar-height
1378 (list frame ediff-toolbar-height)))
1379 ((ediff-has-toolbar-support-p)
1380 (set-specifier bottom-toolbar-height (list frame 0)))))))
1381
1382 ;; Merging
1383
1384 (defun ediff-toggle-show-clashes-only ()
1385 "Toggle the mode that shows only the merge regions where both variants differ from the ancestor."
1386 (interactive)
1387 (ediff-barf-if-not-control-buffer)
1388 (if (not ediff-merge-with-ancestor-job)
1389 (error "This command makes sense only when merging with an ancestor"))
1390 (setq ediff-show-clashes-only (not ediff-show-clashes-only))
1391 (if ediff-show-clashes-only
1392 (message "Focus on regions where both buffers differ from the ancestor")
1393 (message "Canceling focus on regions where changes clash")))
1394
1395 (defun ediff-toggle-skip-changed-regions ()
1396 "Toggle the mode that skips the merge regions that differ from the default."
1397 (interactive)
1398 (ediff-barf-if-not-control-buffer)
1399 (setq ediff-skip-merge-regions-that-differ-from-default
1400 (not ediff-skip-merge-regions-that-differ-from-default))
1401 (if ediff-skip-merge-regions-that-differ-from-default
1402 (message "Skipping regions that differ from default setting")
1403 (message "Showing regions that differ from default setting")))
1404
1405
1406
1407 ;; Widening/narrowing
1408
1409 (defun ediff-toggle-narrow-region ()
1410 "Toggle narrowing in buffers A, B, and C.
1411 Used in ediff-windows/regions only."
1412 (interactive)
1413 (if (eq ediff-buffer-A ediff-buffer-B)
1414 (error ediff-NO-DIFFERENCES))
1415 (if (eq ediff-visible-bounds ediff-wide-bounds)
1416 (setq ediff-visible-bounds ediff-narrow-bounds)
1417 (setq ediff-visible-bounds ediff-wide-bounds))
1418 (ediff-recenter 'no-rehighlight))
1419
1420 ;; Narrow bufs A/B/C to ediff-visible-bounds. If this is currently set to
1421 ;; ediff-wide-bounds, then this actually widens.
1422 ;; This function does nothing if job-name is not
1423 ;; ediff-regions-wordwise/linewise or ediff-windows-wordwise/linewise.
1424 ;; Does nothing if buffer-A = buffer-B since we can't narrow
1425 ;; to two different regions in one buffer.
1426 (defun ediff-visible-region ()
1427 (if (or (eq ediff-buffer-A ediff-buffer-B)
1428 (eq ediff-buffer-A ediff-buffer-C)
1429 (eq ediff-buffer-C ediff-buffer-B))
1430 ()
1431 ;; If ediff-*-regions/windows, ediff-visible-bounds is already set
1432 ;; Otherwise, always use full range.
1433 (if (not ediff-narrow-job)
1434 (setq ediff-visible-bounds ediff-wide-bounds))
1435 (let ((overl-A (ediff-get-value-according-to-buffer-type
1436 'A ediff-visible-bounds))
1437 (overl-B (ediff-get-value-according-to-buffer-type
1438 'B ediff-visible-bounds))
1439 (overl-C (ediff-get-value-according-to-buffer-type
1440 'C ediff-visible-bounds))
1441 )
1442 (ediff-with-current-buffer ediff-buffer-A
1443 (if (ediff-overlay-buffer overl-A)
1444 (narrow-to-region
1445 (ediff-overlay-start overl-A) (ediff-overlay-end overl-A))))
1446 (ediff-with-current-buffer ediff-buffer-B
1447 (if (ediff-overlay-buffer overl-B)
1448 (narrow-to-region
1449 (ediff-overlay-start overl-B) (ediff-overlay-end overl-B))))
1450
1451 (if (and ediff-3way-job (ediff-overlay-buffer overl-C))
1452 (ediff-with-current-buffer ediff-buffer-C
1453 (narrow-to-region
1454 (ediff-overlay-start overl-C) (ediff-overlay-end overl-C))))
1455 )))
1456
1457
1458 ;; Window scrolling operations
1459
1460 ;; Performs some operation on the two file windows (if they are showing).
1461 ;; Traps all errors on the operation in windows A/B/C.
1462 ;; Usually, errors come from scrolling off the
1463 ;; beginning or end of the buffer, and this gives error messages.
1464 (defun ediff-operate-on-windows (operation arg)
1465
1466 ;; make sure windows aren't dead
1467 (if (not (and (window-live-p ediff-window-A) (window-live-p ediff-window-B)))
1468 (ediff-recenter 'no-rehighlight))
1469 (if (not (and (ediff-buffer-live-p ediff-buffer-A)
1470 (ediff-buffer-live-p ediff-buffer-B)
1471 (or (not ediff-3way-job) ediff-buffer-C)
1472 ))
1473 (error ediff-KILLED-VITAL-BUFFER))
1474
1475 (let* ((wind (selected-window))
1476 (wind-A ediff-window-A)
1477 (wind-B ediff-window-B)
1478 (wind-C ediff-window-C)
1479 (coefA (ediff-get-region-size-coefficient 'A operation))
1480 (coefB (ediff-get-region-size-coefficient 'B operation))
1481 (three-way ediff-3way-job)
1482 (coefC (if three-way
1483 (ediff-get-region-size-coefficient 'C operation))))
1484
1485 (select-window wind-A)
1486 (condition-case nil
1487 (funcall operation (round (* coefA arg)))
1488 (error))
1489 (select-window wind-B)
1490 (condition-case nil
1491 (funcall operation (round (* coefB arg)))
1492 (error))
1493 (if three-way
1494 (progn
1495 (select-window wind-C)
1496 (condition-case nil
1497 (funcall operation (round (* coefC arg)))
1498 (error))))
1499 (select-window wind)))
1500
1501 (defun ediff-scroll-vertically (&optional arg)
1502 "Vertically scroll buffers A, B (and C if appropriate).
1503 With optional argument ARG, scroll ARG lines; otherwise scroll by nearly
1504 the one half of the height of window-A."
1505 (interactive "P")
1506 (ediff-barf-if-not-control-buffer)
1507
1508 ;; make sure windows aren't dead
1509 (if (not (and (window-live-p ediff-window-A) (window-live-p ediff-window-B)))
1510 (ediff-recenter 'no-rehighlight))
1511 (if (not (and (ediff-buffer-live-p ediff-buffer-A)
1512 (ediff-buffer-live-p ediff-buffer-B)
1513 (or (not ediff-3way-job)
1514 (ediff-buffer-live-p ediff-buffer-C))
1515 ))
1516 (error ediff-KILLED-VITAL-BUFFER))
1517
1518 (ediff-operate-on-windows
1519 (if (memq (ediff-last-command-char) '(?v ?\C-v))
1520 'scroll-up
1521 'scroll-down)
1522 ;; calculate argument to scroll-up/down
1523 ;; if there is an explicit argument
1524 (if (and arg (not (equal arg '-)))
1525 ;; use it
1526 (prefix-numeric-value arg)
1527 ;; if not, see if we can determine a default amount (the window height)
1528 (let (default-amount)
1529 (setq default-amount
1530 (- (/ (min (window-height ediff-window-A)
1531 (window-height ediff-window-B)
1532 (if ediff-3way-job
1533 (window-height ediff-window-C)
1534 500)) ; some large number
1535 2)
1536 1 next-screen-context-lines))
1537 ;; window found
1538 (if arg
1539 ;; C-u as argument means half of default amount
1540 (/ default-amount 2)
1541 ;; no argument means default amount
1542 default-amount)))))
1543
1544
1545 (defun ediff-scroll-horizontally (&optional arg)
1546 "Horizontally scroll buffers A, B (and C if appropriate).
1547 If an argument is given, that is how many columns are scrolled, else nearly
1548 the width of the A/B/C windows."
1549 (interactive "P")
1550 (ediff-barf-if-not-control-buffer)
1551
1552 ;; make sure windows aren't dead
1553 (if (not (and (window-live-p ediff-window-A) (window-live-p ediff-window-B)))
1554 (ediff-recenter 'no-rehighlight))
1555 (if (not (and (ediff-buffer-live-p ediff-buffer-A)
1556 (ediff-buffer-live-p ediff-buffer-B)
1557 (or (not ediff-3way-job)
1558 (ediff-buffer-live-p ediff-buffer-C))
1559 ))
1560 (error ediff-KILLED-VITAL-BUFFER))
1561
1562 (ediff-operate-on-windows
1563 ;; Arrange for scroll-left and scroll-right being called
1564 ;; interactively so that they set the window's min_hscroll.
1565 ;; Otherwise, automatic hscrolling will undo the effect of
1566 ;; hscrolling.
1567 (if (= (ediff-last-command-char) ?<)
1568 (lambda (arg)
1569 (let ((prefix-arg arg))
1570 (call-interactively 'scroll-left)))
1571 (lambda (arg)
1572 (let ((prefix-arg arg))
1573 (call-interactively 'scroll-right))))
1574 ;; calculate argument to scroll-left/right
1575 ;; if there is an explicit argument
1576 (if (and arg (not (equal arg '-)))
1577 ;; use it
1578 (prefix-numeric-value arg)
1579 ;; if not, see if we can determine a default amount
1580 ;; (half the window width)
1581 (if (null ediff-control-window)
1582 ;; no control window, use nil
1583 nil
1584 (let ((default-amount
1585 (- (/ (min (window-width ediff-window-A)
1586 (window-width ediff-window-B)
1587 (if ediff-3way-comparison-job
1588 (window-width ediff-window-C)
1589 500) ; some large number
1590 )
1591 2)
1592 3)))
1593 ;; window found
1594 (if arg
1595 ;; C-u as argument means half of default amount
1596 (/ default-amount 2)
1597 ;; no argument means default amount
1598 default-amount))))))
1599
1600
1601 ;;BEG, END show the region to be positioned.
1602 ;;JOB-NAME holds ediff-job-name. The ediff-windows job positions regions
1603 ;;differently.
1604 (defun ediff-position-region (beg end pos _job-name)
1605 (if (> end (point-max))
1606 (setq end (point-max)))
1607 (if ediff-windows-job
1608 (if (pos-visible-in-window-p end)
1609 () ; do nothing, wind is already positioned
1610 ;; at this point, windows are positioned at the beginning of the
1611 ;; file regions (not diff-regions) being compared.
1612 (save-excursion
1613 (move-to-window-line (- (window-height) 2))
1614 (let ((amount (+ 2 (count-lines (point) end))))
1615 (scroll-up amount))))
1616 (set-window-start (selected-window) beg)
1617 (if (pos-visible-in-window-p end)
1618 ;; Determine the number of lines that the region occupies
1619 (let ((lines 0)
1620 (prev-point 0))
1621 (while ( and (> end (progn
1622 (move-to-window-line lines)
1623 (point)))
1624 ;; `end' may be beyond the window bottom, so check
1625 ;; that we are making progress
1626 (< prev-point (point)))
1627 (setq prev-point (point))
1628 (setq lines (1+ lines)))
1629 ;; And position the beginning on the right line
1630 (goto-char beg)
1631 (recenter (/ (1+ (max (- (1- (window-height))
1632 lines)
1633 1)
1634 )
1635 2))))
1636 (goto-char pos)
1637 ))
1638
1639 ;; get number of lines from window start to region end
1640 (defun ediff-get-lines-to-region-end (buf-type &optional n ctl-buf)
1641 (or n (setq n ediff-current-difference))
1642 (or ctl-buf (setq ctl-buf ediff-control-buffer))
1643 (ediff-with-current-buffer ctl-buf
1644 (let* ((buf (ediff-get-buffer buf-type))
1645 (wind (symbol-value (ediff-get-symbol-from-alist
1646 buf-type ediff-window-alist)))
1647 (beg (window-start wind))
1648 (end (ediff-get-diff-posn buf-type 'end))
1649 lines)
1650 (ediff-with-current-buffer buf
1651 (if (< beg end)
1652 (setq lines (count-lines beg end))
1653 (setq lines 0))
1654 lines
1655 ))))
1656
1657 ;; Calculate the number of lines from window end to the start of diff region
1658 (defun ediff-get-lines-to-region-start (buf-type &optional diff-num ctl-buf)
1659 (or diff-num (setq diff-num ediff-current-difference))
1660 (or ctl-buf (setq ctl-buf ediff-control-buffer))
1661 (ediff-with-current-buffer ctl-buf
1662 (let* ((buf (ediff-get-buffer buf-type))
1663 (wind (symbol-value (ediff-get-symbol-from-alist
1664 buf-type ediff-window-alist)))
1665 (end (or (window-end wind) (window-end wind t)))
1666 (beg (ediff-get-diff-posn buf-type 'beg diff-num)))
1667 (ediff-with-current-buffer buf
1668 (if (< beg end)
1669 (count-lines (max beg (point-min)) (min end (point-max))) 0))
1670 )))
1671
1672
1673 ;; region size coefficient is a coefficient by which to adjust scrolling
1674 ;; up/down of the window displaying buffer of type BUFTYPE.
1675 ;; The purpose of this coefficient is to make the windows scroll in sync, so
1676 ;; that it won't happen that one diff region is scrolled off while the other is
1677 ;; still seen.
1678 ;;
1679 ;; If the difference region is invalid, the coefficient is 1
1680 (defun ediff-get-region-size-coefficient (buf-type op &optional n ctl-buf)
1681 (ediff-with-current-buffer (or ctl-buf ediff-control-buffer)
1682 (if (ediff-valid-difference-p n)
1683 (let* ((func (cond ((eq op 'scroll-down)
1684 'ediff-get-lines-to-region-start)
1685 ((eq op 'scroll-up)
1686 'ediff-get-lines-to-region-end)
1687 (t (lambda (_a _b _c) 0))))
1688 (max-lines (max (funcall func 'A n ctl-buf)
1689 (funcall func 'B n ctl-buf)
1690 (if (ediff-buffer-live-p ediff-buffer-C)
1691 (funcall func 'C n ctl-buf)
1692 0))))
1693 ;; this covers the horizontal coefficient as well:
1694 ;; if max-lines = 0 then coef = 1
1695 (if (> max-lines 0)
1696 (/ (+ (funcall func buf-type n ctl-buf) 0.0)
1697 (+ max-lines 0.0))
1698 1))
1699 1)))
1700
1701
1702 (defun ediff-next-difference (&optional arg)
1703 "Advance to the next difference.
1704 With a prefix argument, go forward that many differences."
1705 (interactive "p")
1706 (ediff-barf-if-not-control-buffer)
1707 (if (< ediff-current-difference ediff-number-of-differences)
1708 (let ((n (min ediff-number-of-differences
1709 (+ ediff-current-difference (or arg 1))))
1710 non-clash-skip skip-changed regexp-skip)
1711
1712 (ediff-visible-region)
1713 (or (>= n ediff-number-of-differences)
1714 (setq regexp-skip (funcall ediff-skip-diff-region-function n))
1715 ;; this won't exec if regexp-skip is t
1716 (setq non-clash-skip (ediff-merge-region-is-non-clash-to-skip n)
1717 skip-changed
1718 (ediff-skip-merge-region-if-changed-from-default-p n))
1719 (ediff-install-fine-diff-if-necessary n))
1720 ;; Skip loop
1721 (while (and (< n ediff-number-of-differences)
1722 (or
1723 ;; regexp skip
1724 regexp-skip
1725 ;; skip clashes, if necessary
1726 non-clash-skip
1727 ;; skip processed regions
1728 skip-changed
1729 ;; skip difference regions that differ in white space
1730 (and ediff-ignore-similar-regions
1731 (ediff-merge-region-is-non-clash n)
1732 (or (eq (ediff-no-fine-diffs-p n) t)
1733 (and (ediff-merge-job)
1734 (eq (ediff-no-fine-diffs-p n) 'C)))
1735 )))
1736 (setq n (1+ n))
1737 (if (= 0 (mod n 20))
1738 (message "Skipped over region %d and counting ..." n))
1739 (or (>= n ediff-number-of-differences)
1740 (setq regexp-skip (funcall ediff-skip-diff-region-function n))
1741 ;; this won't exec if regexp-skip is t
1742 (setq non-clash-skip (ediff-merge-region-is-non-clash-to-skip n)
1743 skip-changed
1744 (ediff-skip-merge-region-if-changed-from-default-p n))
1745 (ediff-install-fine-diff-if-necessary n))
1746 )
1747 (message "")
1748 (ediff-unselect-and-select-difference n)
1749 ) ; let
1750 (ediff-visible-region)
1751 (error "At end of the difference list")))
1752
1753 (defun ediff-previous-difference (&optional arg)
1754 "Go to the previous difference.
1755 With a prefix argument, go back that many differences."
1756 (interactive "p")
1757 (ediff-barf-if-not-control-buffer)
1758 (if (> ediff-current-difference -1)
1759 (let ((n (max -1 (- ediff-current-difference (or arg 1))))
1760 non-clash-skip skip-changed regexp-skip)
1761
1762 (ediff-visible-region)
1763 (or (< n 0)
1764 (setq regexp-skip (funcall ediff-skip-diff-region-function n))
1765 ;; this won't exec if regexp-skip is t
1766 (setq non-clash-skip (ediff-merge-region-is-non-clash-to-skip n)
1767 skip-changed
1768 (ediff-skip-merge-region-if-changed-from-default-p n))
1769 (ediff-install-fine-diff-if-necessary n))
1770 (while (and (> n -1)
1771 (or
1772 ;; regexp skip
1773 regexp-skip
1774 ;; skip clashes, if necessary
1775 non-clash-skip
1776 ;; skipp changed regions
1777 skip-changed
1778 ;; skip difference regions that differ in white space
1779 (and ediff-ignore-similar-regions
1780 (ediff-merge-region-is-non-clash n)
1781 (or (eq (ediff-no-fine-diffs-p n) t)
1782 (and (ediff-merge-job)
1783 (eq (ediff-no-fine-diffs-p n) 'C)))
1784 )))
1785 (if (= 0 (mod (1+ n) 20))
1786 (message "Skipped over region %d and counting ..." (1+ n)))
1787 (setq n (1- n))
1788 (or (< n 0)
1789 (setq regexp-skip (funcall ediff-skip-diff-region-function n))
1790 ;; this won't exec if regexp-skip is t
1791 (setq non-clash-skip (ediff-merge-region-is-non-clash-to-skip n)
1792 skip-changed
1793 (ediff-skip-merge-region-if-changed-from-default-p n))
1794 (ediff-install-fine-diff-if-necessary n))
1795 )
1796 (message "")
1797 (ediff-unselect-and-select-difference n)
1798 ) ; let
1799 (ediff-visible-region)
1800 (error "At beginning of the difference list")))
1801
1802 ;; The diff number is as perceived by the user (i.e., 1+ the internal
1803 ;; representation)
1804 (defun ediff-jump-to-difference (difference-number)
1805 "Go to the difference specified as a prefix argument.
1806 If the prefix is negative, count differences from the end."
1807 (interactive "p")
1808 (ediff-barf-if-not-control-buffer)
1809 (setq difference-number
1810 (cond ((< difference-number 0)
1811 (+ ediff-number-of-differences difference-number))
1812 ((> difference-number 0) (1- difference-number))
1813 (t -1)))
1814 ;; -1 is allowed by ediff-unselect-and-select-difference --- it is the
1815 ;; position before the first one.
1816 (if (and (>= difference-number -1)
1817 (<= difference-number ediff-number-of-differences))
1818 (ediff-unselect-and-select-difference difference-number)
1819 (error ediff-BAD-DIFF-NUMBER
1820 this-command (1+ difference-number) ediff-number-of-differences)))
1821
1822 (defun ediff-jump-to-difference-at-point (arg)
1823 "Go to difference closest to the point in buffer A, B, or C.
1824 The buffer depends on last command character \(a, b, or c) that invoked this
1825 command. For instance, if the command was `ga' then the point value in buffer
1826 A is used.
1827 With a prefix argument, synchronize all files around the current point position
1828 in the specified buffer."
1829 (interactive "P")
1830 (ediff-barf-if-not-control-buffer)
1831 (let* ((buf-type (ediff-char-to-buftype (ediff-last-command-char)))
1832 (buffer (ediff-get-buffer buf-type))
1833 (pt (ediff-with-current-buffer buffer (point)))
1834 (diff-no (ediff-diff-at-point buf-type nil (if arg 'after)))
1835 (past-last-diff (< ediff-number-of-differences diff-no))
1836 (beg (if past-last-diff
1837 (ediff-with-current-buffer buffer (point-max))
1838 (ediff-get-diff-posn buf-type 'beg (1- diff-no))))
1839 ctl-wind wind-A wind-B wind-C
1840 shift)
1841 (if past-last-diff
1842 (ediff-jump-to-difference -1)
1843 (ediff-jump-to-difference diff-no))
1844 (setq ctl-wind (selected-window)
1845 wind-A ediff-window-A
1846 wind-B ediff-window-B
1847 wind-C ediff-window-C)
1848 (if arg
1849 (progn
1850 (ediff-with-current-buffer buffer
1851 (setq shift (- beg pt)))
1852 (select-window wind-A)
1853 (if past-last-diff (goto-char (point-max)))
1854 (condition-case nil
1855 (backward-char shift) ; noerror, if beginning of buffer
1856 (error))
1857 (recenter)
1858 (select-window wind-B)
1859 (if past-last-diff (goto-char (point-max)))
1860 (condition-case nil
1861 (backward-char shift) ; noerror, if beginning of buffer
1862 (error))
1863 (recenter)
1864 (if (window-live-p wind-C)
1865 (progn
1866 (select-window wind-C)
1867 (if past-last-diff (goto-char (point-max)))
1868 (condition-case nil
1869 (backward-char shift) ; noerror, if beginning of buffer
1870 (error))
1871 (recenter)
1872 ))
1873 (select-window ctl-wind)
1874 ))
1875 ))
1876
1877
1878 ;; find region most related to the current point position (or POS, if given)
1879 ;; returns diff number as seen by the user (i.e., 1+ the internal
1880 ;; representation)
1881 ;; The optional argument WHICH-DIFF can be `after' or `before'. If `after',
1882 ;; find the diff after the point. If `before', find the diff before the
1883 ;; point. If the point is inside a diff, return that diff.
1884 (defun ediff-diff-at-point (buf-type &optional pos which-diff)
1885 (let ((buffer (ediff-get-buffer buf-type))
1886 (ctl-buffer ediff-control-buffer)
1887 (max-dif-num (1- ediff-number-of-differences))
1888 (diff-no -1)
1889 (prev-beg 0)
1890 (prev-end 0)
1891 (beg 0)
1892 (end 0))
1893
1894 (ediff-with-current-buffer buffer
1895 (setq pos (or pos (point)))
1896 (while (and (or (< pos prev-beg) (> pos beg))
1897 (< diff-no max-dif-num))
1898 (setq diff-no (1+ diff-no))
1899 (setq prev-beg beg
1900 prev-end end)
1901 (setq beg (ediff-get-diff-posn buf-type 'beg diff-no ctl-buffer)
1902 end (ediff-get-diff-posn buf-type 'end diff-no ctl-buffer))
1903 )
1904
1905 ;; boost diff-no by 1, if past the last diff region
1906 (if (and (memq which-diff '(after before))
1907 (> pos beg) (= diff-no max-dif-num))
1908 (setq diff-no (1+ diff-no)))
1909
1910 (cond ((eq which-diff 'after) (1+ diff-no))
1911 ((eq which-diff 'before) diff-no)
1912 ((< (abs (count-lines pos (max (point-min) prev-end)))
1913 (abs (count-lines pos (max (point-min) beg))))
1914 diff-no) ; choose prev difference
1915 (t
1916 (1+ diff-no))) ; choose next difference
1917 )))
1918
1919 \f
1920 ;;; Copying diffs.
1921
1922 (defun ediff-diff-to-diff (arg &optional keys)
1923 "Copy buffer-X'th difference region to buffer Y (X,Y are A, B, or C).
1924 If numerical prefix argument, copy the difference specified in the arg.
1925 Otherwise, copy the difference given by `ediff-current-difference'.
1926 This command assumes it is bound to a 2-character key sequence, `ab', `ba',
1927 `ac', etc., which is used to determine the types of buffers to be used for
1928 copying difference regions. The first character in the sequence specifies
1929 the source buffer and the second specifies the target.
1930
1931 If the second optional argument, a 2-character string, is given, use it to
1932 determine the source and the target buffers instead of the command keys."
1933 (interactive "P")
1934 (ediff-barf-if-not-control-buffer)
1935 (or keys (setq keys (this-command-keys)))
1936 (if (eq arg '-) (setq arg -1)) ; translate neg arg to -1
1937 (if (numberp arg) (ediff-jump-to-difference arg))
1938
1939 (let* ((key1 (aref keys 0))
1940 (key2 (aref keys 1))
1941 (char1 (ediff-event-key key1))
1942 (char2 (ediff-event-key key2))
1943 ediff-verbose-p)
1944 (ediff-copy-diff ediff-current-difference
1945 (ediff-char-to-buftype char1)
1946 (ediff-char-to-buftype char2))
1947 ;; recenter with rehighlighting, but no messages
1948 (ediff-recenter)))
1949
1950 (defun ediff-copy-A-to-B (arg)
1951 "Copy ARGth difference region from buffer A to B.
1952 ARG is a prefix argument. If nil, copy the current difference region."
1953 (interactive "P")
1954 (ediff-diff-to-diff arg "ab"))
1955
1956 (defun ediff-copy-B-to-A (arg)
1957 "Copy ARGth difference region from buffer B to A.
1958 ARG is a prefix argument. If nil, copy the current difference region."
1959 (interactive "P")
1960 (ediff-diff-to-diff arg "ba"))
1961
1962 (defun ediff-copy-A-to-C (arg)
1963 "Copy ARGth difference region from buffer A to buffer C.
1964 ARG is a prefix argument. If nil, copy the current difference region."
1965 (interactive "P")
1966 (ediff-diff-to-diff arg "ac"))
1967
1968 (defun ediff-copy-B-to-C (arg)
1969 "Copy ARGth difference region from buffer B to buffer C.
1970 ARG is a prefix argument. If nil, copy the current difference region."
1971 (interactive "P")
1972 (ediff-diff-to-diff arg "bc"))
1973
1974 (defun ediff-copy-C-to-B (arg)
1975 "Copy ARGth difference region from buffer C to B.
1976 ARG is a prefix argument. If nil, copy the current difference region."
1977 (interactive "P")
1978 (ediff-diff-to-diff arg "cb"))
1979
1980 (defun ediff-copy-C-to-A (arg)
1981 "Copy ARGth difference region from buffer C to A.
1982 ARG is a prefix argument. If nil, copy the current difference region."
1983 (interactive "P")
1984 (ediff-diff-to-diff arg "ca"))
1985
1986
1987
1988 ;; Copy diff N from FROM-BUF-TYPE (given as A, B or C) to TO-BUF-TYPE.
1989 ;; If optional DO-NOT-SAVE is non-nil, do not save the old value of the
1990 ;; target diff. This is used in merging, when constructing the merged
1991 ;; version.
1992 (defun ediff-copy-diff (n from-buf-type to-buf-type
1993 &optional batch-invocation reg-to-copy)
1994 (let* ((to-buf (ediff-get-buffer to-buf-type))
1995 ;;(from-buf (if (not reg-to-copy) (ediff-get-buffer from-buf-type)))
1996 (ctrl-buf ediff-control-buffer)
1997 (saved-p t)
1998 (three-way ediff-3way-job)
1999 messg
2000 ediff-verbose-p
2001 reg-to-delete reg-to-delete-beg reg-to-delete-end)
2002
2003 (setq reg-to-delete-beg
2004 (ediff-get-diff-posn to-buf-type 'beg n ctrl-buf))
2005 (setq reg-to-delete-end
2006 (ediff-get-diff-posn to-buf-type 'end n ctrl-buf))
2007
2008 (if reg-to-copy
2009 (setq from-buf-type nil)
2010 (setq reg-to-copy (ediff-get-region-contents n from-buf-type ctrl-buf)))
2011
2012 (setq reg-to-delete (ediff-get-region-contents
2013 n to-buf-type ctrl-buf
2014 reg-to-delete-beg reg-to-delete-end))
2015
2016 (if (string= reg-to-delete reg-to-copy)
2017 (setq saved-p nil) ; don't copy identical buffers
2018 ;; seems ok to copy
2019 (if (or batch-invocation (ediff-test-save-region n to-buf-type))
2020 (condition-case conds
2021 (progn
2022 (ediff-with-current-buffer to-buf
2023 ;; to prevent flags from interfering if buffer is writable
2024 (let ((inhibit-read-only (null buffer-read-only)))
2025
2026 (goto-char reg-to-delete-end)
2027 (insert reg-to-copy)
2028
2029 (if (> reg-to-delete-end reg-to-delete-beg)
2030 (kill-region reg-to-delete-beg reg-to-delete-end))
2031 ))
2032 (or batch-invocation
2033 (setq
2034 messg
2035 (ediff-save-diff-region n to-buf-type reg-to-delete))))
2036 (error (message "ediff-copy-diff: %s %s"
2037 (car conds)
2038 (mapconcat 'prin1-to-string (cdr conds) " "))
2039 (beep 1)
2040 (sit-for 2) ; let the user see the error msg
2041 (setq saved-p nil)
2042 )))
2043 )
2044
2045 ;; adjust state of difference in case 3-way and diff was copied ok
2046 (if (and saved-p three-way)
2047 (ediff-set-state-of-diff-in-all-buffers n ctrl-buf))
2048
2049 (if batch-invocation
2050 (ediff-clear-fine-differences n)
2051 ;; If diff3 job, we should recompute fine diffs so we clear them
2052 ;; before reinserting flags (and thus before ediff-recenter).
2053 (if (and saved-p three-way)
2054 (ediff-clear-fine-differences n))
2055
2056 (ediff-refresh-mode-lines)
2057
2058 ;; For diff2 jobs, don't recompute fine diffs, since we know there
2059 ;; aren't any. So we clear diffs after ediff-recenter.
2060 (if (and saved-p (not three-way))
2061 (ediff-clear-fine-differences n))
2062 ;; Make sure that the message about saving and how to restore is seen
2063 ;; by the user
2064 (message "%s" messg))
2065 ))
2066
2067 ;; Save Nth diff of buffer BUF-TYPE (A, B, or C).
2068 ;; That is to say, the Nth diff on the `ediff-killed-diffs-alist'. REG
2069 ;; is the region to save. It is redundant here, but is passed anyway, for
2070 ;; convenience.
2071 (defun ediff-save-diff-region (n buf-type reg)
2072 (let* ((n-th-diff-saved (assoc n ediff-killed-diffs-alist))
2073 (buf (ediff-get-buffer buf-type))
2074 (this-buf-n-th-diff-saved (assoc buf (cdr n-th-diff-saved))))
2075
2076 (if this-buf-n-th-diff-saved
2077 ;; either nothing saved for n-th diff and buffer or we OK'ed
2078 ;; overriding
2079 (setcdr this-buf-n-th-diff-saved reg)
2080 (if n-th-diff-saved ;; n-th diff saved, but for another buffer
2081 (nconc n-th-diff-saved (list (cons buf reg)))
2082 (setq ediff-killed-diffs-alist ;; create record for n-th diff
2083 (cons (list n (cons buf reg))
2084 ediff-killed-diffs-alist))))
2085 (message "Saving old diff region #%d of buffer %S. To recover, type `r%s'"
2086 (1+ n) buf-type
2087 (if ediff-merge-job
2088 "" (downcase (symbol-name buf-type))))
2089 ))
2090
2091 ;; Test if saving Nth difference region of buffer BUF-TYPE is possible.
2092 (defun ediff-test-save-region (n buf-type)
2093 (let* ((n-th-diff-saved (assoc n ediff-killed-diffs-alist))
2094 (buf (ediff-get-buffer buf-type))
2095 (this-buf-n-th-diff-saved (assoc buf (cdr n-th-diff-saved))))
2096
2097 (if this-buf-n-th-diff-saved
2098 (if (yes-or-no-p
2099 (format-message
2100 "You've previously copied diff region %d to buffer %S. Confirm? "
2101 (1+ n) buf-type))
2102 t
2103 (error "Quit"))
2104 t)))
2105
2106 (defun ediff-pop-diff (n buf-type)
2107 "Pop last killed Nth diff region from buffer BUF-TYPE."
2108 (let* ((n-th-record (assoc n ediff-killed-diffs-alist))
2109 (buf (ediff-get-buffer buf-type))
2110 (saved-rec (assoc buf (cdr n-th-record)))
2111 (three-way ediff-3way-job)
2112 (ctl-buf ediff-control-buffer)
2113 ediff-verbose-p
2114 saved-diff reg-beg reg-end recovered)
2115
2116 (if (cdr saved-rec)
2117 (setq saved-diff (cdr saved-rec))
2118 (if (> ediff-number-of-differences 0)
2119 (error "Nothing saved for diff %d in buffer %S" (1+ n) buf-type)
2120 (error ediff-NO-DIFFERENCES)))
2121
2122 (setq reg-beg (ediff-get-diff-posn buf-type 'beg n ediff-control-buffer))
2123 (setq reg-end (ediff-get-diff-posn buf-type 'end n ediff-control-buffer))
2124
2125 (condition-case conds
2126 (ediff-with-current-buffer buf
2127 (let ((inhibit-read-only (null buffer-read-only)))
2128
2129 (goto-char reg-end)
2130 (insert saved-diff)
2131
2132 (if (> reg-end reg-beg)
2133 (kill-region reg-beg reg-end))
2134
2135 (setq recovered t)
2136 ))
2137 (error (message "ediff-pop-diff: %s %s"
2138 (car conds)
2139 (mapconcat 'prin1-to-string (cdr conds) " "))
2140 (beep 1)))
2141
2142 ;; Clearing fine diffs is necessary for
2143 ;; ediff-unselect-and-select-difference to properly recompute them. We
2144 ;; can't rely on ediff-copy-diff to clear this vector, as the user might
2145 ;; have modified diff regions after copying and, thus, may have recomputed
2146 ;; fine diffs.
2147 (if recovered
2148 (ediff-clear-fine-differences n))
2149
2150 ;; adjust state of difference
2151 (if (and three-way recovered)
2152 (ediff-set-state-of-diff-in-all-buffers n ctl-buf))
2153
2154 (ediff-refresh-mode-lines)
2155
2156 (if recovered
2157 (progn
2158 (setq n-th-record (delq saved-rec n-th-record))
2159 (message "Diff region %d in buffer %S restored" (1+ n) buf-type)
2160 ))
2161 ))
2162
2163 (defun ediff-restore-diff (arg &optional key)
2164 "Restore ARGth diff from `ediff-killed-diffs-alist'.
2165 ARG is a prefix argument. If ARG is nil, restore the current-difference.
2166 If the second optional argument, a character, is given, use it to
2167 determine the target buffer instead of (ediff-last-command-char)"
2168 (interactive "P")
2169 (ediff-barf-if-not-control-buffer)
2170 (if (numberp arg)
2171 (ediff-jump-to-difference arg))
2172 (ediff-pop-diff ediff-current-difference
2173 (ediff-char-to-buftype (or key (ediff-last-command-char))))
2174 ;; recenter with rehighlighting, but no messages
2175 (let (ediff-verbose-p)
2176 (ediff-recenter)))
2177
2178 (defun ediff-restore-diff-in-merge-buffer (arg)
2179 "Restore ARGth diff in the merge buffer.
2180 ARG is a prefix argument. If nil, restore the current diff."
2181 (interactive "P")
2182 (ediff-restore-diff arg ?c))
2183
2184
2185 (defun ediff-toggle-regexp-match ()
2186 "Toggle between focusing and hiding of difference regions that match
2187 a regular expression typed in by the user."
2188 (interactive)
2189 (ediff-barf-if-not-control-buffer)
2190 (let ((regexp-A "")
2191 (regexp-B "")
2192 (regexp-C "")
2193 msg-connective alt-msg-connective alt-connective)
2194 (cond
2195 ((or (and (eq ediff-skip-diff-region-function
2196 ediff-focus-on-regexp-matches-function)
2197 (eq (ediff-last-command-char) ?f))
2198 (and (eq ediff-skip-diff-region-function
2199 ediff-hide-regexp-matches-function)
2200 (eq (ediff-last-command-char) ?h)))
2201 (message "Selective browsing by regexp turned off")
2202 (setq ediff-skip-diff-region-function 'ediff-show-all-diffs))
2203 ((eq (ediff-last-command-char) ?h)
2204 (setq ediff-skip-diff-region-function ediff-hide-regexp-matches-function
2205 regexp-A
2206 (read-string
2207 (format
2208 "Ignore A-regions matching this regexp (default %s): "
2209 ediff-regexp-hide-A))
2210 regexp-B
2211 (read-string
2212 (format
2213 "Ignore B-regions matching this regexp (default %s): "
2214 ediff-regexp-hide-B)))
2215 (if ediff-3way-comparison-job
2216 (setq regexp-C
2217 (read-string
2218 (format
2219 "Ignore C-regions matching this regexp (default %s): "
2220 ediff-regexp-hide-C))))
2221 (if (eq ediff-hide-regexp-connective 'and)
2222 (setq msg-connective "BOTH"
2223 alt-msg-connective "ONE OF"
2224 alt-connective 'or)
2225 (setq msg-connective "ONE OF"
2226 alt-msg-connective "BOTH"
2227 alt-connective 'and))
2228 (if (y-or-n-p
2229 (format
2230 "Ignore regions that match %s regexps, OK? "
2231 msg-connective))
2232 (message "Will ignore regions that match %s regexps" msg-connective)
2233 (setq ediff-hide-regexp-connective alt-connective)
2234 (message "Will ignore regions that match %s regexps"
2235 alt-msg-connective))
2236
2237 (or (string= regexp-A "") (setq ediff-regexp-hide-A regexp-A))
2238 (or (string= regexp-B "") (setq ediff-regexp-hide-B regexp-B))
2239 (or (string= regexp-C "") (setq ediff-regexp-hide-C regexp-C)))
2240
2241 ((eq (ediff-last-command-char) ?f)
2242 (setq ediff-skip-diff-region-function
2243 ediff-focus-on-regexp-matches-function
2244 regexp-A
2245 (read-string
2246 (format
2247 "Focus on A-regions matching this regexp (default %s): "
2248 ediff-regexp-focus-A))
2249 regexp-B
2250 (read-string
2251 (format
2252 "Focus on B-regions matching this regexp (default %s): "
2253 ediff-regexp-focus-B)))
2254 (if ediff-3way-comparison-job
2255 (setq regexp-C
2256 (read-string
2257 (format
2258 "Focus on C-regions matching this regexp (default %s): "
2259 ediff-regexp-focus-C))))
2260 (if (eq ediff-focus-regexp-connective 'and)
2261 (setq msg-connective "BOTH"
2262 alt-msg-connective "ONE OF"
2263 alt-connective 'or)
2264 (setq msg-connective "ONE OF"
2265 alt-msg-connective "BOTH"
2266 alt-connective 'and))
2267 (if (y-or-n-p
2268 (format
2269 "Focus on regions that match %s regexps, OK? "
2270 msg-connective))
2271 (message "Will focus on regions that match %s regexps"
2272 msg-connective)
2273 (setq ediff-focus-regexp-connective alt-connective)
2274 (message "Will focus on regions that match %s regexps"
2275 alt-msg-connective))
2276
2277 (or (string= regexp-A "") (setq ediff-regexp-focus-A regexp-A))
2278 (or (string= regexp-B "") (setq ediff-regexp-focus-B regexp-B))
2279 (or (string= regexp-C "") (setq ediff-regexp-focus-C regexp-C))))))
2280
2281 (defun ediff-toggle-skip-similar ()
2282 (interactive)
2283 (ediff-barf-if-not-control-buffer)
2284 (if (not (eq ediff-auto-refine 'on))
2285 (error
2286 "Can't skip over whitespace regions: first turn auto-refining on"))
2287 (setq ediff-ignore-similar-regions (not ediff-ignore-similar-regions))
2288 (if ediff-ignore-similar-regions
2289 (message
2290 "Skipping regions that differ only in white space & line breaks")
2291 (message "Skipping over white-space differences turned off")))
2292
2293 (defun ediff-focus-on-regexp-matches (n)
2294 "Focus on diffs that match regexp `ediff-regexp-focus-A/B'.
2295 Regions to be ignored according to this function are those where
2296 buf A region doesn't match `ediff-regexp-focus-A' and buf B region
2297 doesn't match `ediff-regexp-focus-B'.
2298 This function returns nil if the region number N (specified as
2299 an argument) is not to be ignored and t if region N is to be ignored.
2300
2301 N is a region number used by Ediff internally. It is 1 less
2302 the number seen by the user."
2303 (if (ediff-valid-difference-p n)
2304 (let* ((ctl-buf ediff-control-buffer)
2305 (regex-A ediff-regexp-focus-A)
2306 (regex-B ediff-regexp-focus-B)
2307 (regex-C ediff-regexp-focus-C)
2308 (reg-A-match (ediff-with-current-buffer ediff-buffer-A
2309 (save-restriction
2310 (narrow-to-region
2311 (ediff-get-diff-posn 'A 'beg n ctl-buf)
2312 (ediff-get-diff-posn 'A 'end n ctl-buf))
2313 (goto-char (point-min))
2314 (re-search-forward regex-A nil t))))
2315 (reg-B-match (ediff-with-current-buffer ediff-buffer-B
2316 (save-restriction
2317 (narrow-to-region
2318 (ediff-get-diff-posn 'B 'beg n ctl-buf)
2319 (ediff-get-diff-posn 'B 'end n ctl-buf))
2320 (goto-char (point-min))
2321 (re-search-forward regex-B nil t))))
2322 (reg-C-match (if ediff-3way-comparison-job
2323 (ediff-with-current-buffer ediff-buffer-C
2324 (save-restriction
2325 (narrow-to-region
2326 (ediff-get-diff-posn 'C 'beg n ctl-buf)
2327 (ediff-get-diff-posn 'C 'end n ctl-buf))
2328 (goto-char (point-min))
2329 (re-search-forward regex-C nil t))))))
2330 (not (eval (if ediff-3way-comparison-job
2331 (list ediff-focus-regexp-connective
2332 reg-A-match reg-B-match reg-C-match)
2333 (list ediff-focus-regexp-connective
2334 reg-A-match reg-B-match))))
2335 )))
2336
2337 (defun ediff-hide-regexp-matches (n)
2338 "Hide diffs that match regexp `ediff-regexp-hide-A/B/C'.
2339 Regions to be ignored are those where buf A region matches
2340 `ediff-regexp-hide-A' and buf B region matches `ediff-regexp-hide-B'.
2341 This function returns nil if the region number N (specified as
2342 an argument) is not to be ignored and t if region N is to be ignored.
2343
2344 N is a region number used by Ediff internally. It is 1 less
2345 the number seen by the user."
2346 (if (ediff-valid-difference-p n)
2347 (let* ((ctl-buf ediff-control-buffer)
2348 (regex-A ediff-regexp-hide-A)
2349 (regex-B ediff-regexp-hide-B)
2350 (regex-C ediff-regexp-hide-C)
2351 (reg-A-match (ediff-with-current-buffer ediff-buffer-A
2352 (save-restriction
2353 (narrow-to-region
2354 (ediff-get-diff-posn 'A 'beg n ctl-buf)
2355 (ediff-get-diff-posn 'A 'end n ctl-buf))
2356 (goto-char (point-min))
2357 (re-search-forward regex-A nil t))))
2358 (reg-B-match (ediff-with-current-buffer ediff-buffer-B
2359 (save-restriction
2360 (narrow-to-region
2361 (ediff-get-diff-posn 'B 'beg n ctl-buf)
2362 (ediff-get-diff-posn 'B 'end n ctl-buf))
2363 (goto-char (point-min))
2364 (re-search-forward regex-B nil t))))
2365 (reg-C-match (if ediff-3way-comparison-job
2366 (ediff-with-current-buffer ediff-buffer-C
2367 (save-restriction
2368 (narrow-to-region
2369 (ediff-get-diff-posn 'C 'beg n ctl-buf)
2370 (ediff-get-diff-posn 'C 'end n ctl-buf))
2371 (goto-char (point-min))
2372 (re-search-forward regex-C nil t))))))
2373 (eval (if ediff-3way-comparison-job
2374 (list ediff-hide-regexp-connective
2375 reg-A-match reg-B-match reg-C-match)
2376 (list ediff-hide-regexp-connective reg-A-match reg-B-match)))
2377 )))
2378
2379
2380 \f
2381 ;;; Quitting, suspending, etc.
2382
2383 (defun ediff-quit (reverse-default-keep-variants)
2384 "Finish an Ediff session and exit Ediff.
2385 Unselects the selected difference, if any, restores the read-only and modified
2386 flags of the compared file buffers, kills Ediff buffers for this session
2387 \(but not buffers A, B, C).
2388
2389 If `ediff-keep-variants' is nil, the user will be asked whether the buffers
2390 containing the variants should be removed \(if they haven't been modified).
2391 If it is t, they will be preserved unconditionally. A prefix argument,
2392 temporarily reverses the meaning of this variable."
2393 (interactive "P")
2394 (ediff-barf-if-not-control-buffer)
2395 (let ((ctl-buf (current-buffer))
2396 (ctl-frm (selected-frame))
2397 (minibuffer-auto-raise t))
2398 (if (y-or-n-p (format "Quit this Ediff session%s? "
2399 (if (ediff-buffer-live-p ediff-meta-buffer)
2400 " & show containing session group" "")))
2401 (progn
2402 (message "")
2403 (set-buffer ctl-buf)
2404 (ediff-really-quit reverse-default-keep-variants))
2405 (select-frame ctl-frm)
2406 (raise-frame ctl-frm)
2407 (message ""))))
2408
2409
2410 ;; Perform the quit operations.
2411 (defun ediff-really-quit (reverse-default-keep-variants)
2412 (ediff-unhighlight-diffs-totally)
2413 (ediff-clear-diff-vector 'ediff-difference-vector-A 'fine-diffs-also)
2414 (ediff-clear-diff-vector 'ediff-difference-vector-B 'fine-diffs-also)
2415 (ediff-clear-diff-vector 'ediff-difference-vector-C 'fine-diffs-also)
2416 (ediff-clear-diff-vector 'ediff-difference-vector-Ancestor 'fine-diffs-also)
2417
2418 (ediff-delete-temp-files)
2419
2420 ;; Restore the visibility range. This affects only ediff-*-regions/windows.
2421 ;; Since for other job names ediff-visible-region sets
2422 ;; ediff-visible-bounds to ediff-wide-bounds, the settings below are
2423 ;; ignored for such jobs.
2424 (if ediff-quit-widened
2425 (setq ediff-visible-bounds ediff-wide-bounds)
2426 (setq ediff-visible-bounds ediff-narrow-bounds))
2427
2428 ;; Apply selective display to narrow or widen
2429 (ediff-visible-region)
2430 (mapc (lambda (overl)
2431 (if (ediff-overlayp overl)
2432 (ediff-delete-overlay overl)))
2433 ediff-wide-bounds)
2434 (mapc (lambda (overl)
2435 (if (ediff-overlayp overl)
2436 (ediff-delete-overlay overl)))
2437 ediff-narrow-bounds)
2438
2439 ;; restore buffer mode line id's in buffer-A/B/C
2440 (let ((control-buffer ediff-control-buffer)
2441 (meta-buffer ediff-meta-buffer)
2442 ;; FIXME: Here we ignore the global part of the
2443 ;; ediff-after-quit-hook-internal hook.
2444 (after-quit-hook-internal (remq t ediff-after-quit-hook-internal))
2445 (session-number ediff-meta-session-number)
2446 ;; suitable working frame
2447 (warp-frame (if (and (ediff-window-display-p) (eq ediff-grab-mouse t))
2448 (cond ((window-live-p ediff-window-A)
2449 (window-frame ediff-window-A))
2450 ((window-live-p ediff-window-B)
2451 (window-frame ediff-window-B))
2452 (t (next-frame))))))
2453 (condition-case nil
2454 (ediff-with-current-buffer ediff-buffer-A
2455 (setq ediff-this-buffer-ediff-sessions
2456 (delq control-buffer ediff-this-buffer-ediff-sessions))
2457 (kill-local-variable 'mode-line-buffer-identification)
2458 (kill-local-variable 'mode-line-format)
2459 )
2460 (error))
2461
2462 (condition-case nil
2463 (ediff-with-current-buffer ediff-buffer-B
2464 (setq ediff-this-buffer-ediff-sessions
2465 (delq control-buffer ediff-this-buffer-ediff-sessions))
2466 (kill-local-variable 'mode-line-buffer-identification)
2467 (kill-local-variable 'mode-line-format)
2468 )
2469 (error))
2470
2471 (condition-case nil
2472 (ediff-with-current-buffer ediff-buffer-C
2473 (setq ediff-this-buffer-ediff-sessions
2474 (delq control-buffer ediff-this-buffer-ediff-sessions))
2475 (kill-local-variable 'mode-line-buffer-identification)
2476 (kill-local-variable 'mode-line-format)
2477 )
2478 (error))
2479
2480 (condition-case nil
2481 (ediff-with-current-buffer ediff-ancestor-buffer
2482 (setq ediff-this-buffer-ediff-sessions
2483 (delq control-buffer ediff-this-buffer-ediff-sessions))
2484 (kill-local-variable 'mode-line-buffer-identification)
2485 (kill-local-variable 'mode-line-format)
2486 )
2487 (error))
2488
2489 (setq ediff-session-registry
2490 (delq ediff-control-buffer ediff-session-registry))
2491 (ediff-update-registry)
2492 ;; restore state of buffers to what it was before ediff
2493 (ediff-restore-protected-variables)
2494
2495 ;; If the user interrupts (canceling saving the merge buffer), continue
2496 ;; normally.
2497 (condition-case nil
2498 (if (ediff-merge-job)
2499 (run-hooks 'ediff-quit-merge-hook))
2500 (quit))
2501
2502 (run-hooks 'ediff-cleanup-hook)
2503
2504 (ediff-janitor
2505 'ask
2506 ;; reverse-default-keep-variants is t if the user quits with a prefix arg
2507 (if reverse-default-keep-variants
2508 (not ediff-keep-variants)
2509 ediff-keep-variants))
2510
2511 ;; one hook here is ediff-cleanup-mess, which kills the control buffer and
2512 ;; other auxiliary buffers. we made it into a hook to let the users do their
2513 ;; own cleanup, if needed.
2514 (run-hooks 'ediff-quit-hook)
2515 (ediff-update-meta-buffer meta-buffer nil session-number)
2516
2517 ;; warp mouse into a working window
2518 (setq warp-frame ; if mouse is over a reasonable frame, use it
2519 (cond ((ediff-good-frame-under-mouse))
2520 (t warp-frame)))
2521 (if (and (ediff-window-display-p) (frame-live-p warp-frame) ediff-grab-mouse)
2522 (set-mouse-position (if (featurep 'emacs)
2523 warp-frame
2524 (frame-selected-window warp-frame))
2525 2 1))
2526
2527 (mapc #'funcall after-quit-hook-internal)
2528 ))
2529
2530 ;; Returns frame under mouse, if this frame is not a minibuffer
2531 ;; frame. Otherwise: nil
2532 (defun ediff-good-frame-under-mouse ()
2533 (let ((frame-or-win (car (mouse-position)))
2534 (buf-name "")
2535 frame obj-ok)
2536 (setq obj-ok
2537 (if (featurep 'emacs)
2538 (frame-live-p frame-or-win)
2539 (window-live-p frame-or-win)))
2540 (if obj-ok
2541 (setq frame (if (featurep 'emacs) frame-or-win (window-frame frame-or-win))
2542 buf-name
2543 (buffer-name (window-buffer (frame-selected-window frame)))))
2544 (if (string-match "Minibuf" buf-name)
2545 nil
2546 frame)))
2547
2548
2549 (defun ediff-delete-temp-files ()
2550 (if (and (stringp ediff-temp-file-A) (file-exists-p ediff-temp-file-A))
2551 (delete-file ediff-temp-file-A))
2552 (if (and (stringp ediff-temp-file-B) (file-exists-p ediff-temp-file-B))
2553 (delete-file ediff-temp-file-B))
2554 (if (and (stringp ediff-temp-file-C) (file-exists-p ediff-temp-file-C))
2555 (delete-file ediff-temp-file-C)))
2556
2557
2558 ;; Kill control buffer, other auxiliary Ediff buffers.
2559 ;; Leave one of the frames split between buffers A/B/C
2560 (defun ediff-cleanup-mess ()
2561 (let* ((buff-A ediff-buffer-A)
2562 (buff-B ediff-buffer-B)
2563 (buff-C ediff-buffer-C)
2564 (ctl-buf ediff-control-buffer)
2565 (ctl-wind (ediff-get-visible-buffer-window ctl-buf))
2566 (ctl-frame ediff-control-frame)
2567 (three-way-job ediff-3way-job)
2568 (main-frame (cond ((window-live-p ediff-window-A)
2569 (window-frame ediff-window-A))
2570 ((window-live-p ediff-window-B)
2571 (window-frame ediff-window-B)))))
2572
2573 (ediff-kill-buffer-carefully ediff-diff-buffer)
2574 (ediff-kill-buffer-carefully ediff-custom-diff-buffer)
2575 (ediff-kill-buffer-carefully ediff-fine-diff-buffer)
2576 (ediff-kill-buffer-carefully ediff-tmp-buffer)
2577 (ediff-kill-buffer-carefully ediff-error-buffer)
2578 (ediff-kill-buffer-carefully ediff-msg-buffer)
2579 (ediff-kill-buffer-carefully ediff-debug-buffer)
2580 (if (boundp 'ediff-patch-diagnostics)
2581 (ediff-kill-buffer-carefully ediff-patch-diagnostics))
2582
2583 ;; delete control frame or window
2584 (cond ((and (ediff-window-display-p) (frame-live-p ctl-frame))
2585 (delete-frame ctl-frame))
2586 ((window-live-p ctl-wind)
2587 (delete-window ctl-wind)))
2588
2589 ;; Hide bottom toolbar. --marcpa
2590 (if (not (ediff-multiframe-setup-p))
2591 (ediff-kill-bottom-toolbar))
2592
2593 (ediff-kill-buffer-carefully ctl-buf)
2594
2595 (if (frame-live-p main-frame)
2596 (select-frame main-frame))
2597
2598 ;; display only if not visible
2599 (condition-case nil
2600 (or (ediff-get-visible-buffer-window buff-B)
2601 (switch-to-buffer buff-B))
2602 (error))
2603 (condition-case nil
2604 (or (ediff-get-visible-buffer-window buff-A)
2605 (progn
2606 (if (and (ediff-get-visible-buffer-window buff-B)
2607 (ediff-buffer-live-p buff-A))
2608 (funcall ediff-split-window-function))
2609 (switch-to-buffer buff-A)))
2610 (error))
2611 (if three-way-job
2612 (condition-case nil
2613 (or (ediff-get-visible-buffer-window buff-C)
2614 (progn
2615 (if (and (or (ediff-get-visible-buffer-window buff-A)
2616 (ediff-get-visible-buffer-window buff-B))
2617 (ediff-buffer-live-p buff-C))
2618 (funcall ediff-split-window-function))
2619 (switch-to-buffer buff-C)))
2620 (error)))
2621 (balance-windows)
2622 (message "")
2623 ))
2624
2625 (defun ediff-janitor (ask keep-variants)
2626 "Kill buffers A, B, and, possibly, C, if these buffers aren't modified.
2627 In merge jobs, buffer C is not deleted here, but rather according to
2628 ediff-quit-merge-hook.
2629 A side effect of cleaning up may be that you should be careful when comparing
2630 the same buffer in two separate Ediff sessions: quitting one of them might
2631 delete this buffer in another session as well."
2632 (ediff-dispose-of-variant-according-to-user
2633 ediff-buffer-A 'A ask keep-variants)
2634 (ediff-dispose-of-variant-according-to-user
2635 ediff-buffer-B 'B ask keep-variants)
2636 (if ediff-merge-job ; don't del buf C if merging--del ancestor buf instead
2637 (ediff-dispose-of-variant-according-to-user
2638 ediff-ancestor-buffer 'Ancestor ask keep-variants)
2639 (ediff-dispose-of-variant-according-to-user
2640 ediff-buffer-C 'C ask keep-variants)
2641 ))
2642
2643 ;; Kill the variant buffer, according to user directives (ask, kill
2644 ;; unconditionally, keep)
2645 ;; BUFF is the buffer, BUFF-TYPE is either 'A, or 'B, 'C, 'Ancestor
2646 (defun ediff-dispose-of-variant-according-to-user (buff bufftype ask keep-variants)
2647 ;; if this is indirect buffer, kill it and substitute with direct buf
2648 (if (and (ediff-buffer-live-p buff)
2649 (ediff-with-current-buffer buff ediff-temp-indirect-buffer))
2650 (let ((wind (ediff-get-visible-buffer-window buff))
2651 (base (buffer-base-buffer buff))
2652 (modified-p (buffer-modified-p buff)))
2653 (if (and (window-live-p wind) (ediff-buffer-live-p base))
2654 (set-window-buffer wind base))
2655 ;; Kill indirect buffer even if it is modified, because the base buffer
2656 ;; is still there. Note that if the base buffer is dead then so will be
2657 ;; the indirect buffer
2658 (ediff-with-current-buffer buff
2659 (set-buffer-modified-p nil))
2660 (ediff-kill-buffer-carefully buff)
2661 (ediff-with-current-buffer base
2662 (set-buffer-modified-p modified-p)))
2663 ;; otherwise, ask or use the value of keep-variants
2664 (or (not (ediff-buffer-live-p buff))
2665 keep-variants
2666 (buffer-modified-p buff)
2667 (and ask
2668 (not (y-or-n-p (format "Kill buffer %S [%s]? "
2669 bufftype (buffer-name buff)))))
2670 (ediff-kill-buffer-carefully buff))
2671 ))
2672
2673 (defun ediff-maybe-save-and-delete-merge (&optional save-and-continue)
2674 "Default hook to run on quitting a merge job.
2675 This can also be used to save merge buffer in the middle of an Ediff session.
2676
2677 If the optional SAVE-AND-CONTINUE argument is non-nil, save merge buffer and
2678 continue. Otherwise:
2679 If `ediff-autostore-merges' is nil, this does nothing.
2680 If it is t, it saves the merge buffer in the file `ediff-merge-store-file'
2681 or asks the user, if the latter is nil. It then asks the user whether to
2682 delete the merge buffer.
2683 If `ediff-autostore-merges' is neither nil nor t, the merge buffer is saved
2684 only if this merge job is part of a group, i.e., was invoked from within
2685 `ediff-merge-directories', `ediff-merge-directory-revisions', and such."
2686 (let ((merge-store-file ediff-merge-store-file)
2687 (ediff-autostore-merges ; fake ediff-autostore-merges, if necessary
2688 (if save-and-continue t ediff-autostore-merges)))
2689 (if ediff-autostore-merges
2690 (cond ((stringp merge-store-file)
2691 ;; store, ask to delete
2692 (ediff-write-merge-buffer-and-maybe-kill
2693 ediff-buffer-C merge-store-file 'show-file save-and-continue))
2694 ((eq ediff-autostore-merges t)
2695 ;; ask for file name
2696 (setq merge-store-file
2697 (read-file-name "Save the result of the merge in file: "))
2698 (ediff-write-merge-buffer-and-maybe-kill
2699 ediff-buffer-C merge-store-file nil save-and-continue))
2700 ((and (ediff-buffer-live-p ediff-meta-buffer)
2701 (ediff-with-current-buffer ediff-meta-buffer
2702 (ediff-merge-metajob)))
2703 ;; The parent metajob passed nil as the autostore file.
2704 nil)))
2705 ))
2706
2707 ;; write merge buffer. If the optional argument save-and-continue is non-nil,
2708 ;; then don't kill the merge buffer
2709 (defun ediff-write-merge-buffer-and-maybe-kill (buf file
2710 &optional
2711 show-file save-and-continue)
2712 (if (not (eq (find-buffer-visiting file) buf))
2713 (let ((warn-message
2714 (format "Another buffer is visiting file %s. Too dangerous to save the merge buffer"
2715 file)))
2716 (beep)
2717 (message "%s" warn-message)
2718 (with-output-to-temp-buffer ediff-msg-buffer
2719 (princ "\n\n")
2720 (princ warn-message)
2721 (princ "\n\n")
2722 )
2723 (sit-for 2))
2724 (ediff-with-current-buffer buf
2725 (if (or (not (file-exists-p file))
2726 (y-or-n-p (format "File %s exists, overwrite? " file)))
2727 (progn
2728 ;;(write-region nil nil file)
2729 (ediff-with-current-buffer buf
2730 (set-visited-file-name file)
2731 (save-buffer))
2732 (if show-file
2733 (progn
2734 (message "Merge buffer saved in: %s" file)
2735 (set-buffer-modified-p nil)
2736 (sit-for 3)))
2737 (if (and
2738 (not save-and-continue)
2739 (y-or-n-p "Merge buffer saved. Now kill the buffer? "))
2740 (ediff-kill-buffer-carefully buf)))))
2741 ))
2742
2743 ;; The default way of suspending Ediff.
2744 ;; Buries Ediff buffers, kills all windows.
2745 (defun ediff-default-suspend-function ()
2746 (let* ((buf-A ediff-buffer-A)
2747 (buf-B ediff-buffer-B)
2748 (buf-C ediff-buffer-C)
2749 (buf-A-wind (ediff-get-visible-buffer-window buf-A))
2750 (buf-B-wind (ediff-get-visible-buffer-window buf-B))
2751 (buf-C-wind (ediff-get-visible-buffer-window buf-C))
2752 (buf-patch (if (boundp 'ediff-patchbufer) ediff-patchbufer nil))
2753 (buf-patch-diag (if (boundp 'ediff-patch-diagnostics)
2754 ediff-patch-diagnostics nil))
2755 (buf-err ediff-error-buffer)
2756 (buf-diff ediff-diff-buffer)
2757 (buf-custom-diff ediff-custom-diff-buffer)
2758 (buf-fine-diff ediff-fine-diff-buffer))
2759
2760 ;; hide the control panel
2761 (if (and (ediff-window-display-p) (frame-live-p ediff-control-frame))
2762 (iconify-frame ediff-control-frame)
2763 (bury-buffer))
2764 (if buf-err (bury-buffer buf-err))
2765 (if buf-diff (bury-buffer buf-diff))
2766 (if buf-custom-diff (bury-buffer buf-custom-diff))
2767 (if buf-fine-diff (bury-buffer buf-fine-diff))
2768 (if buf-patch (bury-buffer buf-patch))
2769 (if buf-patch-diag (bury-buffer buf-patch-diag))
2770 (if (window-live-p buf-A-wind)
2771 (progn
2772 (select-window buf-A-wind)
2773 (delete-other-windows)
2774 (bury-buffer))
2775 (if (ediff-buffer-live-p buf-A)
2776 (progn
2777 (set-buffer buf-A)
2778 (bury-buffer))))
2779 (if (window-live-p buf-B-wind)
2780 (progn
2781 (select-window buf-B-wind)
2782 (delete-other-windows)
2783 (bury-buffer))
2784 (if (ediff-buffer-live-p buf-B)
2785 (progn
2786 (set-buffer buf-B)
2787 (bury-buffer))))
2788 (if (window-live-p buf-C-wind)
2789 (progn
2790 (select-window buf-C-wind)
2791 (delete-other-windows)
2792 (bury-buffer))
2793 (if (ediff-buffer-live-p buf-C)
2794 (progn
2795 (set-buffer buf-C)
2796 (bury-buffer))))
2797 ))
2798
2799
2800 (defun ediff-suspend ()
2801 "Suspend Ediff.
2802 To resume, switch to the appropriate `Ediff Control Panel'
2803 buffer and then type \\[ediff-recenter]. Ediff will automatically set
2804 up an appropriate window config."
2805 (interactive)
2806 (ediff-barf-if-not-control-buffer)
2807 (run-hooks 'ediff-suspend-hook)
2808 (message
2809 "To resume, type M-x eregistry and select the desired Ediff session"))
2810
2811 ;; ediff-barf-if-not-control-buffer ensures only called from ediff.
2812 (declare-function ediff-version "ediff" ())
2813
2814 (defun ediff-status-info ()
2815 "Show the names of the buffers or files being operated on by Ediff.
2816 Hit \\[ediff-recenter] to reset the windows afterward."
2817 (interactive)
2818 (ediff-barf-if-not-control-buffer)
2819 (save-excursion
2820 (ediff-skip-unsuitable-frames))
2821 (with-output-to-temp-buffer ediff-msg-buffer
2822 (ediff-with-current-buffer standard-output
2823 (fundamental-mode))
2824 (raise-frame)
2825 (princ (ediff-version))
2826 (princ "\n\n")
2827 (ediff-with-current-buffer ediff-buffer-A
2828 (if buffer-file-name
2829 (princ
2830 (format "File A = %S\n" buffer-file-name))
2831 (princ
2832 (format "Buffer A = %S\n" (buffer-name)))))
2833 (ediff-with-current-buffer ediff-buffer-B
2834 (if buffer-file-name
2835 (princ
2836 (format "File B = %S\n" buffer-file-name))
2837 (princ
2838 (format "Buffer B = %S\n" (buffer-name)))))
2839 (if ediff-3way-job
2840 (ediff-with-current-buffer ediff-buffer-C
2841 (if buffer-file-name
2842 (princ
2843 (format "File C = %S\n" buffer-file-name))
2844 (princ
2845 (format "Buffer C = %S\n" (buffer-name))))))
2846 (princ (format "Customized diff output %s\n"
2847 (if (ediff-buffer-live-p ediff-custom-diff-buffer)
2848 (concat "\tin buffer "
2849 (buffer-name ediff-custom-diff-buffer))
2850 " is not available")))
2851 (princ (format "Plain diff output %s\n"
2852 (if (ediff-buffer-live-p ediff-diff-buffer)
2853 (concat "\tin buffer "
2854 (buffer-name ediff-diff-buffer))
2855 " is not available")))
2856
2857 (let* ((A-line (ediff-with-current-buffer ediff-buffer-A
2858 (1+ (count-lines (point-min) (point)))))
2859 (B-line (ediff-with-current-buffer ediff-buffer-B
2860 (1+ (count-lines (point-min) (point)))))
2861 C-line)
2862 (princ (format-message "Buffer A's point is on line %d\n" A-line))
2863 (princ (format-message "Buffer B's point is on line %d\n" B-line))
2864 (if ediff-3way-job
2865 (progn
2866 (setq C-line (ediff-with-current-buffer ediff-buffer-C
2867 (1+ (count-lines (point-min) (point)))))
2868 (princ (format-message
2869 "Buffer C's point is on line %d\n" C-line)))))
2870
2871 (princ (format "\nCurrent difference number = %S\n"
2872 (cond ((< ediff-current-difference 0) 'start)
2873 ((>= ediff-current-difference
2874 ediff-number-of-differences) 'end)
2875 (t (1+ ediff-current-difference)))))
2876
2877 (princ
2878 (format "\n%s regions that differ in white space & line breaks only"
2879 (if ediff-ignore-similar-regions
2880 "Ignoring" "Showing")))
2881 (if (and ediff-merge-job ediff-show-clashes-only)
2882 (princ
2883 "\nFocusing on regions where both buffers differ from the ancestor"))
2884 (if (and ediff-skip-merge-regions-that-differ-from-default ediff-merge-job)
2885 (princ
2886 "\nSkipping merge regions that differ from default setting"))
2887
2888 (cond ((eq ediff-skip-diff-region-function 'ediff-show-all-diffs)
2889 (princ "\nSelective browsing by regexp is off\n"))
2890 ((eq ediff-skip-diff-region-function
2891 ediff-hide-regexp-matches-function)
2892 (princ
2893 "\nIgnoring regions that match")
2894 (princ
2895 (format-message
2896 "\n\t regexp `%s' in buffer A %S\n\t regexp `%s' in buffer B\n"
2897 ediff-regexp-hide-A ediff-hide-regexp-connective
2898 ediff-regexp-hide-B)))
2899 ((eq ediff-skip-diff-region-function
2900 ediff-focus-on-regexp-matches-function)
2901 (princ
2902 "\nFocusing on regions that match")
2903 (princ
2904 (format-message
2905 "\n\t regexp `%s' in buffer A %S\n\t regexp `%s' in buffer B\n"
2906 ediff-regexp-focus-A ediff-focus-regexp-connective
2907 ediff-regexp-focus-B)))
2908 (t (princ "\nSelective browsing via a user-defined method.\n")))
2909
2910 (princ
2911 (format-message
2912 "\nBugs/suggestions: type `%s' while in Ediff Control Panel."
2913 (substitute-command-keys "\\[ediff-submit-report]")))
2914 ) ; with output
2915 (if (frame-live-p ediff-control-frame)
2916 (ediff-reset-mouse ediff-control-frame))
2917 (if (window-live-p ediff-control-window)
2918 (select-window ediff-control-window)))
2919
2920
2921
2922 \f
2923 ;;; Support routines
2924
2925 ;; Select a difference by placing the ASCII flags around the appropriate
2926 ;; group of lines in the A, B buffers
2927 ;; This may have to be modified for buffer C, when it will be supported.
2928 (defun ediff-select-difference (n)
2929 (if (and (ediff-buffer-live-p ediff-buffer-A)
2930 (ediff-buffer-live-p ediff-buffer-B)
2931 (ediff-valid-difference-p n))
2932 (progn
2933 (cond
2934 ((and (ediff-has-face-support-p) ediff-use-faces)
2935 (ediff-highlight-diff n))
2936 ((eq ediff-highlighting-style 'ascii)
2937 (ediff-place-flags-in-buffer
2938 'A ediff-buffer-A ediff-control-buffer n)
2939 (ediff-place-flags-in-buffer
2940 'B ediff-buffer-B ediff-control-buffer n)
2941 (if ediff-3way-job
2942 (ediff-place-flags-in-buffer
2943 'C ediff-buffer-C ediff-control-buffer n))
2944 (if (ediff-buffer-live-p ediff-ancestor-buffer)
2945 (ediff-place-flags-in-buffer
2946 'Ancestor ediff-ancestor-buffer
2947 ediff-control-buffer n))
2948 ))
2949
2950 (ediff-install-fine-diff-if-necessary n)
2951 ;; set current difference here so the hook will be able to refer to it
2952 (setq ediff-current-difference n)
2953 (run-hooks 'ediff-select-hook))))
2954
2955
2956 ;; Unselect a difference by removing the ASCII flags in the buffers.
2957 ;; This may have to be modified for buffer C, when it will be supported.
2958 (defun ediff-unselect-difference (n)
2959 (if (ediff-valid-difference-p n)
2960 (progn
2961 (cond ((and (ediff-has-face-support-p) ediff-use-faces)
2962 (ediff-unhighlight-diff))
2963 ((eq ediff-highlighting-style 'ascii)
2964 (ediff-remove-flags-from-buffer
2965 ediff-buffer-A
2966 (ediff-get-diff-overlay n 'A))
2967 (ediff-remove-flags-from-buffer
2968 ediff-buffer-B
2969 (ediff-get-diff-overlay n 'B))
2970 (if ediff-3way-job
2971 (ediff-remove-flags-from-buffer
2972 ediff-buffer-C
2973 (ediff-get-diff-overlay n 'C)))
2974 (if (ediff-buffer-live-p ediff-ancestor-buffer)
2975 (ediff-remove-flags-from-buffer
2976 ediff-ancestor-buffer
2977 (ediff-get-diff-overlay n 'Ancestor)))
2978 ))
2979
2980 ;; unhighlight fine diffs
2981 (ediff-set-fine-diff-properties ediff-current-difference t)
2982 (run-hooks 'ediff-unselect-hook))))
2983
2984
2985 ;; Unselects prev diff and selects a new one, if FLAG has value other than
2986 ;; 'select-only or 'unselect-only. If FLAG is 'select-only, the
2987 ;; next difference is selected, but the current selection is not
2988 ;; unselected. If FLAG is 'unselect-only then the current selection is
2989 ;; unselected, but the next one is not selected. If NO-RECENTER is non-nil,
2990 ;; don't recenter buffers after selecting/unselecting.
2991 (defun ediff-unselect-and-select-difference (n &optional flag no-recenter)
2992 (let ((ediff-current-difference n))
2993 (or no-recenter
2994 (ediff-recenter 'no-rehighlight)))
2995
2996 (let ((control-buf ediff-control-buffer))
2997 (unwind-protect
2998 (progn
2999 (or (eq flag 'select-only)
3000 (ediff-unselect-difference ediff-current-difference))
3001
3002 (or (eq flag 'unselect-only)
3003 (ediff-select-difference n))
3004 ;; need to set current diff here even though it is also set in
3005 ;; ediff-select-difference because ediff-select-difference might not
3006 ;; be called if unselect-only is specified
3007 (setq ediff-current-difference n)
3008 ) ; end protected section
3009
3010 (ediff-with-current-buffer control-buf (ediff-refresh-mode-lines)))
3011 ))
3012
3013
3014
3015 (defun ediff-highlight-diff-in-one-buffer (n buf-type)
3016 (if (ediff-buffer-live-p (ediff-get-buffer buf-type))
3017 (let* ((buff (ediff-get-buffer buf-type))
3018 (last (ediff-with-current-buffer buff (point-max)))
3019 (begin (ediff-get-diff-posn buf-type 'beg n))
3020 (end (ediff-get-diff-posn buf-type 'end n))
3021 (xtra (if (equal begin end) 1 0))
3022 (end-hilit (min last (+ end xtra)))
3023 (current-diff-overlay
3024 (symbol-value
3025 (ediff-get-symbol-from-alist
3026 buf-type ediff-current-diff-overlay-alist))))
3027
3028 (if (featurep 'xemacs)
3029 (ediff-move-overlay current-diff-overlay begin end-hilit)
3030 (ediff-move-overlay current-diff-overlay begin end-hilit buff))
3031 (ediff-overlay-put current-diff-overlay 'ediff-diff-num n)
3032
3033 ;; unhighlight the background overlay for diff n so it won't
3034 ;; interfere with the current diff overlay
3035 (ediff-set-overlay-face (ediff-get-diff-overlay n buf-type) nil)
3036 )))
3037
3038
3039 (defun ediff-unhighlight-diff-in-one-buffer (buf-type)
3040 (if (ediff-buffer-live-p (ediff-get-buffer buf-type))
3041 (let ((current-diff-overlay
3042 (symbol-value
3043 (ediff-get-symbol-from-alist
3044 buf-type ediff-current-diff-overlay-alist)))
3045 (overlay
3046 (ediff-get-diff-overlay ediff-current-difference buf-type))
3047 )
3048
3049 (ediff-move-overlay current-diff-overlay 1 1)
3050
3051 ;; rehighlight the overlay in the background of the
3052 ;; current difference region
3053 (ediff-set-overlay-face
3054 overlay
3055 (if (and (ediff-has-face-support-p)
3056 ediff-use-faces ediff-highlight-all-diffs)
3057 (ediff-background-face buf-type ediff-current-difference)))
3058 )))
3059
3060 (defun ediff-unhighlight-diffs-totally-in-one-buffer (buf-type)
3061 (ediff-unselect-and-select-difference -1)
3062 (if (and (ediff-has-face-support-p) ediff-use-faces)
3063 (let* ((inhibit-quit t)
3064 (current-diff-overlay-var
3065 (ediff-get-symbol-from-alist
3066 buf-type ediff-current-diff-overlay-alist))
3067 (current-diff-overlay (symbol-value current-diff-overlay-var)))
3068 (ediff-paint-background-regions 'unhighlight)
3069 (if (ediff-overlayp current-diff-overlay)
3070 (ediff-delete-overlay current-diff-overlay))
3071 (set current-diff-overlay-var nil)
3072 )))
3073
3074
3075 (defun ediff-highlight-diff (n)
3076 "Put face on diff N. Invoked for X displays only."
3077 (ediff-highlight-diff-in-one-buffer n 'A)
3078 (ediff-highlight-diff-in-one-buffer n 'B)
3079 (ediff-highlight-diff-in-one-buffer n 'C)
3080 (ediff-highlight-diff-in-one-buffer n 'Ancestor)
3081 )
3082
3083
3084 (defun ediff-unhighlight-diff ()
3085 "Remove overlays from buffers A, B, and C."
3086 (ediff-unhighlight-diff-in-one-buffer 'A)
3087 (ediff-unhighlight-diff-in-one-buffer 'B)
3088 (ediff-unhighlight-diff-in-one-buffer 'C)
3089 (ediff-unhighlight-diff-in-one-buffer 'Ancestor)
3090 )
3091
3092 ;; delete highlighting overlays, restore faces to their original form
3093 (defun ediff-unhighlight-diffs-totally ()
3094 (ediff-unhighlight-diffs-totally-in-one-buffer 'A)
3095 (ediff-unhighlight-diffs-totally-in-one-buffer 'B)
3096 (ediff-unhighlight-diffs-totally-in-one-buffer 'C)
3097 (ediff-unhighlight-diffs-totally-in-one-buffer 'Ancestor)
3098 )
3099
3100
3101 ;; for compatibility
3102 (defmacro ediff-minibuffer-with-setup-hook (fun &rest body)
3103 `(if (fboundp 'minibuffer-with-setup-hook)
3104 (minibuffer-with-setup-hook ,fun ,@body)
3105 ,@body))
3106
3107 ;; This is adapted from a similar function in `emerge.el'.
3108 ;; PROMPT should not have a trailing ': ', so that it can be modified
3109 ;; according to context.
3110 ;; If DEFAULT-FILE is set, it should be used as the default value.
3111 ;; If DEFAULT-DIR is non-nil, use it as the default directory.
3112 ;; Otherwise, use the value of `default-directory.'
3113 (defun ediff-read-file-name (prompt default-dir default-file &optional no-dirs)
3114 ;; hack default-dir if it is not set
3115 (setq default-dir
3116 (file-name-as-directory
3117 (ediff-abbreviate-file-name
3118 (expand-file-name (or default-dir
3119 (and default-file
3120 (file-name-directory default-file))
3121 default-directory)))))
3122
3123 ;; strip the directory from default-file
3124 (if default-file
3125 (setq default-file (file-name-nondirectory default-file)))
3126 (if (string= default-file "")
3127 (setq default-file nil))
3128
3129 (let ((defaults (and (fboundp 'dired-dwim-target-defaults)
3130 (dired-dwim-target-defaults
3131 (and default-file (list default-file))
3132 default-dir)))
3133 f)
3134 (setq f (ediff-minibuffer-with-setup-hook
3135 (lambda () (when defaults
3136 (setq minibuffer-default defaults)))
3137 (read-file-name
3138 (format "%s%s "
3139 prompt
3140 (cond (default-file
3141 (concat " (default " default-file "):"))
3142 (t (concat " (default " default-dir "):"))))
3143 default-dir
3144 (or default-file default-dir)
3145 t ; must match, no-confirm
3146 (if default-file (file-name-directory default-file)))))
3147 (setq f (expand-file-name f default-dir))
3148 ;; If user entered a directory name, expand the default file in that
3149 ;; directory. This allows the user to enter a directory name for the
3150 ;; B-file and diff against the default-file in that directory instead
3151 ;; of a DIRED listing!
3152 (if (and (file-directory-p f) default-file)
3153 (setq f (expand-file-name
3154 (file-name-nondirectory default-file) f)))
3155 (if (and no-dirs (file-directory-p f))
3156 (error "File %s is a directory" f))
3157 f))
3158
3159 ;; If PREFIX is given, then it is used as a prefix for the temp file
3160 ;; name. Otherwise, `ediff' is used. If FILE is given, use this
3161 ;; file and don't create a new one.
3162 ;; In MS-DOS, make sure the prefix isn't too long, or else
3163 ;; `make-temp-name' isn't guaranteed to return a unique filename.
3164 ;; Also, save buffer from START to END in the file.
3165 ;; START defaults to (point-min), END to (point-max)
3166 (defun ediff-make-temp-file (buff &optional prefix given-file start end)
3167 (let* ((p (ediff-convert-standard-filename (or prefix "ediff")))
3168 (short-p p)
3169 (coding-system-for-write ediff-coding-system-for-write)
3170 f short-f)
3171 (if (and (fboundp 'msdos-long-file-names)
3172 (not (msdos-long-file-names))
3173 (> (length p) 2))
3174 (setq short-p (substring p 0 2)))
3175
3176 (setq f (concat ediff-temp-file-prefix p)
3177 short-f (concat ediff-temp-file-prefix short-p)
3178 f (cond (given-file)
3179 ((find-file-name-handler f 'insert-file-contents)
3180 ;; to thwart file handlers in write-region, e.g., if file
3181 ;; name ends with .Z or .gz
3182 ;; This is needed so that patches produced by ediff will
3183 ;; have more meaningful names
3184 (ediff-make-empty-tmp-file short-f))
3185 (prefix
3186 ;; Prefix is most often the same as the file name for the
3187 ;; variant. Here we are trying to use the original file
3188 ;; name but in the temp directory.
3189 (ediff-make-empty-tmp-file f 'keep-name))
3190 (t
3191 ;; If don't care about name, add some random stuff
3192 ;; to proposed file name.
3193 (ediff-make-empty-tmp-file short-f))))
3194
3195 ;; create the file
3196 (ediff-with-current-buffer buff
3197 (write-region (if start start (point-min))
3198 (if end end (point-max))
3199 f
3200 nil ; don't append---erase
3201 'no-message)
3202 (set-file-modes f ediff-temp-file-mode)
3203 (expand-file-name f))))
3204
3205 ;; Create a temporary file.
3206 ;; The returned file name (created by appending some random characters at the
3207 ;; end of PROPOSED-NAME is guaranteed to point to a newly created empty file.
3208 ;; This is a replacement for make-temp-name, which eliminates a security hole.
3209 ;; If KEEP-PROPOSED-NAME isn't nil, try to keep PROPOSED-NAME, unless such file
3210 ;; already exists.
3211 ;; It is a modified version of make-temp-file in emacs 20.5
3212 (defun ediff-make-empty-tmp-file (proposed-name &optional keep-proposed-name)
3213 (let ((file proposed-name))
3214 (while (condition-case ()
3215 (progn
3216 (if (or (file-exists-p file) (not keep-proposed-name))
3217 (setq file (make-temp-name proposed-name)))
3218 ;; the with-temp-buffer thing is a workaround for an XEmacs
3219 ;; bug: write-region complains that we are trying to visit a
3220 ;; file in an indirect buffer, failing to notice that the
3221 ;; VISIT flag is unset and that we are actually writing from a
3222 ;; string and not from any buffer.
3223 (with-temp-buffer
3224 (write-region "" nil file nil 'silent nil 'excl))
3225 nil)
3226 (file-already-exists t))
3227 ;; the file was somehow created by someone else between
3228 ;; `make-temp-name' and `write-region', let's try again.
3229 nil)
3230 file))
3231
3232
3233 ;; Quote metacharacters (using \) when executing diff in Unix, but not in
3234 ;; EMX OS/2
3235 ;;(defun ediff-protect-metachars (str)
3236 ;; (or (memq system-type '(emx))
3237 ;; (let ((limit 0))
3238 ;; (while (string-match ediff-metachars str limit)
3239 ;; (setq str (concat (substring str 0 (match-beginning 0))
3240 ;; "\\"
3241 ;; (substring str (match-beginning 0))))
3242 ;; (setq limit (1+ (match-end 0))))))
3243 ;; str)
3244
3245 ;; Make sure the current buffer (for a file) has the same contents as the
3246 ;; file on disk, and attempt to remedy the situation if not.
3247 ;; Signal an error if we can't make them the same, or the user doesn't want
3248 ;; to do what is necessary to make them the same.
3249 ;; Also, Ediff always offers to revert obsolete buffers, whether they
3250 ;; are modified or not.
3251 (defun ediff-verify-file-buffer (&optional file-magic)
3252 ;; First check if the file has been modified since the buffer visited it.
3253 (if (verify-visited-file-modtime (current-buffer))
3254 (if (buffer-modified-p)
3255 ;; If buffer is not obsolete and is modified, offer to save
3256 (if (yes-or-no-p
3257 (format "Buffer %s has been modified. Save it in file %s? "
3258 (buffer-name)
3259 buffer-file-name))
3260 (condition-case nil
3261 (save-buffer)
3262 (error
3263 (beep)
3264 (message "Couldn't save %s" buffer-file-name)))
3265 (error "Buffer is out of sync for file %s" buffer-file-name))
3266 ;; If buffer is not obsolete and is not modified, do nothing
3267 nil)
3268 ;; If buffer is obsolete, offer to revert
3269 (if (yes-or-no-p
3270 (format "File %s was modified since visited by buffer %s. REVERT file %s? "
3271 buffer-file-name
3272 (buffer-name)
3273 buffer-file-name))
3274 (progn
3275 (if file-magic
3276 (erase-buffer))
3277 (revert-buffer t t))
3278 (error "Buffer out of sync for file %s" buffer-file-name))))
3279
3280 ;; if there is another buffer visiting the file of the merge buffer, offer to
3281 ;; save and delete the buffer; else bark
3282 (defun ediff-verify-file-merge-buffer (file)
3283 (let ((buff (if (stringp file) (find-buffer-visiting file)))
3284 warn-message)
3285 (or (null buff)
3286 (progn
3287 (setq warn-message
3288 (format "Buffer %s is visiting %s. Save and kill the buffer? "
3289 (buffer-name buff) file))
3290 (with-output-to-temp-buffer ediff-msg-buffer
3291 (princ "\n\n")
3292 (princ warn-message)
3293 (princ "\n\n"))
3294 (if (y-or-n-p
3295 (message "%s" warn-message))
3296 (with-current-buffer buff
3297 (save-buffer)
3298 (kill-buffer (current-buffer)))
3299 (error "Too dangerous to merge versions of a file visited by another buffer"))))
3300 ))
3301
3302
3303
3304 (defun ediff-filename-magic-p (file)
3305 (or (ediff-file-compressed-p file)
3306 (ediff-file-remote-p file)))
3307
3308
3309 (defun ediff-save-buffer (arg)
3310 "Safe way of saving buffers A, B, C, and the diff output.
3311 `wa' saves buffer A, `wb' saves buffer B, `wc' saves buffer C,
3312 and `wd' saves the diff output.
3313
3314 With prefix argument, `wd' saves plain diff output.
3315 Without an argument, it saves customized diff argument, if available
3316 \(and plain output, if customized output was not generated)."
3317 (interactive "P")
3318 (ediff-barf-if-not-control-buffer)
3319 (ediff-compute-custom-diffs-maybe)
3320 (ediff-with-current-buffer
3321 (cond ((memq (ediff-last-command-char) '(?a ?b ?c))
3322 (ediff-get-buffer
3323 (ediff-char-to-buftype (ediff-last-command-char))))
3324 ((eq (ediff-last-command-char) ?d)
3325 (message "Saving diff output ...")
3326 (sit-for 1) ; let the user see the message
3327 (cond ((and arg (ediff-buffer-live-p ediff-diff-buffer))
3328 ediff-diff-buffer)
3329 ((ediff-buffer-live-p ediff-custom-diff-buffer)
3330 ediff-custom-diff-buffer)
3331 ((ediff-buffer-live-p ediff-diff-buffer)
3332 ediff-diff-buffer)
3333 (t (error "Output from `diff' not found"))))
3334 )
3335 (let ((window-min-height 2))
3336 (save-buffer))))
3337
3338
3339 ;; idea suggested by Hannu Koivisto <azure@iki.fi>
3340 (defun ediff-clone-buffer-for-region-comparison (buff region-name)
3341 (let ((cloned-buff (ediff-make-cloned-buffer buff region-name))
3342 (pop-up-windows t)
3343 wind
3344 other-wind
3345 msg-buf)
3346 (ediff-with-current-buffer cloned-buff
3347 (setq ediff-temp-indirect-buffer t))
3348 (pop-to-buffer cloned-buff)
3349 (setq wind (ediff-get-visible-buffer-window cloned-buff))
3350 (select-window wind)
3351 (delete-other-windows)
3352 (or (mark) (push-mark))
3353 (ediff-activate-mark)
3354 (split-window-vertically)
3355 (ediff-select-lowest-window)
3356 (setq other-wind (selected-window))
3357 (with-temp-buffer
3358 (erase-buffer)
3359 (insert
3360 (format "\n ******* Mark a region in buffer %s (or confirm the existing one) *******\n"
3361 (buffer-name cloned-buff)))
3362 (insert
3363 (ediff-with-current-buffer buff
3364 (format "\n\t When done, type %s Use %s to abort\n "
3365 (ediff-format-bindings-of 'exit-recursive-edit)
3366 (ediff-format-bindings-of 'abort-recursive-edit))))
3367 (goto-char (point-min))
3368 (setq msg-buf (current-buffer))
3369 (set-window-buffer other-wind msg-buf)
3370 (shrink-window-if-larger-than-buffer)
3371 (if (window-live-p wind)
3372 (select-window wind))
3373 (condition-case nil
3374 (recursive-edit)
3375 (quit
3376 (ediff-kill-buffer-carefully cloned-buff)))
3377 )
3378 cloned-buff))
3379
3380
3381 (defun ediff-clone-buffer-for-window-comparison (buff wind region-name)
3382 (let ((cloned-buff (ediff-make-cloned-buffer buff region-name)))
3383 (ediff-with-current-buffer cloned-buff
3384 (setq ediff-temp-indirect-buffer t))
3385 (set-window-buffer wind cloned-buff)
3386 cloned-buff))
3387
3388 (defun ediff-buffer-type (buffer)
3389 (cond ((eq buffer ediff-buffer-A) 'A)
3390 ((eq buffer ediff-buffer-B) 'B)
3391 ((eq buffer ediff-buffer-C) 'C)
3392 ((eq buffer ediff-ancestor-buffer) 'Ancestor)
3393 (t nil)))
3394
3395 (defun ediff-clone-buffer-for-current-diff-comparison (buff reg-name)
3396 (let* ((cloned-buff (ediff-make-cloned-buffer buff reg-name))
3397 (buf-type (ediff-buffer-type buff))
3398 (reg-start (ediff-get-diff-posn buf-type 'beg))
3399 (reg-end (ediff-get-diff-posn buf-type 'end)))
3400 (ediff-with-current-buffer cloned-buff
3401 ;; set region to be the current diff region
3402 (goto-char reg-start)
3403 (set-mark reg-end)
3404 (setq ediff-temp-indirect-buffer t))
3405 cloned-buff))
3406
3407
3408
3409 (defun ediff-make-cloned-buffer (buff region-name)
3410 (ediff-make-indirect-buffer
3411 buff (generate-new-buffer-name
3412 (concat (if (stringp buff) buff (buffer-name buff)) region-name))))
3413
3414
3415 (defun ediff-make-indirect-buffer (base-buf indirect-buf-name)
3416 (if (featurep 'xemacs)
3417 (make-indirect-buffer base-buf indirect-buf-name)
3418 (make-indirect-buffer base-buf indirect-buf-name 'clone)))
3419
3420
3421 ;; This function operates only from an ediff control buffer
3422 (defun ediff-compute-custom-diffs-maybe ()
3423 (let ((buf-A-file-name (buffer-file-name ediff-buffer-A))
3424 (buf-B-file-name (buffer-file-name ediff-buffer-B))
3425 file-A file-B)
3426 (unless (and buf-A-file-name
3427 (file-exists-p buf-A-file-name)
3428 (not (ediff-file-remote-p buf-A-file-name)))
3429 (setq file-A (ediff-make-temp-file ediff-buffer-A)))
3430 (unless (and buf-B-file-name
3431 (file-exists-p buf-B-file-name)
3432 (not (ediff-file-remote-p buf-B-file-name)))
3433 (setq file-B (ediff-make-temp-file ediff-buffer-B)))
3434 (or (ediff-buffer-live-p ediff-custom-diff-buffer)
3435 (setq ediff-custom-diff-buffer
3436 (get-buffer-create
3437 (ediff-unique-buffer-name "*ediff-custom-diff" "*"))))
3438 (ediff-with-current-buffer ediff-custom-diff-buffer
3439 (setq buffer-read-only nil)
3440 (erase-buffer))
3441 (ediff-exec-process
3442 ediff-custom-diff-program ediff-custom-diff-buffer 'synchronize
3443 ediff-custom-diff-options
3444 (or file-A buf-A-file-name)
3445 (or file-B buf-B-file-name))
3446 ;; put the diff file in diff-mode, if it is available
3447 (if (fboundp 'diff-mode)
3448 (with-current-buffer ediff-custom-diff-buffer
3449 (diff-mode)))
3450 (and file-A (file-exists-p file-A) (delete-file file-A))
3451 (and file-B (file-exists-p file-B) (delete-file file-B))
3452 ))
3453
3454 (defun ediff-show-diff-output (arg)
3455 (interactive "P")
3456 (ediff-barf-if-not-control-buffer)
3457 (ediff-compute-custom-diffs-maybe)
3458 (save-excursion
3459 (ediff-skip-unsuitable-frames ' ok-unsplittable))
3460 (let ((buf (cond ((and arg (ediff-buffer-live-p ediff-diff-buffer))
3461 ediff-diff-buffer)
3462 ((ediff-buffer-live-p ediff-custom-diff-buffer)
3463 ediff-custom-diff-buffer)
3464 ((ediff-buffer-live-p ediff-diff-buffer)
3465 ediff-diff-buffer)
3466 (t
3467 (beep)
3468 (message "Output from `diff' not found")
3469 nil))))
3470 (if buf
3471 (progn
3472 (ediff-with-current-buffer buf
3473 (goto-char (point-min)))
3474 (switch-to-buffer buf)
3475 (raise-frame))))
3476 (if (frame-live-p ediff-control-frame)
3477 (ediff-reset-mouse ediff-control-frame))
3478 (if (window-live-p ediff-control-window)
3479 (select-window ediff-control-window)))
3480
3481 (declare-function ediff-regions-internal "ediff"
3482 (buffer-a beg-a end-a buffer-b beg-b end-b
3483 startup-hooks job-name word-mode setup-parameters))
3484 (defvar zmacs-regions) ;;XEmacs'ism.
3485
3486 (defun ediff-inferior-compare-regions ()
3487 "Compare regions in an active Ediff session.
3488 Like `ediff-regions-linewise' but is called from under an active Ediff session on
3489 the files that belong to that session.
3490
3491 After quitting the session invoked via this function, type C-l to the parent
3492 Ediff Control Panel to restore highlighting."
3493 (interactive)
3494 (let ((answer "")
3495 (possibilities (list ?A ?B ?C))
3496 (zmacs-regions t)
3497 use-current-diff-p
3498 begA begB endA endB bufA bufB)
3499
3500 (if (ediff-valid-difference-p ediff-current-difference)
3501 (progn
3502 (ediff-set-fine-diff-properties ediff-current-difference t)
3503 (ediff-unhighlight-diff)))
3504 (ediff-paint-background-regions 'unhighlight)
3505
3506 (cond ((ediff-merge-job)
3507 (setq bufB ediff-buffer-C)
3508 ;; ask which buffer to compare to the merge buffer
3509 (while (cond ((eq answer ?A)
3510 (setq bufA ediff-buffer-A
3511 possibilities '(?B))
3512 nil)
3513 ((eq answer ?B)
3514 (setq bufA ediff-buffer-B
3515 possibilities '(?A))
3516 nil)
3517 ((equal answer ""))
3518 (t (beep 1)
3519 (message "Valid values are A or B")
3520 (sit-for 2)
3521 t))
3522 (let ((cursor-in-echo-area t))
3523 (message
3524 "Which buffer to compare to the merge buffer (A or B)? ")
3525 (setq answer (capitalize (read-char-exclusive))))))
3526
3527 ((ediff-3way-comparison-job)
3528 ;; ask which two buffers to compare
3529 (while (cond ((memq answer possibilities)
3530 (setq possibilities (delq answer possibilities))
3531 (setq bufA
3532 (symbol-value
3533 (ediff-get-symbol-from-alist
3534 answer ediff-buffer-alist)))
3535 nil)
3536 ((equal answer ""))
3537 (t (beep 1)
3538 (message
3539 "Valid values are %s"
3540 (mapconcat 'char-to-string possibilities " or "))
3541 (sit-for 2)
3542 t))
3543 (let ((cursor-in-echo-area t))
3544 (message "Enter the 1st buffer you want to compare (%s): "
3545 (mapconcat 'char-to-string possibilities " or "))
3546 (setq answer (capitalize (read-char-exclusive)))))
3547 (setq answer "") ; silence error msg
3548 (while (cond ((memq answer possibilities)
3549 (setq possibilities (delq answer possibilities))
3550 (setq bufB
3551 (symbol-value
3552 (ediff-get-symbol-from-alist
3553 answer ediff-buffer-alist)))
3554 nil)
3555 ((equal answer ""))
3556 (t (beep 1)
3557 (message
3558 "Valid values are %s"
3559 (mapconcat 'char-to-string possibilities " or "))
3560 (sit-for 2)
3561 t))
3562 (let ((cursor-in-echo-area t))
3563 (message "Enter the 2nd buffer you want to compare (%s): "
3564 (mapconcat 'char-to-string possibilities "/"))
3565 (setq answer (capitalize (read-char-exclusive))))))
3566 (t ; 2way comparison
3567 (setq bufA ediff-buffer-A
3568 bufB ediff-buffer-B
3569 possibilities nil)))
3570
3571 (if (and (ediff-valid-difference-p ediff-current-difference)
3572 (y-or-n-p "Compare currently highlighted difference regions? "))
3573 (setq use-current-diff-p t))
3574
3575 (setq bufA (if use-current-diff-p
3576 (ediff-clone-buffer-for-current-diff-comparison
3577 bufA "-Region.A-")
3578 (ediff-clone-buffer-for-region-comparison bufA "-Region.A-")))
3579 (ediff-with-current-buffer bufA
3580 (setq begA (region-beginning)
3581 endA (region-end))
3582 (goto-char begA)
3583 (beginning-of-line)
3584 (setq begA (point))
3585 (goto-char endA)
3586 (end-of-line)
3587 (or (eobp) (forward-char)) ; include the newline char
3588 (setq endA (point)))
3589
3590 (setq bufB (if use-current-diff-p
3591 (ediff-clone-buffer-for-current-diff-comparison
3592 bufB "-Region.B-")
3593 (ediff-clone-buffer-for-region-comparison bufB "-Region.B-")))
3594 (ediff-with-current-buffer bufB
3595 (setq begB (region-beginning)
3596 endB (region-end))
3597 (goto-char begB)
3598 (beginning-of-line)
3599 (setq begB (point))
3600 (goto-char endB)
3601 (end-of-line)
3602 (or (eobp) (forward-char)) ; include the newline char
3603 (setq endB (point)))
3604
3605
3606 (ediff-regions-internal
3607 bufA begA endA bufB begB endB
3608 nil ; setup-hook
3609 (if use-current-diff-p ; job name
3610 'ediff-regions-wordwise
3611 'ediff-regions-linewise)
3612 (if use-current-diff-p ; word mode, if diffing current diff
3613 t nil)
3614 ;; setup param to pass to ediff-setup
3615 (list (cons 'ediff-split-window-function ediff-split-window-function)))
3616 ))
3617
3618
3619
3620 (defun ediff-remove-flags-from-buffer (buffer overlay)
3621 (ediff-with-current-buffer buffer
3622 (let ((inhibit-read-only t))
3623 (if (featurep 'xemacs)
3624 (ediff-overlay-put overlay 'begin-glyph nil)
3625 (ediff-overlay-put overlay 'before-string nil))
3626
3627 (if (featurep 'xemacs)
3628 (ediff-overlay-put overlay 'end-glyph nil)
3629 (ediff-overlay-put overlay 'after-string nil))
3630 )))
3631
3632
3633
3634 (defun ediff-place-flags-in-buffer (buf-type buffer ctl-buffer diff)
3635 (ediff-with-current-buffer buffer
3636 (ediff-place-flags-in-buffer1 buf-type ctl-buffer diff)))
3637
3638
3639 (defun ediff-place-flags-in-buffer1 (buf-type ctl-buffer diff-no)
3640 (let* ((curr-overl (ediff-with-current-buffer ctl-buffer
3641 (ediff-get-diff-overlay diff-no buf-type)))
3642 (before (ediff-get-diff-posn buf-type 'beg diff-no ctl-buffer))
3643 after beg-of-line flag)
3644
3645 ;; insert flag before the difference
3646 (goto-char before)
3647 (setq beg-of-line (bolp))
3648
3649 (setq flag (ediff-with-current-buffer ctl-buffer
3650 (if (eq ediff-highlighting-style 'ascii)
3651 (if beg-of-line
3652 ediff-before-flag-bol ediff-before-flag-mol))))
3653
3654 ;; insert the flag itself
3655 (if (featurep 'xemacs)
3656 (ediff-overlay-put curr-overl 'begin-glyph flag)
3657 (ediff-overlay-put curr-overl 'before-string flag))
3658
3659 ;; insert the flag after the difference
3660 ;; `after' must be set here, after the before-flag was inserted
3661 (setq after (ediff-get-diff-posn buf-type 'end diff-no ctl-buffer))
3662 (goto-char after)
3663 (setq beg-of-line (bolp))
3664
3665 (setq flag (ediff-with-current-buffer ctl-buffer
3666 (if (eq ediff-highlighting-style 'ascii)
3667 (if beg-of-line
3668 ediff-after-flag-eol ediff-after-flag-mol))))
3669
3670 ;; insert the flag itself
3671 (if (featurep 'xemacs)
3672 (ediff-overlay-put curr-overl 'end-glyph flag)
3673 (ediff-overlay-put curr-overl 'after-string flag))
3674 ))
3675
3676
3677 ;;; Some diff region tests
3678
3679 ;; t if diff region is empty.
3680 ;; In case of buffer C, t also if it is not a 3way
3681 ;; comparison job (merging jobs return t as well).
3682 (defun ediff-empty-diff-region-p (n buf-type)
3683 (if (eq buf-type 'C)
3684 (or (not ediff-3way-comparison-job)
3685 (= (ediff-get-diff-posn 'C 'beg n)
3686 (ediff-get-diff-posn 'C 'end n)))
3687 (= (ediff-get-diff-posn buf-type 'beg n)
3688 (ediff-get-diff-posn buf-type 'end n))))
3689
3690 ;; Test if diff region is white space only.
3691 ;; If 2-way job and buf-type = C, then returns t.
3692 (defun ediff-whitespace-diff-region-p (n buf-type)
3693 (or (and (eq buf-type 'C) (not ediff-3way-job))
3694 (ediff-empty-diff-region-p n buf-type)
3695 (let ((beg (ediff-get-diff-posn buf-type 'beg n))
3696 (end (ediff-get-diff-posn buf-type 'end n)))
3697 (ediff-with-current-buffer (ediff-get-buffer buf-type)
3698 (save-excursion
3699 (goto-char beg)
3700 (skip-chars-forward ediff-whitespace)
3701 (>= (point) end))))))
3702
3703
3704 (defun ediff-get-region-contents (n buf-type ctrl-buf &optional start end)
3705 (ediff-with-current-buffer
3706 (ediff-with-current-buffer ctrl-buf (ediff-get-buffer buf-type))
3707 (buffer-substring
3708 (or start (ediff-get-diff-posn buf-type 'beg n ctrl-buf))
3709 (or end (ediff-get-diff-posn buf-type 'end n ctrl-buf)))))
3710
3711 ;; Returns positions of difference sectors in the BUF-TYPE buffer.
3712 ;; BUF-TYPE should be a symbol -- `A', `B', or `C'.
3713 ;; POS is either `beg' or `end'--it specifies whether you want the position at
3714 ;; the beginning of a difference or at the end.
3715 ;;
3716 ;; The optional argument N says which difference (default:
3717 ;; `ediff-current-difference'). N is the internal difference number (1- what
3718 ;; the user sees). The optional argument CONTROL-BUF says
3719 ;; which control buffer is in effect in case it is not the current
3720 ;; buffer.
3721 (defun ediff-get-diff-posn (buf-type pos &optional n control-buf)
3722 (let (diff-overlay)
3723 (or control-buf
3724 (setq control-buf (current-buffer)))
3725
3726 (ediff-with-current-buffer control-buf
3727 (or n (setq n ediff-current-difference))
3728 (if (or (< n 0) (>= n ediff-number-of-differences))
3729 (if (> ediff-number-of-differences 0)
3730 (error ediff-BAD-DIFF-NUMBER
3731 this-command (1+ n) ediff-number-of-differences)
3732 (error ediff-NO-DIFFERENCES)))
3733 (setq diff-overlay (ediff-get-diff-overlay n buf-type)))
3734 (if (not (ediff-buffer-live-p (ediff-overlay-buffer diff-overlay)))
3735 (error ediff-KILLED-VITAL-BUFFER))
3736 (if (eq pos 'beg)
3737 (ediff-overlay-start diff-overlay)
3738 (ediff-overlay-end diff-overlay))
3739 ))
3740
3741
3742 ;; Restore highlighting to what it should be according to ediff-use-faces,
3743 ;; ediff-highlighting-style, and ediff-highlight-all-diffs variables.
3744 (defun ediff-restore-highlighting (&optional ctl-buf)
3745 (ediff-with-current-buffer (or ctl-buf (current-buffer))
3746 (if (and (ediff-has-face-support-p)
3747 ediff-use-faces
3748 ediff-highlight-all-diffs)
3749 (ediff-paint-background-regions))
3750 (ediff-select-difference ediff-current-difference)))
3751
3752
3753
3754 ;; null out difference overlays so they won't slow down future
3755 ;; editing operations
3756 ;; VEC is either a difference vector or a fine-diff vector
3757 (defun ediff-clear-diff-vector (vec-var &optional fine-diffs-also)
3758 (if (vectorp (symbol-value vec-var))
3759 (mapc (lambda (elt)
3760 (ediff-delete-overlay
3761 (ediff-get-diff-overlay-from-diff-record elt))
3762 (if fine-diffs-also
3763 (ediff-clear-fine-diff-vector elt))
3764 )
3765 (symbol-value vec-var)))
3766 ;; allow them to be garbage collected
3767 (set vec-var nil))
3768
3769
3770 \f
3771 ;;; Misc
3772
3773 ;; In Emacs, this just makes overlay. In the future, when Emacs will start
3774 ;; supporting sticky overlays, this function will make a sticky overlay.
3775 ;; BEG and END are expressions telling where overlay starts.
3776 ;; If they are numbers or buffers, then all is well. Otherwise, they must
3777 ;; be expressions to be evaluated in buffer BUF in order to get the overlay
3778 ;; bounds.
3779 ;; If BUFF is not a live buffer, then return nil; otherwise, return the
3780 ;; newly created overlay.
3781 (defun ediff-make-bullet-proof-overlay (beg end buff)
3782 (if (ediff-buffer-live-p buff)
3783 (let (overl)
3784 (ediff-with-current-buffer buff
3785 (or (number-or-marker-p beg)
3786 (setq beg (eval beg)))
3787 (or (number-or-marker-p end)
3788 (setq end (eval end)))
3789 (setq overl
3790 (if (featurep 'xemacs)
3791 (make-extent beg end buff)
3792 ;; advance front and rear of the overlay
3793 (make-overlay beg end buff nil 'rear-advance)))
3794
3795 ;; never detach
3796 (ediff-overlay-put
3797 overl (if (featurep 'emacs) 'evaporate 'detachable) nil)
3798 ;; make overlay open-ended
3799 ;; In emacs, it is made open ended at creation time
3800 (when (featurep 'xemacs)
3801 (ediff-overlay-put overl 'start-open nil)
3802 (ediff-overlay-put overl 'end-open nil))
3803 (ediff-overlay-put overl 'ediff-diff-num 0)
3804 overl))))
3805
3806
3807 (defun ediff-make-current-diff-overlay (type)
3808 (if (ediff-has-face-support-p)
3809 (let ((overlay (ediff-get-symbol-from-alist
3810 type ediff-current-diff-overlay-alist))
3811 (buffer (ediff-get-buffer type))
3812 (face (ediff-get-symbol-from-alist
3813 type ediff-current-diff-face-alist)))
3814 (set overlay
3815 (ediff-make-bullet-proof-overlay (point-max) (point-max) buffer))
3816 (ediff-set-overlay-face (symbol-value overlay) face)
3817 (ediff-overlay-put (symbol-value overlay) 'ediff ediff-control-buffer))
3818 ))
3819
3820
3821 ;; Like other-buffer, but prefers visible buffers and ignores temporary or
3822 ;; other insignificant buffers (those beginning with "^[ *]").
3823 ;; Gets one arg--buffer name or a list of buffer names (it won't return
3824 ;; these buffers).
3825 ;; EXCL-BUFF-LIST is an exclusion list.
3826 (defun ediff-other-buffer (excl-buff-lst)
3827 (or (listp excl-buff-lst) (setq excl-buff-lst (list excl-buff-lst)))
3828 (let* ((all-buffers (nconc (ediff-get-selected-buffers) (buffer-list)))
3829 ;; we compute this the second time because we need to do memq on it
3830 ;; later, and nconc above will break it. Either this or use slow
3831 ;; append instead of nconc
3832 (selected-buffers (ediff-get-selected-buffers))
3833 (preferred-buffer (car all-buffers))
3834 visible-dired-buffers
3835 (excl-buff-name-list
3836 (mapcar
3837 (lambda (b) (cond ((stringp b) b)
3838 ((bufferp b) (buffer-name b))))
3839 excl-buff-lst))
3840 ;; if at least one buffer on the exclusion list is dired, then force
3841 ;; all others to be dired. This is because this means that the user
3842 ;; has already chosen a dired buffer before
3843 (use-dired-major-mode
3844 (cond ((null (ediff-buffer-live-p (car excl-buff-lst))) 'unknown)
3845 ((eq (ediff-with-current-buffer (car excl-buff-lst) major-mode)
3846 'dired-mode)
3847 'yes)
3848 (t 'no)))
3849 ;; significant-buffers must be visible and not belong
3850 ;; to the exclusion list `buff-list'
3851 ;; We also exclude temporary buffers, but keep mail and gnus buffers
3852 ;; Furthermore, we exclude dired buffers, unless they are the only
3853 ;; ones visible (and there are at least two of them).
3854 ;; Also, any visible window not on the exclusion list that is first in
3855 ;; the buffer list is chosen regardless. (This is because the user
3856 ;; clicked on it or did something to distinguish it).
3857 (significant-buffers
3858 (mapcar
3859 (lambda (x)
3860 (cond ((member (buffer-name x) excl-buff-name-list) nil)
3861 ((memq x selected-buffers) x)
3862 ((not (ediff-get-visible-buffer-window x)) nil)
3863 ((eq x preferred-buffer) x)
3864 ;; if prev selected buffer is dired, look only at
3865 ;; dired.
3866 ((eq use-dired-major-mode 'yes)
3867 (if (eq (ediff-with-current-buffer x major-mode)
3868 'dired-mode)
3869 x nil))
3870 ((eq (ediff-with-current-buffer x major-mode)
3871 'dired-mode)
3872 (if (null use-dired-major-mode)
3873 ;; don't know if we must enforce dired.
3874 ;; Remember this buffer in case
3875 ;; dired buffs are the only ones visible.
3876 (setq visible-dired-buffers
3877 (cons x visible-dired-buffers)))
3878 ;; skip, if dired is not forced
3879 nil)
3880 ((memq (ediff-with-current-buffer x major-mode)
3881 '(rmail-mode
3882 vm-mode
3883 gnus-article-mode
3884 mh-show-mode))
3885 x)
3886 ((string-match "^[ *]" (buffer-name x)) nil)
3887 ((string= "*scratch*" (buffer-name x)) nil)
3888 (t x)))
3889 all-buffers))
3890 (clean-significant-buffers (delq nil significant-buffers))
3891 less-significant-buffers)
3892
3893 (if (and (null clean-significant-buffers)
3894 (> (length visible-dired-buffers) 0))
3895 (setq clean-significant-buffers visible-dired-buffers))
3896
3897 (cond (clean-significant-buffers (car clean-significant-buffers))
3898 ;; try also buffers that are not displayed in windows
3899 ((setq less-significant-buffers
3900 (delq nil
3901 (mapcar
3902 (lambda (x)
3903 (cond ((member (buffer-name x) excl-buff-name-list)
3904 nil)
3905 ((eq use-dired-major-mode 'yes)
3906 (if (eq (ediff-with-current-buffer
3907 x major-mode)
3908 'dired-mode)
3909 x nil))
3910 ((eq (ediff-with-current-buffer x major-mode)
3911 'dired-mode)
3912 nil)
3913 ((string-match "^[ *]" (buffer-name x)) nil)
3914 ((string= "*scratch*" (buffer-name x)) nil)
3915 (t x)))
3916 all-buffers)))
3917 (car less-significant-buffers))
3918 (t "*scratch*"))
3919 ))
3920
3921
3922 ;; If current buffer is a Buffer-menu buffer, then take the selected buffers
3923 ;; and append the buffer at the cursor to the end.
3924 ;; This list would be the preferred list.
3925 (defun ediff-get-selected-buffers ()
3926 (if (eq major-mode 'Buffer-menu-mode)
3927 (let ((lis (condition-case nil
3928 (list (Buffer-menu-buffer t))
3929 (error))
3930 ))
3931 (save-excursion
3932 (goto-char (point-max))
3933 (while (search-backward "\n>" nil t)
3934 (forward-char 1)
3935 (setq lis (cons (Buffer-menu-buffer t) lis)))
3936 lis))
3937 ))
3938
3939 ;; Construct a unique buffer name.
3940 ;; The first one tried is prefixsuffix, then prefix<2>suffix,
3941 ;; prefix<3>suffix, etc.
3942 (defun ediff-unique-buffer-name (prefix suffix)
3943 (if (null (get-buffer (concat prefix suffix)))
3944 (concat prefix suffix)
3945 (let ((n 2))
3946 (while (get-buffer (format "%s<%d>%s" prefix n suffix))
3947 (setq n (1+ n)))
3948 (format "%s<%d>%s" prefix n suffix))))
3949
3950 (defvar reporter-prompt-for-summary-p)
3951
3952 (defun ediff-submit-report ()
3953 "Submit bug report on Ediff."
3954 (interactive)
3955 (ediff-barf-if-not-control-buffer)
3956 (defvar ediff-device-type)
3957 (defvar ediff-buffer-name)
3958 (let ((reporter-prompt-for-summary-p t)
3959 (ctl-buf ediff-control-buffer)
3960 (ediff-device-type (ediff-device-type))
3961 varlist salutation ediff-buffer-name)
3962 (setq varlist '(ediff-diff-program ediff-diff-options
3963 ediff-diff3-program ediff-diff3-options
3964 ediff-patch-program ediff-patch-options
3965 ediff-shell
3966 ediff-use-faces
3967 ediff-auto-refine ediff-highlighting-style
3968 ediff-buffer-A ediff-buffer-B ediff-control-buffer
3969 ediff-forward-word-function
3970 ediff-control-frame
3971 ediff-control-frame-parameters
3972 ediff-control-frame-position-function
3973 ediff-prefer-iconified-control-frame
3974 ediff-window-setup-function
3975 ediff-split-window-function
3976 ediff-job-name
3977 ediff-word-mode
3978 ediff-buffer-name
3979 ediff-device-type
3980 ))
3981 (setq salutation "
3982 Congratulations! You may have unearthed a bug in Ediff!
3983
3984 Please make a concise and accurate summary of what happened
3985 and mail it to the address above.
3986 -----------------------------------------------------------
3987 ")
3988
3989 (ediff-skip-unsuitable-frames)
3990 (ediff-reset-mouse)
3991
3992 (switch-to-buffer ediff-msg-buffer)
3993 (erase-buffer)
3994 (delete-other-windows)
3995 (insert "
3996 Please read this first:
3997 ----------------------
3998
3999 Some \"bugs\" may actually be no bugs at all. For instance, if you are
4000 reporting that certain difference regions are not matched as you think they
4001 should, this is most likely due to the way Unix diff program decides what
4002 constitutes a difference region. Ediff is an Emacs interface to diff, and
4003 it has nothing to do with those decisions---it only takes the output from
4004 diff and presents it in a way that is better suited for human browsing and
4005 manipulation.
4006
4007 If Emacs happens to dump core, this is NOT an Ediff problem---it is
4008 an Emacs bug. Report this to Emacs maintainers.
4009
4010 Another popular topic for reports is compilation messages. Because Ediff
4011 interfaces to several other packages and runs under Emacs and XEmacs,
4012 byte-compilation may produce output like this:
4013
4014 While compiling toplevel forms in file ediff.el:
4015 ** reference to free variable pm-color-alist
4016 ........................
4017 While compiling the end of the data:
4018 ** The following functions are not known to be defined:
4019 xxx, yyy
4020 ........................
4021
4022 These are NOT errors, but inevitable warnings, which ought to be ignored.
4023
4024 Please do not report those and similar things. However, comments and
4025 suggestions are always welcome.
4026
4027 Mail anyway? (y or n) ")
4028
4029 (if (y-or-n-p "Mail anyway? ")
4030 (progn
4031 (if (ediff-buffer-live-p ctl-buf)
4032 (set-buffer ctl-buf))
4033 (setq ediff-buffer-name (buffer-name))
4034 (require 'reporter)
4035 (reporter-submit-bug-report "kifer@cs.stonybrook.edu, bug-gnu-emacs@gnu.org"
4036 (ediff-version)
4037 varlist
4038 nil
4039 'delete-other-windows
4040 salutation))
4041 (bury-buffer)
4042 (beep 1)(message "Bug report aborted")
4043 (if (ediff-buffer-live-p ctl-buf)
4044 (ediff-with-current-buffer ctl-buf
4045 (ediff-recenter 'no-rehighlight))))
4046 ))
4047
4048
4049 ;; Find an appropriate syntax table for everyone to use
4050 ;; If buffer B is not fundamental or text mode, use its syntax table
4051 ;; Otherwise, use buffer B's.
4052 ;; The syntax mode is used in ediff-forward-word-function
4053 ;; The important thing is that every buffer should use the same syntax table
4054 ;; during the refinement operation
4055 (defun ediff-choose-syntax-table ()
4056 (setq ediff-syntax-table
4057 (ediff-with-current-buffer ediff-buffer-A
4058 (if (not (memq major-mode
4059 '(fundamental-mode text-mode indented-text-mode)))
4060 (syntax-table))))
4061 (if (not ediff-syntax-table)
4062 (setq ediff-syntax-table
4063 (ediff-with-current-buffer ediff-buffer-B
4064 (syntax-table))))
4065 )
4066
4067
4068 (defun ediff-deactivate-mark ()
4069 (if (featurep 'xemacs)
4070 (zmacs-deactivate-region)
4071 (deactivate-mark)))
4072
4073 (defun ediff-activate-mark ()
4074 (if (featurep 'xemacs)
4075 (zmacs-activate-region)
4076 (make-local-variable 'transient-mark-mode)
4077 (setq mark-active t transient-mark-mode t)))
4078
4079 (defun ediff-nuke-selective-display ()
4080 (if (featurep 'xemacs)
4081 (nuke-selective-display)
4082 (save-excursion
4083 (save-restriction
4084 (widen)
4085 (goto-char (point-min))
4086 (let ((mod-p (buffer-modified-p))
4087 buffer-read-only end)
4088 (and (eq t selective-display)
4089 (while (search-forward "\^M" nil t)
4090 (end-of-line)
4091 (setq end (point))
4092 (beginning-of-line)
4093 (while (search-forward "\^M" end t)
4094 (delete-char -1)
4095 (insert "\^J"))))
4096 (set-buffer-modified-p mod-p)
4097 (setq selective-display nil))))))
4098
4099
4100 ;; The next two are modified versions from emerge.el.
4101 ;; VARS must be a list of symbols
4102 ;; ediff-save-variables returns an association list: ((var . val) ...)
4103 (defsubst ediff-save-variables (vars)
4104 (mapcar (lambda (v) (cons v (symbol-value v)))
4105 vars))
4106 ;; VARS is a list of variable symbols.
4107 (defun ediff-restore-variables (vars assoc-list)
4108 (while vars
4109 (set (car vars) (cdr (assoc (car vars) assoc-list)))
4110 (setq vars (cdr vars))))
4111
4112 (defun ediff-change-saved-variable (var value buf-type)
4113 (let* ((assoc-list
4114 (symbol-value (ediff-get-symbol-from-alist
4115 buf-type
4116 ediff-buffer-values-orig-alist)))
4117 (assoc-elt (assoc var assoc-list)))
4118 (if assoc-elt
4119 (setcdr assoc-elt value))))
4120
4121
4122 ;; must execute in control buf
4123 (defun ediff-save-protected-variables ()
4124 (setq ediff-buffer-values-orig-A
4125 (ediff-with-current-buffer ediff-buffer-A
4126 (ediff-save-variables ediff-protected-variables)))
4127 (setq ediff-buffer-values-orig-B
4128 (ediff-with-current-buffer ediff-buffer-B
4129 (ediff-save-variables ediff-protected-variables)))
4130 (if ediff-3way-comparison-job
4131 (setq ediff-buffer-values-orig-C
4132 (ediff-with-current-buffer ediff-buffer-C
4133 (ediff-save-variables ediff-protected-variables))))
4134 (if (ediff-buffer-live-p ediff-ancestor-buffer)
4135 (setq ediff-buffer-values-orig-Ancestor
4136 (ediff-with-current-buffer ediff-ancestor-buffer
4137 (ediff-save-variables ediff-protected-variables)))))
4138
4139 ;; must execute in control buf
4140 (defun ediff-restore-protected-variables ()
4141 (let ((values-A ediff-buffer-values-orig-A)
4142 (values-B ediff-buffer-values-orig-B)
4143 (values-C ediff-buffer-values-orig-C)
4144 (values-Ancestor ediff-buffer-values-orig-Ancestor))
4145 (ediff-with-current-buffer ediff-buffer-A
4146 (ediff-restore-variables ediff-protected-variables values-A))
4147 (ediff-with-current-buffer ediff-buffer-B
4148 (ediff-restore-variables ediff-protected-variables values-B))
4149 (if ediff-3way-comparison-job
4150 (ediff-with-current-buffer ediff-buffer-C
4151 (ediff-restore-variables ediff-protected-variables values-C)))
4152 (if (ediff-buffer-live-p ediff-ancestor-buffer)
4153 (ediff-with-current-buffer ediff-ancestor-buffer
4154 (ediff-restore-variables ediff-protected-variables values-Ancestor)))
4155 ))
4156
4157 ;; save BUFFER in FILE. used in hooks.
4158 (defun ediff-save-buffer-in-file (buffer file)
4159 (ediff-with-current-buffer buffer
4160 (write-file file)))
4161
4162
4163 ;;; Debug
4164
4165 (ediff-defvar-local ediff-command-begin-time '(0 0 0) "")
4166
4167 ;; calculate time used by command
4168 (defun ediff-calc-command-time ()
4169 (or (equal ediff-command-begin-time '(0 0 0))
4170 (message "Elapsed time: %g second(s)"
4171 (float-time (time-since ediff-command-begin-time)))))
4172
4173 (defsubst ediff-save-time ()
4174 (setq ediff-command-begin-time (current-time)))
4175
4176 (defun ediff-profile ()
4177 "Toggle profiling Ediff commands."
4178 (interactive)
4179 (ediff-barf-if-not-control-buffer)
4180
4181 (if (featurep 'xemacs)
4182 (make-local-hook 'post-command-hook))
4183
4184 (let ((pre-hook 'pre-command-hook)
4185 (post-hook 'post-command-hook))
4186 (if (not (equal ediff-command-begin-time '(0 0 0)))
4187 (progn (remove-hook pre-hook 'ediff-save-time)
4188 (remove-hook post-hook 'ediff-calc-command-time)
4189 (setq ediff-command-begin-time '(0 0 0))
4190 (message "Ediff profiling disabled"))
4191 (add-hook pre-hook 'ediff-save-time t 'local)
4192 (add-hook post-hook 'ediff-calc-command-time nil 'local)
4193 (message "Ediff profiling enabled"))))
4194
4195 (defun ediff-print-diff-vector (diff-vector-var)
4196 (princ (format "\n*** %S ***\n" diff-vector-var))
4197 (mapcar (lambda (overl-vec)
4198 (princ
4199 (format
4200 "Diff %d: \tOverlay: %S
4201 \t\tFine diffs: %s
4202 \t\tNo-fine-diff-flag: %S
4203 \t\tState-of-diff:\t %S
4204 \t\tState-of-merge:\t %S
4205 "
4206 (1+ (ediff-overlay-get (aref overl-vec 0) 'ediff-diff-num))
4207 (aref overl-vec 0)
4208 ;; fine-diff-vector
4209 (if (= (length (aref overl-vec 1)) 0)
4210 "none\n"
4211 (mapconcat 'prin1-to-string
4212 (aref overl-vec 1) "\n\t\t\t "))
4213 (aref overl-vec 2) ; no fine diff flag
4214 (aref overl-vec 3) ; state-of-diff
4215 (aref overl-vec 4) ; state-of-merge
4216 )))
4217 (eval diff-vector-var)))
4218
4219
4220
4221 (defun ediff-debug-info ()
4222 (interactive)
4223 (ediff-barf-if-not-control-buffer)
4224 (with-output-to-temp-buffer ediff-debug-buffer
4225 (ediff-with-current-buffer standard-output
4226 (fundamental-mode))
4227 (princ (format "\nCtl buffer: %S\n" ediff-control-buffer))
4228 (ediff-print-diff-vector (intern "ediff-difference-vector-A"))
4229 (ediff-print-diff-vector (intern "ediff-difference-vector-B"))
4230 (ediff-print-diff-vector (intern "ediff-difference-vector-C"))
4231 (ediff-print-diff-vector (intern "ediff-difference-vector-Ancestor"))
4232 ))
4233
4234
4235 ;;; General utilities
4236
4237 ;; this uses comparison-func to decide who is a member
4238 (defun ediff-member (elt lis comparison-func)
4239 (while (and lis (not (funcall comparison-func (car lis) elt)))
4240 (setq lis (cdr lis)))
4241 lis)
4242
4243 ;; Make a readable representation of the invocation sequence for FUNC-DEF.
4244 ;; It would either be a key or M-x something.
4245 (defun ediff-format-bindings-of (func-def)
4246 (let ((desc (car (where-is-internal func-def
4247 overriding-local-map
4248 nil nil))))
4249 (if desc
4250 (key-description desc)
4251 (format "M-x %s" func-def))))
4252
4253 ;; this uses comparison-func to decide who is a member, and this determines how
4254 ;; intersection looks like
4255 (defun ediff-intersection (lis1 lis2 comparison-func)
4256 (let ((result (list 'a)))
4257 (while lis1
4258 (if (ediff-member (car lis1) lis2 comparison-func)
4259 (nconc result (list (car lis1))))
4260 (setq lis1 (cdr lis1)))
4261 (cdr result)))
4262
4263
4264 ;; eliminates duplicates using comparison-func
4265 (defun ediff-union (lis1 lis2 comparison-func)
4266 (let ((result (list 'a)))
4267 (while lis1
4268 (or (ediff-member (car lis1) (cdr result) comparison-func)
4269 (nconc result (list (car lis1))))
4270 (setq lis1 (cdr lis1)))
4271 (while lis2
4272 (or (ediff-member (car lis2) (cdr result) comparison-func)
4273 (nconc result (list (car lis2))))
4274 (setq lis2 (cdr lis2)))
4275 (cdr result)))
4276
4277 ;; eliminates duplicates using comparison-func
4278 (defun ediff-set-difference (lis1 lis2 comparison-func)
4279 (let ((result (list 'a)))
4280 (while lis1
4281 (or (ediff-member (car lis1) (cdr result) comparison-func)
4282 (ediff-member (car lis1) lis2 comparison-func)
4283 (nconc result (list (car lis1))))
4284 (setq lis1 (cdr lis1)))
4285 (cdr result)))
4286
4287 (defun ediff-add-to-history (history-var newelt)
4288 (if (fboundp 'add-to-history)
4289 (add-to-history history-var newelt)
4290 (set history-var (cons newelt (symbol-value history-var)))))
4291
4292 (defalias 'ediff-copy-list 'copy-sequence)
4293
4294
4295 ;; don't report error if version control package wasn't found
4296 ;;(ediff-load-version-control 'silent)
4297
4298 (run-hooks 'ediff-load-hook)
4299
4300
4301 ;; Local Variables:
4302 ;; eval: (put 'ediff-defvar-local 'lisp-indent-hook 'defun)
4303 ;; eval: (put 'ediff-with-current-buffer 'lisp-indent-hook 1)
4304 ;; eval: (put 'ediff-with-current-buffer 'edebug-form-spec '(form body))
4305 ;; End:
4306
4307 ;;; ediff-util.el ends here