annotate lisp/ediff/ediff.el @ 0:376386a54a3c r19-14

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