annotate lisp/ediff/ediff.el @ 82:6a378aca36af r20-0b91

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