annotate lisp/ediff/ediff-util.el @ 80:1ce6082ce73f r20-0b90

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