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