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

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