annotate lisp/ediff/ediff.el @ 12:bcdc7deadc19 r19-15b7

Import from CVS: tag r19-15b7
author cvs
date Mon, 13 Aug 2007 08:48:16 +0200
parents ac2d302a0011
children 9ee227acff29
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.el --- a comprehensive visual interface to diff & patch
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 ;; Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc.
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 ;; Created: February 2, 1994
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 ;; Keywords: comparing, merging, patching, version control.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8
12
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
9 (defconst ediff-version "2.63" "The current version of Ediff")
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
10 (defconst ediff-date "September 12, 1996" "Date of last update")
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ;; This file is part of GNU Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 ;; GNU Emacs is free software; you can redistribute it and/or modify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ;; it under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 ;; the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 ;; any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 ;; GNU Emacs is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 ;; GNU General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 ;; You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 ;; along with GNU Emacs; see the file COPYING. If not, write to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 ;; Boston, MA 02111-1307, USA.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 ;;; Commentary:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 ;; Never read that diff output again!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 ;; Apply patch interactively!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 ;; Merge with ease!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 ;; This package provides a convenient way of simultaneous browsing through
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 ;; the differences between a pair (or a triple) of files or buffers. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 ;; files being compared, file-A, file-B, and file-C (if applicable) are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 ;; shown in separate windows (side by side, one above the another, or in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 ;; separate frames), and the differences are highlighted as you step
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 ;; through them. You can also copy difference regions from one buffer to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 ;; another (and recover old differences if you change your mind).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 ;; Ediff also supports merging operations on files and buffers, including
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 ;; merging using ancestor versions. Both comparison and merging operations can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 ;; be performed on directories, i.e., by pairwise comparison of files in those
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 ;; directories.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 ;; In addition, Ediff can apply a patch to a file and then let you step
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 ;; though both files, the patched and the original one, simultaneously,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 ;; difference-by-difference. You can even apply a patch right out of a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 ;; mail buffer, i.e., patches received by mail don't even have to be saved.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 ;; Since Ediff lets you copy differences between buffers, you can, in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 ;; effect, apply patches selectively (i.e., you can copy a difference
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 ;; region from file_orig to file, thereby undoing any particular patch that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 ;; you don't like).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 ;; Ediff is aware of version control, which lets the user compare
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 ;; files with their older versions. Ediff can also work with remote and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 ;; compressed files. Details are given below.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 ;; Finally, Ediff supports directory-level comparison, merging and patching.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 ;; See the on-line manual for details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 ;; This package builds upon the ideas borrowed from emerge.el and several
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 ;; Ediff's functions are adaptations from emerge.el. Much of the functionality
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 ;; Ediff provides is also influenced by emerge.el.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 ;; The present version of Ediff supersedes Emerge. It provides a superior user
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 ;; interface and has numerous major features not found in Emerge. In
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 ;; particular, it can do patching, and 2-way and 3-way file comparison,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 ;; merging, and directory operations.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 ;;; Bugs:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 ;; 1. The undo command doesn't restore deleted regions well. That is, if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 ;; you delete all characters in a difference region and then invoke
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 ;; `undo', the reinstated text will most likely be inserted outside of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 ;; what Ediff thinks is the current difference region. (This problem
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 ;; doesn't seem to exist with XEmacs.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 ;; If at any point you feel that difference regions are no longer correct,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 ;; you can hit '!' to recompute the differences.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 ;; 2. On a monochrome display, the repertoire of faces with which to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 ;; highlight fine differences is limited. By default, Ediff is using
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 ;; underlining. However, if the region is already underlined by some other
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 ;; overlays, there is no simple way to temporarily remove that residual
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 ;; underlining. This problem occurs when a buffer is highlighted with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 ;; hilit19.el or font-lock.el packages. If this residual highlighting gets
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 ;; in the way, you can do the following. Both font-lock.el and hilit19.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 ;; provide commands for unhighlighting buffers. You can either place these
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 ;; commands in `ediff-prepare-buffer-hook' (which will unhighlight every
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 ;; buffer used by Ediff) or you can execute them interactively, at any time
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 ;; and on any buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 ;;; Acknowledgements:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 ;; Ediff was inspired by Dale R. Worley's <drw@math.mit.edu> emerge.el.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 ;; Ediff would not have been possible without the help and encouragement of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 ;; its many users. See Ediff on-line Info for the full list of those who
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 ;; helped. Improved defaults in Ediff file-name reading commands.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 ;;; Code:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 (require 'ediff-init)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 ;; ediff-mult is always required, because of the registry stuff
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 (require 'ediff-mult)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112
12
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
113 (and noninteractive
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
114 (eval-when-compile
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
115 (let ((load-path (cons (expand-file-name ".") load-path)))
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
116 (load-library "dired")
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
117 (load-file "ediff-ptch.el")
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
118 (load-file "ediff-vers.el")
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
119 (load "pcl-cvs" 'noerror))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 (defvar ediff-use-last-dir nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 "*If t, Ediff uses previous directory as default when reading file name.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 (defvar ediff-last-dir-A nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 "Last directory used by an Ediff command for file-A.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 (defvar ediff-last-dir-B nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 "Last directory used by an Ediff command for file-B.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 (defvar ediff-last-dir-C nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 "Last directory used by an Ediff command for file-C.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 (defvar ediff-last-dir-ancestor nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 "Last directory used by an Ediff command for the ancestor file.")
12
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
132 (defvar ediff-last-merge-autostore-dir
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
133 "Last directory used by an Ediff command as the output directory for merge.")
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 ;; Some defvars to reduce the number of compiler warnings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 (defvar cvs-cookie-handle)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 (defvar ediff-last-dir-patch)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 (defvar ediff-patch-default-directory)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 ;; end of compiler pacifier
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 ;; Used as a startup hook to set `_orig' patch file read-only.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 (defun ediff-set-read-only-in-buf-A ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 (ediff-eval-in-buffer ediff-buffer-A
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 (toggle-read-only 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 ;; Return a plausible default for ediff's first file:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 ;; In dired, return the file name under the point, unless it is a directory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 ;; If the buffer has a file name, return that file name.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 (defun ediff-get-default-file-name ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 (cond ((eq major-mode 'dired-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 (let ((f (dired-get-filename nil 'no-error)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 (if (and (stringp f) (not (file-directory-p f)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 f)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 ((buffer-file-name (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 (file-name-nondirectory (buffer-file-name (current-buffer))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 ;;; Compare files/buffers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 (defun ediff-files (file-A file-B &optional startup-hooks)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 "Run Ediff on a pair of files, FILE-A and FILE-B."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 (interactive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 (let ((dir-A (if ediff-use-last-dir
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 ediff-last-dir-A
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 default-directory))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 dir-B f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 (list (setq f (ediff-read-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 "File A to compare" dir-A
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 (ediff-get-default-file-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 (ediff-read-file-name "File B to compare"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 (setq dir-B
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 (if ediff-use-last-dir
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 ediff-last-dir-B
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 (file-name-directory f)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 (setq file-name-history
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 (cons (ediff-abbreviate-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 (expand-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 (file-name-nondirectory f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 dir-B))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 file-name-history))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 )))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 (ediff-files-internal file-A
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 (if (file-directory-p file-B)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 (expand-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 (file-name-nondirectory file-A) file-B)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 file-B)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 nil ; file-C
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 startup-hooks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 'ediff-files))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 (defun ediff-files3 (file-A file-B file-C &optional startup-hooks)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 "Run Ediff on three files, FILE-A, FILE-B, and FILE-C."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 (interactive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 (let ((dir-A (if ediff-use-last-dir
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 ediff-last-dir-A
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 default-directory))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 dir-B dir-C f ff)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 (list (setq f (ediff-read-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 "File A to compare" dir-A
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 (ediff-get-default-file-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 (setq ff (ediff-read-file-name "File B to compare"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 (setq dir-B
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 (if ediff-use-last-dir
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 ediff-last-dir-B
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 (file-name-directory f)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 (setq file-name-history
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 (cons
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 (ediff-abbreviate-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 (expand-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 (file-name-nondirectory f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 dir-B))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 file-name-history))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 f)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 (ediff-read-file-name "File C to compare"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 (setq dir-C (if ediff-use-last-dir
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 ediff-last-dir-C
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 (file-name-directory ff)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 (setq file-name-history
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 (cons (ediff-abbreviate-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 (expand-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 (file-name-nondirectory ff)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 dir-C))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 file-name-history))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 ff))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 )))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 (ediff-files-internal file-A
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 (if (file-directory-p file-B)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 (expand-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 (file-name-nondirectory file-A) file-B)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 file-B)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 (if (file-directory-p file-C)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 (expand-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 (file-name-nondirectory file-A) file-C)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 file-C)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 startup-hooks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 'ediff-files3))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 (defalias 'ediff3 'ediff-files3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 ;; Visit FILE and arrange its buffer to Ediff's liking.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 ;; FILE is actually a variable symbol that must contain a true file name.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 ;; BUFFER-NAME is a variable symbol, which will get the buffer object into
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 ;; which FILE is read.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 ;; LAST-DIR is the directory variable symbol where FILE's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 ;; directory name should be returned. HOOKS-VAR is a variable symbol that will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 ;; be assigned the hook to be executed after `ediff-startup' is finished.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 ;; `ediff-find-file' arranges that the temp files it might create will be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 ;; deleted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 (defun ediff-find-file (file-var buffer-name &optional last-dir hooks-var)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 (let* ((file (symbol-value file-var))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 (file-magic (find-file-name-handler file 'find-file-noselect))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 (temp-file-name-prefix (file-name-nondirectory file)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 (cond ((not (file-readable-p file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 (error "File `%s' does not exist or is not readable" file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 ((file-directory-p file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 (error "File `%s' is a directory" file)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 ;; some of the commands, below, require full file name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 (setq file (expand-file-name file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 ;; Record the directory of the file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 (if last-dir
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 (set last-dir (expand-file-name (file-name-directory file))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 ;; Setup the buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 (set buffer-name (find-file-noselect file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 (ediff-eval-in-buffer (symbol-value buffer-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 (widen) ; Make sure the entire file is seen
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 (cond (file-magic ;; file has handler, such as jka-compr-handler or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 ;; ange-ftp-hook-function--arrange for temp file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 (ediff-verify-file-buffer 'magic)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 (setq file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 (ediff-make-temp-file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 (current-buffer) temp-file-name-prefix))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 (set hooks-var (cons (` (lambda () (delete-file (, file))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 (symbol-value hooks-var))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 ;; file processed via auto-mode-alist, a la uncompress.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 ((not (equal (file-truename file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 (file-truename (buffer-file-name))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 (setq file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 (ediff-make-temp-file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 (current-buffer) temp-file-name-prefix))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 (set hooks-var (cons (` (lambda () (delete-file (, file))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 (symbol-value hooks-var))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 (t ;; plain file---just check that the file matches the buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 (ediff-verify-file-buffer))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 (set file-var file)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 (defun ediff-files-internal (file-A file-B file-C startup-hooks job-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 (let (buf-A buf-B buf-C)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 (message "Reading file %s ... " file-A)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 ;;(sit-for 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 (ediff-find-file 'file-A 'buf-A 'ediff-last-dir-A 'startup-hooks)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 (message "Reading file %s ... " file-B)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 ;;(sit-for 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 (ediff-find-file 'file-B 'buf-B 'ediff-last-dir-B 'startup-hooks)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 (if (stringp file-C)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 (message "Reading file %s ... " file-C)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 ;;(sit-for 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 (ediff-find-file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 'file-C 'buf-C
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 (if (eq job-name 'ediff-merge-files-with-ancestor)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 'ediff-last-dir-ancestor 'ediff-last-dir-C)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 'startup-hooks)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 (ediff-setup buf-A file-A
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 buf-B file-B
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 buf-C file-C
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 startup-hooks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 (list (cons 'ediff-job-name job-name)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 (defalias 'ediff 'ediff-files)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 (defun ediff-buffers (buffer-A buffer-B &optional startup-hooks job-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 "Run Ediff on a pair of buffers, BUFFER-A and BUFFER-B."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 (interactive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 (let (bf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 (list (setq bf (read-buffer "Buffer A to compare: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 (ediff-other-buffer "") t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 (read-buffer "Buffer B to compare: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 ;; realign buffers so that two visible bufs will be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 ;; at the top
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 (save-window-excursion (other-window 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 (ediff-other-buffer bf))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 t))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 (or job-name (setq job-name 'ediff-buffers))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 (ediff-buffers-internal buffer-A buffer-B nil startup-hooks job-name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 (defalias 'ebuffers 'ediff-buffers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 (defun ediff-buffers3 (buffer-A buffer-B buffer-C
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 &optional startup-hooks job-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 "Run Ediff on three buffers, BUFFER-A, BUFFER-B, and BUFFER-C."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 (interactive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 (let (bf bff)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 (list (setq bf (read-buffer "Buffer A to compare: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 (ediff-other-buffer "") t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 (setq bff (read-buffer "Buffer B to compare: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 ;; realign buffers so that two visible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 ;; bufs will be at the top
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 (save-window-excursion (other-window 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 (ediff-other-buffer bf))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 (read-buffer "Buffer C to compare: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 ;; realign buffers so that three visible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 ;; bufs will be at the top
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 (save-window-excursion (other-window 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 (ediff-other-buffer (list bf bff)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 )))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 (or job-name (setq job-name 'ediff-buffers3))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 (ediff-buffers-internal buffer-A buffer-B buffer-C startup-hooks job-name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 (defalias 'ebuffers3 'ediff-buffers3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 (defun ediff-buffers-internal (buf-A buf-B buf-C startup-hooks job-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 (let* ((buf-A-file-name (buffer-file-name (get-buffer buf-A)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 (buf-B-file-name (buffer-file-name (get-buffer buf-B)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 (buf-C-is-alive (ediff-buffer-live-p buf-C))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 (buf-C-file-name (if buf-C-is-alive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 (buffer-file-name (get-buffer buf-B))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 file-A file-B file-C)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 (if (not (ediff-buffer-live-p buf-A))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 (error "Buffer %S doesn't exist" buf-A))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 (if (not (ediff-buffer-live-p buf-B))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 (error "Buffer %S doesn't exist" buf-B))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 (let ((ediff-job-name job-name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 (if (and ediff-3way-comparison-job
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 (not buf-C-is-alive))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 (error "Buffer %S doesn't exist" buf-C)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 (if (stringp buf-A-file-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 (setq buf-A-file-name (file-name-nondirectory buf-A-file-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 (if (stringp buf-B-file-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 (setq buf-B-file-name (file-name-nondirectory buf-B-file-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 (if (stringp buf-C-file-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 (setq buf-C-file-name (file-name-nondirectory buf-C-file-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 (setq file-A (ediff-make-temp-file buf-A buf-A-file-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 file-B (ediff-make-temp-file buf-B buf-B-file-name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 (if buf-C-is-alive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 (setq file-C (ediff-make-temp-file buf-C buf-C-file-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 (ediff-setup (get-buffer buf-A) file-A
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 (get-buffer buf-B) file-B
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 (if buf-C-is-alive (get-buffer buf-C))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 file-C
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 (cons (` (lambda ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 (delete-file (, file-A))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 (delete-file (, file-B))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 (if (stringp (, file-C)) (delete-file (, file-C)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 startup-hooks)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 (list (cons 'ediff-job-name job-name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 )))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 ;;; Directory and file group operations
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 ;; Get appropriate default name for directory:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 ;; If ediff-use-last-dir, use ediff-last-dir-A.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 ;; In dired mode, use the directory that is under the point (if any);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 ;; otherwise, use default-directory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 (defun ediff-get-default-directory-name ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 (cond (ediff-use-last-dir ediff-last-dir-A)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 ((eq major-mode 'dired-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 (let ((f (dired-get-filename nil 'noerror)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 (if (and (stringp f) (file-directory-p f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 f
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 default-directory)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 (t default-directory)))
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 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 (defun ediff-directories (dir1 dir2 regexp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 "Run Ediff on a pair of directories, DIR1 and DIR2, comparing files that have
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 the same name in both. The third argument, REGEXP, is a regular expression that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 can be used to filter out certain file names."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 (interactive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 (let ((dir-A (ediff-get-default-directory-name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 (list (setq f (ediff-read-file-name "Directory A to compare:" dir-A nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 (ediff-read-file-name "Directory B to compare:"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 (if ediff-use-last-dir
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 ediff-last-dir-B
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 (ediff-strip-last-dir f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 (read-string "Filter through regular expression: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 nil 'ediff-filtering-regexp-history)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 )))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 (ediff-directories-internal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 dir1 dir2 nil regexp 'ediff-files 'ediff-directories
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 (defalias 'edirs 'ediff-directories)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 (defun ediff-directory-revisions (dir1 regexp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 "Run Ediff on a directory, DIR1, comparing its files with their revisions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 The second argument, REGEXP, is a regular expression that filters the file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 names. Only the files that are under revision control are taken into account."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 (interactive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 (let ((dir-A (ediff-get-default-directory-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 (list (ediff-read-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 "Directory to compare with revision:" dir-A nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 (read-string "Filter through regular expression: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 nil 'ediff-filtering-regexp-history)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 )))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 (ediff-directory-revisions-internal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 dir1 regexp 'ediff-revision 'ediff-directory-revisions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 (defalias 'edir-revisions 'ediff-directory-revisions)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 (defun ediff-directories3 (dir1 dir2 dir3 regexp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 "Run Ediff on three directories, DIR1, DIR2, and DIR3, comparing files that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 have the same name in all three. The last argument, REGEXP, is a regular
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 expression that can be used to filter out certain file names."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 (interactive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 (let ((dir-A (ediff-get-default-directory-name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 (list (setq f (ediff-read-file-name "Directory A to compare:" dir-A nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 (setq f (ediff-read-file-name "Directory B to compare:"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 (if ediff-use-last-dir
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 ediff-last-dir-B
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 (ediff-strip-last-dir f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 (ediff-read-file-name "Directory C to compare:"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 (if ediff-use-last-dir
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 ediff-last-dir-C
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 (ediff-strip-last-dir f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 (read-string "Filter through regular expression: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 nil 'ediff-filtering-regexp-history)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 )))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 (ediff-directories-internal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 dir1 dir2 dir3 regexp 'ediff-files3 'ediff-directories3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 (defalias 'edirs3 'ediff-directories3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 (defun ediff-merge-directories (dir1 dir2 regexp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 "Run Ediff on a pair of directories, DIR1 and DIR2, merging files that have
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 the same name in both. The third argument, REGEXP, is a regular expression that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 can be used to filter out certain file names."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 (interactive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 (let ((dir-A (ediff-get-default-directory-name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 (list (setq f (ediff-read-file-name "Directory A to merge:" dir-A nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 (ediff-read-file-name "Directory B to merge:"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 (if ediff-use-last-dir
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 ediff-last-dir-B
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 (ediff-strip-last-dir f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 (read-string "Filter through regular expression: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 nil 'ediff-filtering-regexp-history)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 )))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 (ediff-directories-internal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 dir1 dir2 nil regexp 'ediff-merge-files 'ediff-merge-directories
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 (defalias 'edirs-merge 'ediff-merge-directories)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 (defun ediff-merge-directories-with-ancestor (dir1 dir2 ancestor-dir regexp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 "Merge files in directories DIR1 and DIR2 using files in ANCESTOR-DIR as ancestors.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 Ediff merges files that have identical names in DIR1, DIR2. If a pair of files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 in DIR1 and DIR2 doesn't have an ancestor in ANCESTOR-DIR, Ediff will merge
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 without ancestor. The fourth argument, REGEXP, is a regular expression that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 can be used to filter out certain file names."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 (interactive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 (let ((dir-A (ediff-get-default-directory-name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 (list (setq f (ediff-read-file-name "Directory A to merge:" dir-A nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 (setq f (ediff-read-file-name "Directory B to merge:"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 (if ediff-use-last-dir
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 ediff-last-dir-B
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 (ediff-strip-last-dir f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 (ediff-read-file-name "Ancestor directory:"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 (if ediff-use-last-dir
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 ediff-last-dir-C
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 (ediff-strip-last-dir f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 (read-string "Filter through regular expression: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 nil 'ediff-filtering-regexp-history)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 )))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 (ediff-directories-internal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 dir1 dir2 ancestor-dir regexp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 'ediff-merge-files-with-ancestor 'ediff-merge-directories-with-ancestor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 (defun ediff-merge-directory-revisions (dir1 regexp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 "Run Ediff on a directory, DIR1, merging its files with their revisions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 The second argument, REGEXP, is a regular expression that filters the file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 names. Only the files that are under revision control are taken into account."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 (interactive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 (let ((dir-A (ediff-get-default-directory-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 (list (ediff-read-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 "Directory to merge with revisions:" dir-A nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 (read-string "Filter through regular expression: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 nil 'ediff-filtering-regexp-history)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 )))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 (ediff-directory-revisions-internal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 dir1 regexp 'ediff-merge-revisions 'ediff-merge-directory-revisions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 (defalias 'edir-merge-revisions 'ediff-merge-directory-revisions)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 (defun ediff-merge-directory-revisions-with-ancestor (dir1 regexp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 "Run Ediff on a directory, DIR1, merging its files with their revisions and ancestors.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 The second argument, REGEXP, is a regular expression that filters the file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 names. Only the files that are under revision control are taken into account."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 (interactive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 (let ((dir-A (ediff-get-default-directory-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 (list (ediff-read-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 "Directory to merge with revisions and ancestors:" dir-A nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 (read-string "Filter through regular expression: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 nil 'ediff-filtering-regexp-history)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 )))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 (ediff-directory-revisions-internal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 dir1 regexp 'ediff-merge-revisions-with-ancestor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 'ediff-merge-directory-revisions-with-ancestor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 (defalias
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 'edir-merge-revisions-with-ancestor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 'ediff-merge-directory-revisions-with-ancestor)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 (defalias 'edirs-merge-with-ancestor 'ediff-merge-directories-with-ancestor)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 ;; Run ediff-action (ediff-files, ediff-merge, ediff-merge-with-ancestors)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 ;; on a pair of directories (three directories, in case of ancestor).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 ;; The third argument, REGEXP, is a regular expression that can be used to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 ;; filter out certain file names.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 ;; JOBNAME is the symbol indicating the meta-job to be performed.
12
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
612 ;; MERGE-DIR is the directory in which to store merged files.
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
613 (defun ediff-directories-internal (dir1 dir2 dir3 regexp action jobname
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 &optional startup-hooks)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 ;; ediff-read-file-name is set to attach a previously entered file name if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 ;; the currently entered file is a directory. This code takes care of that.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 (setq dir1 (if (file-directory-p dir1) dir1 (file-name-directory dir1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 dir2 (if (file-directory-p dir2) dir2 (file-name-directory dir2)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 (if (stringp dir3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 (setq dir3 (if (file-directory-p dir3) dir3 (file-name-directory dir3))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 (cond ((string= dir1 dir2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 (error "Directories A and B are the same: %s" dir1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 ((and (eq jobname 'ediff-directories3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 (string= dir1 dir3))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 (error "Directories A and C are the same: %s" dir1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 ((and (eq jobname 'ediff-directories3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 (string= dir2 dir3))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 (error "Directories B and C are the same: %s" dir1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 (let (diffs ; var where ediff-intersect-directories returns the diff list
12
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
633 merge-autostore-dir
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 file-list meta-buf)
12
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
635 (if (and ediff-autostore-merges (ediff-merge-metajob jobname))
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
636 (setq merge-autostore-dir
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
637 (ediff-read-file-name "Directory to save merged files:"
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
638 (if ediff-use-last-dir
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
639 ediff-last-merge-autostore-dir
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
640 (ediff-strip-last-dir dir1))
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
641 nil)))
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
642 ;; verify we are not merging into an orig directory
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
643 (if (stringp merge-autostore-dir)
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
644 (cond ((and (stringp dir1) (string= merge-autostore-dir dir1))
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
645 (or (y-or-n-p "Merge directory same as directory A, sure? ")
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
646 (error "Directory merge aborted")))
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
647 ((and (stringp dir2) (string= merge-autostore-dir dir2))
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
648 (or (y-or-n-p "Merge directory same as directory B, sure? ")
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
649 (error "Directory merge aborted")))
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
650 ((and (stringp dir3) (string= merge-autostore-dir dir3))
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
651 (or (y-or-n-p
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
652 "Merge directory same as ancestor directory, sure? ")
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
653 (error "Directory merge aborted")))))
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
654
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 (setq file-list (ediff-intersect-directories
12
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
656 jobname 'diffs
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
657 regexp dir1 dir2 dir3 merge-autostore-dir))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 (setq startup-hooks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 ;; this sets various vars in the meta buffer inside
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 ;; ediff-prepare-meta-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 (cons (` (lambda ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 ;; tell what to do if the user clicks on a session record
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 (setq ediff-session-action-function (quote (, action)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 ;; set ediff-dir-difference-list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 (setq ediff-dir-difference-list (quote (, diffs)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 startup-hooks))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 (setq meta-buf (ediff-prepare-meta-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 'ediff-filegroup-action
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 file-list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 "*Ediff Session Group Panel"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 'ediff-redraw-directory-group-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 jobname
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 startup-hooks))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 (ediff-show-meta-buffer meta-buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 (defun ediff-directory-revisions-internal (dir1 regexp action jobname
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 &optional startup-hooks)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 (setq dir1 (if (file-directory-p dir1) dir1 (file-name-directory dir1)))
12
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
680
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
681 (let (file-list meta-buf merge-autostore-dir)
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
682 (if (and ediff-autostore-merges (ediff-merge-metajob jobname))
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
683 (setq merge-autostore-dir
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
684 (ediff-read-file-name "Directory to save merged files:"
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
685 (if ediff-use-last-dir
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
686 ediff-last-merge-autostore-dir
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
687 (ediff-strip-last-dir dir1))
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
688 nil)))
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
689 ;; verify merge-autostore-dir != dir1
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
690 (if (and (stringp merge-autostore-dir)
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
691 (stringp dir1)
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
692 (string= merge-autostore-dir dir1))
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
693 (or (y-or-n-p
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
694 "Directory for saving merges is the same as directory A. Sure? ")
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
695 (error "Merge of directory revisions aborted")))
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
696
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 (setq file-list
12
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
698 (ediff-get-directory-files-under-revision
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
699 jobname regexp dir1 merge-autostore-dir))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 (setq startup-hooks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 ;; this sets various vars in the meta buffer inside
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 ;; ediff-prepare-meta-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 (cons (` (lambda ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 ;; tell what to do if the user clicks on a session record
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 (setq ediff-session-action-function (quote (, action)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 startup-hooks))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 (setq meta-buf (ediff-prepare-meta-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 'ediff-filegroup-action
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 file-list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 "*Ediff Session Group Panel"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 'ediff-redraw-directory-group-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 jobname
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 startup-hooks))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 (ediff-show-meta-buffer meta-buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 ;;; Compare regions and windows
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 (defun ediff-windows-wordwise (dumb-mode &optional wind-A wind-B startup-hooks)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 "Compare WIND-A and WIND-B, which are selected by clicking, wordwise.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 With prefix argument, DUMB-MODE, or on a non-windowing display, works as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 follows:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 If WIND-A is nil, use selected window.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 If WIND-B is nil, use window next to WIND-A."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 (interactive "P")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 (ediff-windows dumb-mode wind-A wind-B
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 startup-hooks 'ediff-windows-wordwise 'word-mode))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 (defun ediff-windows-linewise (dumb-mode &optional wind-A wind-B startup-hooks)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 "Compare WIND-A and WIND-B, which are selected by clicking, linewise.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 With prefix argument, DUMB-MODE, or on a non-windowing display, works as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 follows:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 If WIND-A is nil, use selected window.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 If WIND-B is nil, use window next to WIND-A."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 (interactive "P")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 (ediff-windows dumb-mode wind-A wind-B
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 startup-hooks 'ediff-windows-linewise nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 ;; Compare WIND-A and WIND-B, which are selected by clicking.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 ;; With prefix argument, DUMB-MODE, or on a non-windowing display,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 ;; works as follows:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 ;; If WIND-A is nil, use selected window.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 ;; If WIND-B is nil, use window next to WIND-A.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 (defun ediff-windows (dumb-mode wind-A wind-B startup-hooks job-name word-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 (if (or dumb-mode (not (ediff-window-display-p)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 (setq wind-A (ediff-get-next-window wind-A nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 wind-B (ediff-get-next-window wind-B wind-A))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 (setq wind-A (ediff-get-window-by-clicking wind-A nil 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 wind-B (ediff-get-window-by-clicking wind-B wind-A 2)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 (let ((buffer-A (window-buffer wind-A))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 (buffer-B (window-buffer wind-B))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 beg-A end-A beg-B end-B)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 (save-window-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 (sit-for 0) ; sync before using window-start/end -- a precaution
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 (select-window wind-A)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 (setq beg-A (window-start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 end-A (window-end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 (select-window wind-B)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 (setq beg-B (window-start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 end-B (window-end))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 (ediff-regions-internal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 buffer-A beg-A end-A buffer-B beg-B end-B
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 startup-hooks job-name word-mode)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 (defun ediff-regions-wordwise (buffer-A buffer-B &optional startup-hooks)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 "Run Ediff on a pair of regions in two different buffers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 Regions \(i.e., point and mark\) are assumed to be set in advance.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 This function is effective only for relatively small regions, up to 200
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 lines. For large regions, use `ediff-regions-linewise'."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 (interactive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 (let (bf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 (list (setq bf (read-buffer "Region's A buffer: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 (ediff-other-buffer "") t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 (read-buffer "Region's B buffer: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 ;; realign buffers so that two visible bufs will be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 ;; at the top
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 (save-window-excursion (other-window 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 (ediff-other-buffer bf))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 t))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 (if (not (ediff-buffer-live-p buffer-A))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 (error "Buffer %S doesn't exist" buffer-A))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 (if (not (ediff-buffer-live-p buffer-B))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 (error "Buffer %S doesn't exist" buffer-B))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 (let (reg-A-beg reg-A-end reg-B-beg reg-B-end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 (set-buffer buffer-A)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 (setq reg-A-beg (region-beginning)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 reg-A-end (region-end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 (set-buffer buffer-B)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 (setq reg-B-beg (region-beginning)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 reg-B-end (region-end)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 (ediff-regions-internal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 (get-buffer buffer-A) reg-A-beg reg-A-end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 (get-buffer buffer-B) reg-B-beg reg-B-end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 startup-hooks 'ediff-regions-wordwise 'word-mode)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 (defun ediff-regions-linewise (buffer-A buffer-B &optional startup-hooks)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 "Run Ediff on a pair of regions in two different buffers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 Regions \(i.e., point and mark\) are assumed to be set in advance.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 Each region is enlarged to contain full lines.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 This function is effective for large regions, over 100-200
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 lines. For small regions, use `ediff-regions-wordwise'."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 (interactive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 (let (bf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 (list (setq bf (read-buffer "Region A's buffer: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819 (ediff-other-buffer "") t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 (read-buffer "Region B's buffer: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 ;; realign buffers so that two visible bufs will be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 ;; at the top
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 (save-window-excursion (other-window 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 (ediff-other-buffer bf))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 t))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 (if (not (ediff-buffer-live-p buffer-A))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 (error "Buffer %S doesn't exist" buffer-A))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 (if (not (ediff-buffer-live-p buffer-B))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 (error "Buffer %S doesn't exist" buffer-B))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 (let (reg-A-beg reg-A-end reg-B-beg reg-B-end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 (set-buffer buffer-A)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 (setq reg-A-beg (region-beginning)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 reg-A-end (region-end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 ;; enlarge the region to hold full lines
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 (goto-char reg-A-beg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 (setq reg-A-beg (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 (goto-char reg-A-end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 (end-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 (or (eobp) (forward-char)) ; include the newline char
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844 (setq reg-A-end (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 (set-buffer buffer-B)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 (setq reg-B-beg (region-beginning)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 reg-B-end (region-end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 ;; enlarge the region to hold full lines
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 (goto-char reg-B-beg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 (setq reg-B-beg (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 (goto-char reg-B-end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 (end-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 (or (eobp) (forward-char)) ; include the newline char
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 (setq reg-B-end (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857 ) ; save excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 (ediff-regions-internal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860 (get-buffer buffer-A) reg-A-beg reg-A-end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 (get-buffer buffer-B) reg-B-beg reg-B-end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 startup-hooks 'ediff-regions-linewise nil))) ; no word mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 ;; compare region beg-A to end-A of buffer-A
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865 ;; to regions beg-B -- end-B in buffer-B.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 (defun ediff-regions-internal (buffer-A beg-A end-A buffer-B beg-B end-B
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 startup-hooks job-name word-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 (let ((tmp-buffer (get-buffer-create ediff-tmp-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 overl-A overl-B
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 file-A file-B)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 ;; in case beg/end-A/B aren't markers--make them into markers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 (ediff-eval-in-buffer buffer-A
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 (setq beg-A (move-marker (make-marker) beg-A)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 end-A (move-marker (make-marker) end-A)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876 (ediff-eval-in-buffer buffer-B
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 (setq beg-B (move-marker (make-marker) beg-B)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878 end-B (move-marker (make-marker) end-B)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 (if (and (eq buffer-A buffer-B)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 (or (and (< beg-A end-B) (<= beg-B beg-A)) ; b-B b-A e-B
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 (and (< beg-B end-A) (<= end-A end-B)))) ; b-B e-A e-B
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884 (with-output-to-temp-buffer ediff-msg-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 (princ "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 You have requested to compare overlapping regions of the same buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 In this case, Ediff's highlighting may be confusing---in the same window,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 you may see highlighted regions that belong to different regions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891 Continue anyway? (y/n) "))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893 (if (y-or-n-p "Continue anyway? ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 (error "%S aborted" job-name))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897 ;; make file-A
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898 (if word-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 (ediff-wordify beg-A end-A buffer-A tmp-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900 (ediff-copy-to-buffer beg-A end-A buffer-A tmp-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901 (setq file-A (ediff-make-temp-file tmp-buffer "regA"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903 ;; make file-B
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904 (if word-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 (ediff-wordify beg-B end-B buffer-B tmp-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 (ediff-copy-to-buffer beg-B end-B buffer-B tmp-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907 (setq file-B (ediff-make-temp-file tmp-buffer "regB"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909 (setq overl-A (ediff-make-bullet-proof-overlay beg-A end-A buffer-A))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910 (setq overl-B (ediff-make-bullet-proof-overlay beg-B end-B buffer-B))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911 (ediff-setup buffer-A file-A
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912 buffer-B file-B
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 nil nil ; buffer & file C
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 (cons (` (lambda ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915 (delete-file (, file-A))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916 (delete-file (, file-B))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917 startup-hooks)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918 (list (cons 'ediff-word-mode word-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 (cons 'ediff-narrow-bounds (list overl-A overl-B))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920 (cons 'ediff-job-name job-name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 ;;; Merge files and buffers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928 (defalias 'ediff-merge 'ediff-merge-files)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930 (defsubst ediff-merge-on-startup ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 (ediff-do-merge 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 (ediff-eval-in-buffer ediff-buffer-C
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 (set-buffer-modified-p nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936 (defun ediff-merge-files (file-A file-B &optional startup-hooks)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937 "Merge two files without ancestor."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938 (interactive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939 (let ((dir-A (if ediff-use-last-dir
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940 ediff-last-dir-A
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941 default-directory))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942 dir-B f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943 (list (setq f (ediff-read-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944 "File A to merge" dir-A
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945 (ediff-get-default-file-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946 (ediff-read-file-name "File B to merge"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 (setq dir-B
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 (if ediff-use-last-dir
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 ediff-last-dir-B
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 (file-name-directory f)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952 (setq file-name-history
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 (cons (ediff-abbreviate-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 (expand-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955 (file-name-nondirectory f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 dir-B))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 file-name-history))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 )))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960 (setq startup-hooks (cons 'ediff-merge-on-startup startup-hooks))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961 (ediff-files-internal file-A
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 (if (file-directory-p file-B)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 (expand-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 (file-name-nondirectory file-A) file-B)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965 file-B)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 nil ; file-C
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967 startup-hooks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 'ediff-merge-files))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971 (defun ediff-merge-files-with-ancestor (file-A file-B file-ancestor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 &optional startup-hooks)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 "Merge two files with ancestor."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 (interactive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 (let ((dir-A (if ediff-use-last-dir
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 ediff-last-dir-A
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 default-directory))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 dir-B dir-ancestor f ff)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979 (list (setq f (ediff-read-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 "File A to merge" dir-A
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981 (ediff-get-default-file-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 (setq ff (ediff-read-file-name "File B to merge"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 (setq dir-B
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 (if ediff-use-last-dir
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985 ediff-last-dir-B
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 (file-name-directory f)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 (setq file-name-history
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 (cons
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990 (ediff-abbreviate-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991 (expand-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 (file-name-nondirectory f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 dir-B))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 file-name-history))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 f)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996 (ediff-read-file-name "Ancestor file"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997 (setq dir-ancestor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998 (if ediff-use-last-dir
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 ediff-last-dir-ancestor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 (file-name-directory ff)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002 (setq file-name-history
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003 (cons (ediff-abbreviate-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004 (expand-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005 (file-name-nondirectory ff)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006 dir-ancestor))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007 file-name-history))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008 ff))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 )))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 (setq startup-hooks (cons 'ediff-merge-on-startup startup-hooks))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011 (ediff-files-internal file-A
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 (if (file-directory-p file-B)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013 (expand-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 (file-name-nondirectory file-A) file-B)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015 file-B)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 file-ancestor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 startup-hooks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018 'ediff-merge-files-with-ancestor))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021 (defalias 'ediff-merge-with-ancestor 'ediff-merge-files-with-ancestor)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 (defun ediff-merge-buffers (buffer-A buffer-B &optional startup-hooks job-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025 "Merge buffers without ancestor."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 (interactive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027 (let (bf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028 (list (setq bf (read-buffer "Buffer A to merge: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029 (ediff-other-buffer "") t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030 (read-buffer "Buffer B to merge: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032 ;; realign buffers so that two visible bufs will be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033 ;; at the top
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034 (save-window-excursion (other-window 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 (ediff-other-buffer bf))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036 t))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038 (setq startup-hooks (cons 'ediff-merge-on-startup startup-hooks))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039 (or job-name (setq job-name 'ediff-merge-buffers))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 (ediff-buffers-internal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041 buffer-A buffer-B nil startup-hooks job-name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 (defun ediff-merge-buffers-with-ancestor (buffer-A
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045 buffer-B buffer-ancestor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046 &optional startup-hooks job-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047 "Merge buffers with ancestor."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 (interactive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049 (let (bf bff)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050 (list (setq bf (read-buffer "Buffer A to merge: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 (ediff-other-buffer "") t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 (setq bff (read-buffer "Buffer B to merge: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054 ;; realign buffers so that two visible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055 ;; bufs will be at the top
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056 (save-window-excursion (other-window 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057 (ediff-other-buffer bf))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 (read-buffer "Ancestor buffer: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061 ;; realign buffers so that three visible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062 ;; bufs will be at the top
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 (save-window-excursion (other-window 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064 (ediff-other-buffer (list bf bff)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1066 )))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068 (setq startup-hooks (cons 'ediff-merge-on-startup startup-hooks))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1069 (or job-name (setq job-name 'ediff-merge-buffers-with-ancestor))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 (ediff-buffers-internal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071 buffer-A buffer-B buffer-ancestor startup-hooks job-name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075 (defun ediff-merge-revisions (&optional file startup-hooks)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076 "Run Ediff by merging two revisions of a file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077 The file is the optional FILE argument or the file visited by the current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078 buffer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 (if (stringp file) (find-file file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 (let (rev1 rev2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 (setq rev1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083 (read-string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 (format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 "Version 1 to merge (default: %s's latest version): "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086 (if (stringp file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087 (file-name-nondirectory file) "current buffer")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 rev2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089 (read-string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 (format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091 "Version 2 to merge (default: %s): "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092 (if (stringp file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093 (file-name-nondirectory file) "current buffer"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094 (ediff-load-version-control)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 ;; ancestor-revision=nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 (funcall
12
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
1097 (intern (format "ediff-%S-merge-internal" ediff-version-control-package))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098 rev1 rev2 nil startup-hooks)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 (defun ediff-merge-revisions-with-ancestor (&optional file startup-hooks)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103 "Run Ediff by merging two revisions of a file with a common ancestor.
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1104 The file is the optional FILE argument or the file visited by the current
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 buffer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107 (if (stringp file) (find-file file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108 (let (rev1 rev2 ancestor-rev)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109 (setq rev1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110 (read-string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 (format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 "Version 1 to merge (default: %s's latest version): "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 (if (stringp file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114 (file-name-nondirectory file) "current buffer")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115 rev2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116 (read-string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117 (format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 "Version 2 to merge (default: %s): "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 (if (stringp file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 (file-name-nondirectory file) "current buffer")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 ancestor-rev
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 (read-string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 (format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 "Ancestor version (default: %s): "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 (if (stringp file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126 (file-name-nondirectory file) "current buffer"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127 (ediff-load-version-control)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128 (funcall
12
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
1129 (intern (format "ediff-%S-merge-internal" ediff-version-control-package))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130 rev1 rev2 ancestor-rev startup-hooks)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133 (defun run-ediff-from-cvs-buffer (pos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134 "Run Ediff-merge on appropriate revisions of the selected file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135 First run after `M-x cvs-update'. Then place the cursor on a lide describing a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136 file and then run `run-ediff-from-cvs-buffer'."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137 (interactive "d")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138 (ediff-load-version-control)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139 (let ((tin (tin-locate cvs-cookie-handle pos)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140 (if tin
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141 (cvs-run-ediff-on-file-descriptor tin)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142 (error "There is no file to merge"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145 ;;; Apply patch
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 (defun ediff-patch-file ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149 "Run Ediff by patching SOURCE-FILENAME."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 ;; This now returns the control buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152 (let (source-dir source-file patch-buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153 (require 'ediff-ptch)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154 (setq patch-buf (ediff-get-patch-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155 (setq source-dir (cond (ediff-use-last-dir ediff-last-dir-patch)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156 ((and (not ediff-patch-default-directory)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157 (buffer-file-name patch-buf))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158 (file-name-directory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159 (expand-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160 (buffer-file-name patch-buf))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161 (t default-directory)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162 (setq source-file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163 ;; the default is the directory, not the visited file name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164 (ediff-read-file-name "Which file to patch? " source-dir source-dir))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165 (ediff-dispatch-file-patching-job patch-buf source-file)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168 (defun ediff-patch-buffer ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 "Run Ediff by patching BUFFER-NAME."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1170 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171 (let (patch-buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172 (require 'ediff-ptch)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173 (setq patch-buf (ediff-get-patch-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174 (ediff-patch-buffer-internal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175 patch-buf
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176 (read-buffer "Which buffer to patch? "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 (cond ((eq patch-buf (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178 (window-buffer (other-window 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179 (t (current-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180 'must-match))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183 (defalias 'epatch 'ediff-patch-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 (defalias 'epatch-buffer 'ediff-patch-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 ;;; Versions Control functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 (defun ediff-revision (&optional file startup-hooks)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 "Run Ediff by comparing versions of a file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195 The file is an optional FILE argument or the file visited by the current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196 buffer. Use `vc.el' or `rcs.el' depending on `ediff-version-control-package'."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197 ;; if buffer is non-nil, use that buffer instead of the current buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 (interactive "P")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199 (if (stringp file) (find-file file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200 (let (rev1 rev2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201 (setq rev1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202 (read-string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203 (format "Version 1 to compare (default: %s's latest version): "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204 (if (stringp file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 (file-name-nondirectory file) "current buffer")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206 rev2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207 (read-string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 (format "Version 2 to compare (default: %s): "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209 (if (stringp file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210 (file-name-nondirectory file) "current buffer"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211 (ediff-load-version-control)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212 (funcall
12
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
1213 (intern (format "ediff-%S-internal" ediff-version-control-package))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214 rev1 rev2 startup-hooks)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218 ;; Test if version control package is loaded and load if not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 ;; Is SILENT is non-nil, don't report error if package is not found.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220 (defun ediff-load-version-control (&optional silent)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 (require 'ediff-vers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222 (or (featurep ediff-version-control-package)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223 (if (locate-library (symbol-name ediff-version-control-package))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 (message "") ; kill the message from `locate-library'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226 (require ediff-version-control-package))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227 (or silent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228 (error "Version control package %S.el not found. Use vc.el instead"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229 ediff-version-control-package)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233 (defun ediff-version ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234 "Return string describing the version of Ediff.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235 When called interactively, displays the version."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 (if (interactive-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238 (message (ediff-version))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 (format "Ediff %s of %s" ediff-version ediff-date)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 ;;;###autoload
12
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
1243 (defun ediff-documentation (&optional node)
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
1244 "Display Ediff's manual.
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
1245 With optional NODE, goes to that node."
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247 (let ((ctl-window ediff-control-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248 (ctl-buf ediff-control-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250 (ediff-skip-unsuitable-frames)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251 (condition-case nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253 (pop-to-buffer (get-buffer-create "*info*"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254 (info (if ediff-xemacs-p "ediff.info" "ediff"))
12
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
1255 (if node
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
1256 (Info-goto-node node)
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
1257 (message "Type `i' to search for a specific topic"))
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
1258 (raise-frame (selected-frame)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1259 (error (beep 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1260 (with-output-to-temp-buffer ediff-msg-buffer
12
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
1261 (princ ediff-BAD-INFO))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262 (if (window-live-p ctl-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264 (select-window ctl-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265 (set-window-buffer ctl-window ctl-buf)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270 ;;; Local Variables:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1271 ;;; eval: (put 'ediff-defvar-local 'lisp-indent-hook 'defun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1272 ;;; eval: (put 'ediff-eval-in-buffer 'lisp-indent-hook 1)
12
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
1273 ;;; eval: (put 'ediff-eval-in-buffer 'edebug-form-spec '(form body))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274 ;;; End:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276 (provide 'ediff)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277 (require 'ediff-util)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1278
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279 ;;; ediff.el ends here