1995-03-16 22:31:54 +00:00
|
|
|
|
;;; ediff.el --- a comprehensive visual interface to diff & patch
|
1996-01-14 07:34:30 +00:00
|
|
|
|
|
1996-06-22 01:54:34 +00:00
|
|
|
|
;; Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc.
|
1994-05-02 05:16:59 +00:00
|
|
|
|
|
|
|
|
|
;; Author: Michael Kifer <kifer@cs.sunysb.edu>
|
|
|
|
|
;; Created: February 2, 1994
|
1994-07-20 20:04:47 +00:00
|
|
|
|
;; Keywords: comparing, merging, patching, version control.
|
1994-05-02 05:16:59 +00:00
|
|
|
|
|
1996-09-20 01:10:05 +00:00
|
|
|
|
(defconst ediff-version "2.63" "The current version of Ediff")
|
|
|
|
|
(defconst ediff-date "September 12, 1996" "Date of last update")
|
1996-06-22 01:54:34 +00:00
|
|
|
|
|
1994-09-18 08:52:32 +00:00
|
|
|
|
|
1994-05-02 05:16:59 +00:00
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
|
|
;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
|
;; the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
|
;; any later version.
|
|
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
1996-01-14 07:34:30 +00:00
|
|
|
|
;; along with GNU Emacs; see the file COPYING. If not, write to the
|
|
|
|
|
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
|
;; Boston, MA 02111-1307, USA.
|
1994-05-02 05:16:59 +00:00
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
1995-03-16 22:31:54 +00:00
|
|
|
|
;; Never read that diff output again!
|
1996-06-22 01:54:34 +00:00
|
|
|
|
;; Apply patch interactively!
|
1995-03-16 22:31:54 +00:00
|
|
|
|
;; Merge with ease!
|
1994-05-02 05:16:59 +00:00
|
|
|
|
|
1994-07-20 20:04:47 +00:00
|
|
|
|
;; This package provides a convenient way of simultaneous browsing through
|
1995-06-05 23:41:43 +00:00
|
|
|
|
;; the differences between a pair (or a triple) of files or buffers. The
|
1995-03-16 22:31:54 +00:00
|
|
|
|
;; files being compared, file-A, file-B, and file-C (if applicable) are
|
|
|
|
|
;; shown in separate windows (side by side, one above the another, or in
|
|
|
|
|
;; separate frames), and the differences are highlighted as you step
|
|
|
|
|
;; through them. You can also copy difference regions from one buffer to
|
|
|
|
|
;; another (and recover old differences if you change your mind).
|
1994-05-02 05:16:59 +00:00
|
|
|
|
|
1995-10-06 01:01:08 +00:00
|
|
|
|
;; Ediff also supports merging operations on files and buffers, including
|
|
|
|
|
;; merging using ancestor versions. Both comparison and merging operations can
|
|
|
|
|
;; be performed on directories, i.e., by pairwise comparison of files in those
|
|
|
|
|
;; directories.
|
|
|
|
|
|
1994-05-02 05:16:59 +00:00
|
|
|
|
;; In addition, Ediff can apply a patch to a file and then let you step
|
1994-07-20 20:04:47 +00:00
|
|
|
|
;; though both files, the patched and the original one, simultaneously,
|
1994-05-02 05:16:59 +00:00
|
|
|
|
;; difference-by-difference. You can even apply a patch right out of a
|
|
|
|
|
;; mail buffer, i.e., patches received by mail don't even have to be saved.
|
|
|
|
|
;; Since Ediff lets you copy differences between buffers, you can, in
|
|
|
|
|
;; effect, apply patches selectively (i.e., you can copy a difference
|
1995-03-16 22:31:54 +00:00
|
|
|
|
;; region from file_orig to file, thereby undoing any particular patch that
|
1994-05-02 05:16:59 +00:00
|
|
|
|
;; you don't like).
|
|
|
|
|
|
1995-06-05 23:41:43 +00:00
|
|
|
|
;; Ediff is aware of version control, which lets the user compare
|
|
|
|
|
;; files with their older versions. Ediff can also work with remote and
|
|
|
|
|
;; compressed files. Details are given below.
|
|
|
|
|
|
1996-06-22 01:54:34 +00:00
|
|
|
|
;; Finally, Ediff supports directory-level comparison, merging and patching.
|
1995-10-06 01:01:08 +00:00
|
|
|
|
;; See the on-line manual for details.
|
1994-05-02 05:16:59 +00:00
|
|
|
|
|
1995-10-06 01:01:08 +00:00
|
|
|
|
;; This package builds upon the ideas borrowed from emerge.el and several
|
|
|
|
|
;; Ediff's functions are adaptations from emerge.el. Much of the functionality
|
|
|
|
|
;; Ediff provides is also influenced by emerge.el.
|
|
|
|
|
|
|
|
|
|
;; The present version of Ediff supersedes Emerge. It provides a superior user
|
|
|
|
|
;; interface and has numerous major features not found in Emerge. In
|
|
|
|
|
;; particular, it can do patching, and 2-way and 3-way file comparison,
|
|
|
|
|
;; merging, and directory operations.
|
1994-07-20 20:04:47 +00:00
|
|
|
|
|
1996-02-16 06:36:35 +00:00
|
|
|
|
|
|
|
|
|
|
1994-05-02 05:16:59 +00:00
|
|
|
|
;;; Bugs:
|
|
|
|
|
|
|
|
|
|
;; 1. The undo command doesn't restore deleted regions well. That is, if
|
|
|
|
|
;; you delete all characters in a difference region and then invoke
|
1995-03-16 22:31:54 +00:00
|
|
|
|
;; `undo', the reinstated text will most likely be inserted outside of
|
1994-05-10 00:48:00 +00:00
|
|
|
|
;; what Ediff thinks is the current difference region. (This problem
|
1995-03-16 22:31:54 +00:00
|
|
|
|
;; doesn't seem to exist with XEmacs.)
|
1994-05-10 00:48:00 +00:00
|
|
|
|
;;
|
|
|
|
|
;; If at any point you feel that difference regions are no longer correct,
|
|
|
|
|
;; you can hit '!' to recompute the differences.
|
|
|
|
|
|
1995-06-05 23:41:43 +00:00
|
|
|
|
;; 2. On a monochrome display, the repertoire of faces with which to
|
1994-05-10 00:48:00 +00:00
|
|
|
|
;; highlight fine differences is limited. By default, Ediff is using
|
1996-01-05 22:21:28 +00:00
|
|
|
|
;; underlining. However, if the region is already underlined by some other
|
1994-05-10 00:48:00 +00:00
|
|
|
|
;; overlays, there is no simple way to temporarily remove that residual
|
|
|
|
|
;; underlining. This problem occurs when a buffer is highlighted with
|
|
|
|
|
;; hilit19.el or font-lock.el packages. If this residual highlighting gets
|
|
|
|
|
;; in the way, you can do the following. Both font-lock.el and hilit19.el
|
|
|
|
|
;; provide commands for unhighlighting buffers. You can either place these
|
1995-10-06 01:01:08 +00:00
|
|
|
|
;; commands in `ediff-prepare-buffer-hook' (which will unhighlight every
|
1994-05-10 00:48:00 +00:00
|
|
|
|
;; buffer used by Ediff) or you can execute them interactively, at any time
|
|
|
|
|
;; and on any buffer.
|
1995-03-16 22:31:54 +00:00
|
|
|
|
|
1996-02-16 06:36:35 +00:00
|
|
|
|
|
1995-03-16 22:31:54 +00:00
|
|
|
|
;;; Acknowledgements:
|
|
|
|
|
|
1995-10-06 01:01:08 +00:00
|
|
|
|
;; Ediff was inspired by Dale R. Worley's <drw@math.mit.edu> emerge.el.
|
|
|
|
|
;; Ediff would not have been possible without the help and encouragement of
|
|
|
|
|
;; its many users. See Ediff on-line Info for the full list of those who
|
|
|
|
|
;; helped. Improved defaults in Ediff file-name reading commands.
|
1995-03-16 22:31:54 +00:00
|
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
|
|
(require 'ediff-init)
|
1996-06-22 01:54:34 +00:00
|
|
|
|
;; ediff-mult is always required, because of the registry stuff
|
1995-11-20 22:03:14 +00:00
|
|
|
|
(require 'ediff-mult)
|
1994-09-18 08:52:32 +00:00
|
|
|
|
|
1996-09-20 01:10:05 +00:00
|
|
|
|
(and noninteractive
|
|
|
|
|
(eval-when-compile
|
|
|
|
|
(let ((load-path (cons (expand-file-name ".") load-path)))
|
|
|
|
|
(load-library "dired")
|
|
|
|
|
(load-file "ediff-ptch.el")
|
|
|
|
|
(load-file "ediff-vers.el")
|
|
|
|
|
(load "pcl-cvs" 'noerror))))
|
1996-06-22 01:54:34 +00:00
|
|
|
|
|
1995-03-16 22:31:54 +00:00
|
|
|
|
(defvar ediff-use-last-dir nil
|
|
|
|
|
"*If t, Ediff uses previous directory as default when reading file name.")
|
1994-05-10 00:48:00 +00:00
|
|
|
|
|
1994-05-02 05:16:59 +00:00
|
|
|
|
(defvar ediff-last-dir-A nil
|
|
|
|
|
"Last directory used by an Ediff command for file-A.")
|
|
|
|
|
(defvar ediff-last-dir-B nil
|
|
|
|
|
"Last directory used by an Ediff command for file-B.")
|
1995-03-16 22:31:54 +00:00
|
|
|
|
(defvar ediff-last-dir-C nil
|
|
|
|
|
"Last directory used by an Ediff command for file-C.")
|
|
|
|
|
(defvar ediff-last-dir-ancestor nil
|
|
|
|
|
"Last directory used by an Ediff command for the ancestor file.")
|
1996-09-20 01:10:05 +00:00
|
|
|
|
(defvar ediff-last-merge-autostore-dir
|
|
|
|
|
"Last directory used by an Ediff command as the output directory for merge.")
|
1994-05-10 00:48:00 +00:00
|
|
|
|
|
1996-06-22 01:54:34 +00:00
|
|
|
|
;; Some defvars to reduce the number of compiler warnings
|
|
|
|
|
(defvar cvs-cookie-handle)
|
|
|
|
|
(defvar ediff-last-dir-patch)
|
|
|
|
|
(defvar ediff-patch-default-directory)
|
|
|
|
|
;; end of compiler pacifier
|
1994-05-02 05:16:59 +00:00
|
|
|
|
|
1995-10-06 01:01:08 +00:00
|
|
|
|
|
1996-02-16 06:36:35 +00:00
|
|
|
|
;; Used as a startup hook to set `_orig' patch file read-only.
|
1995-06-05 23:41:43 +00:00
|
|
|
|
(defun ediff-set-read-only-in-buf-A ()
|
|
|
|
|
(ediff-eval-in-buffer ediff-buffer-A
|
|
|
|
|
(toggle-read-only 1)))
|
1994-05-02 05:16:59 +00:00
|
|
|
|
|
1995-10-06 01:01:08 +00:00
|
|
|
|
;; Return a plausible default for ediff's first file:
|
|
|
|
|
;; In dired, return the file name under the point, unless it is a directory
|
|
|
|
|
;; If the buffer has a file name, return that file name.
|
|
|
|
|
(defun ediff-get-default-file-name ()
|
|
|
|
|
(cond ((eq major-mode 'dired-mode)
|
|
|
|
|
(let ((f (dired-get-filename nil 'no-error)))
|
|
|
|
|
(if (and (stringp f) (not (file-directory-p f)))
|
|
|
|
|
f)))
|
|
|
|
|
((buffer-file-name (current-buffer))
|
|
|
|
|
(file-name-nondirectory (buffer-file-name (current-buffer))))
|
|
|
|
|
))
|
|
|
|
|
|
1995-03-16 22:31:54 +00:00
|
|
|
|
;;; Compare files/buffers
|
1994-05-02 05:16:59 +00:00
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun ediff-files (file-A file-B &optional startup-hooks)
|
1995-03-16 22:31:54 +00:00
|
|
|
|
"Run Ediff on a pair of files, FILE-A and FILE-B."
|
1994-05-02 05:16:59 +00:00
|
|
|
|
(interactive
|
1995-03-16 22:31:54 +00:00
|
|
|
|
(let ((dir-A (if ediff-use-last-dir
|
|
|
|
|
ediff-last-dir-A
|
|
|
|
|
default-directory))
|
|
|
|
|
dir-B f)
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(list (setq f (ediff-read-file-name
|
|
|
|
|
"File A to compare" dir-A
|
|
|
|
|
(ediff-get-default-file-name)))
|
1994-05-02 05:16:59 +00:00
|
|
|
|
(ediff-read-file-name "File B to compare"
|
1995-03-16 22:31:54 +00:00
|
|
|
|
(setq dir-B
|
|
|
|
|
(if ediff-use-last-dir
|
|
|
|
|
ediff-last-dir-B
|
|
|
|
|
(file-name-directory f)))
|
|
|
|
|
(progn
|
|
|
|
|
(setq file-name-history
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(cons (ediff-abbreviate-file-name
|
1995-03-16 22:31:54 +00:00
|
|
|
|
(expand-file-name
|
|
|
|
|
(file-name-nondirectory f)
|
|
|
|
|
dir-B))
|
|
|
|
|
file-name-history))
|
|
|
|
|
f))
|
|
|
|
|
)))
|
|
|
|
|
(ediff-files-internal file-A
|
|
|
|
|
(if (file-directory-p file-B)
|
|
|
|
|
(expand-file-name
|
|
|
|
|
(file-name-nondirectory file-A) file-B)
|
|
|
|
|
file-B)
|
|
|
|
|
nil ; file-C
|
|
|
|
|
startup-hooks
|
|
|
|
|
'ediff-files))
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun ediff-files3 (file-A file-B file-C &optional startup-hooks)
|
|
|
|
|
"Run Ediff on three files, FILE-A, FILE-B, and FILE-C."
|
|
|
|
|
(interactive
|
|
|
|
|
(let ((dir-A (if ediff-use-last-dir
|
|
|
|
|
ediff-last-dir-A
|
|
|
|
|
default-directory))
|
|
|
|
|
dir-B dir-C f ff)
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(list (setq f (ediff-read-file-name
|
|
|
|
|
"File A to compare" dir-A
|
|
|
|
|
(ediff-get-default-file-name)))
|
1995-03-16 22:31:54 +00:00
|
|
|
|
(setq ff (ediff-read-file-name "File B to compare"
|
|
|
|
|
(setq dir-B
|
|
|
|
|
(if ediff-use-last-dir
|
|
|
|
|
ediff-last-dir-B
|
|
|
|
|
(file-name-directory f)))
|
|
|
|
|
(progn
|
|
|
|
|
(setq file-name-history
|
|
|
|
|
(cons
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(ediff-abbreviate-file-name
|
1995-03-16 22:31:54 +00:00
|
|
|
|
(expand-file-name
|
|
|
|
|
(file-name-nondirectory f)
|
|
|
|
|
dir-B))
|
|
|
|
|
file-name-history))
|
|
|
|
|
f)))
|
|
|
|
|
(ediff-read-file-name "File C to compare"
|
|
|
|
|
(setq dir-C (if ediff-use-last-dir
|
|
|
|
|
ediff-last-dir-C
|
|
|
|
|
(file-name-directory ff)))
|
|
|
|
|
(progn
|
|
|
|
|
(setq file-name-history
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(cons (ediff-abbreviate-file-name
|
1995-03-16 22:31:54 +00:00
|
|
|
|
(expand-file-name
|
|
|
|
|
(file-name-nondirectory ff)
|
|
|
|
|
dir-C))
|
|
|
|
|
file-name-history))
|
|
|
|
|
ff))
|
1994-05-02 05:16:59 +00:00
|
|
|
|
)))
|
1994-05-10 00:48:00 +00:00
|
|
|
|
(ediff-files-internal file-A
|
|
|
|
|
(if (file-directory-p file-B)
|
|
|
|
|
(expand-file-name
|
|
|
|
|
(file-name-nondirectory file-A) file-B)
|
|
|
|
|
file-B)
|
1995-03-16 22:31:54 +00:00
|
|
|
|
(if (file-directory-p file-C)
|
|
|
|
|
(expand-file-name
|
|
|
|
|
(file-name-nondirectory file-A) file-C)
|
|
|
|
|
file-C)
|
|
|
|
|
startup-hooks
|
|
|
|
|
'ediff-files3))
|
1994-05-02 05:16:59 +00:00
|
|
|
|
|
1995-03-16 22:31:54 +00:00
|
|
|
|
;;;###autoload
|
|
|
|
|
(defalias 'ediff3 'ediff-files3)
|
1994-05-02 05:16:59 +00:00
|
|
|
|
|
|
|
|
|
|
1996-02-16 06:36:35 +00:00
|
|
|
|
;; Visit FILE and arrange its buffer to Ediff's liking.
|
|
|
|
|
;; FILE is actually a variable symbol that must contain a true file name.
|
|
|
|
|
;; BUFFER-NAME is a variable symbol, which will get the buffer object into
|
|
|
|
|
;; which FILE is read.
|
|
|
|
|
;; LAST-DIR is the directory variable symbol where FILE's
|
|
|
|
|
;; directory name should be returned. HOOKS-VAR is a variable symbol that will
|
|
|
|
|
;; be assigned the hook to be executed after `ediff-startup' is finished.
|
|
|
|
|
;; `ediff-find-file' arranges that the temp files it might create will be
|
|
|
|
|
;; deleted.
|
1995-03-16 22:31:54 +00:00
|
|
|
|
(defun ediff-find-file (file-var buffer-name &optional last-dir hooks-var)
|
|
|
|
|
(let* ((file (symbol-value file-var))
|
1995-06-05 23:41:43 +00:00
|
|
|
|
(file-magic (find-file-name-handler file 'find-file-noselect))
|
1995-03-16 22:31:54 +00:00
|
|
|
|
(temp-file-name-prefix (file-name-nondirectory file)))
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(cond ((not (file-readable-p file))
|
|
|
|
|
(error "File `%s' does not exist or is not readable" file))
|
|
|
|
|
((file-directory-p file)
|
|
|
|
|
(error "File `%s' is a directory" file)))
|
1995-03-16 22:31:54 +00:00
|
|
|
|
|
1996-02-16 06:36:35 +00:00
|
|
|
|
;; some of the commands, below, require full file name
|
1995-03-16 22:31:54 +00:00
|
|
|
|
(setq file (expand-file-name file))
|
|
|
|
|
|
|
|
|
|
;; Record the directory of the file
|
|
|
|
|
(if last-dir
|
|
|
|
|
(set last-dir (expand-file-name (file-name-directory file))))
|
|
|
|
|
|
|
|
|
|
;; Setup the buffer
|
|
|
|
|
(set buffer-name (find-file-noselect file))
|
|
|
|
|
|
|
|
|
|
(ediff-eval-in-buffer (symbol-value buffer-name)
|
|
|
|
|
(widen) ; Make sure the entire file is seen
|
|
|
|
|
(cond (file-magic ;; file has handler, such as jka-compr-handler or
|
|
|
|
|
;; ange-ftp-hook-function--arrange for temp file
|
|
|
|
|
(ediff-verify-file-buffer 'magic)
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(setq file
|
|
|
|
|
(ediff-make-temp-file
|
|
|
|
|
(current-buffer) temp-file-name-prefix))
|
1995-03-16 22:31:54 +00:00
|
|
|
|
(set hooks-var (cons (` (lambda () (delete-file (, file))))
|
|
|
|
|
(symbol-value hooks-var))))
|
|
|
|
|
;; file processed via auto-mode-alist, a la uncompress.el
|
|
|
|
|
((not (equal (file-truename file)
|
|
|
|
|
(file-truename (buffer-file-name))))
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(setq file
|
|
|
|
|
(ediff-make-temp-file
|
|
|
|
|
(current-buffer) temp-file-name-prefix))
|
1995-03-16 22:31:54 +00:00
|
|
|
|
(set hooks-var (cons (` (lambda () (delete-file (, file))))
|
|
|
|
|
(symbol-value hooks-var))))
|
|
|
|
|
(t ;; plain file---just check that the file matches the buffer
|
|
|
|
|
(ediff-verify-file-buffer))))
|
|
|
|
|
(set file-var file)))
|
|
|
|
|
|
|
|
|
|
(defun ediff-files-internal (file-A file-B file-C startup-hooks job-name)
|
|
|
|
|
(let (buf-A buf-B buf-C)
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(message "Reading file %s ... " file-A)
|
|
|
|
|
;;(sit-for 0)
|
1995-03-16 22:31:54 +00:00
|
|
|
|
(ediff-find-file 'file-A 'buf-A 'ediff-last-dir-A 'startup-hooks)
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(message "Reading file %s ... " file-B)
|
|
|
|
|
;;(sit-for 0)
|
1995-03-16 22:31:54 +00:00
|
|
|
|
(ediff-find-file 'file-B 'buf-B 'ediff-last-dir-B 'startup-hooks)
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(if (stringp file-C)
|
1995-03-16 22:31:54 +00:00
|
|
|
|
(progn
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(message "Reading file %s ... " file-C)
|
|
|
|
|
;;(sit-for 0)
|
1995-03-16 22:31:54 +00:00
|
|
|
|
(ediff-find-file
|
|
|
|
|
'file-C 'buf-C
|
|
|
|
|
(if (eq job-name 'ediff-merge-files-with-ancestor)
|
|
|
|
|
'ediff-last-dir-ancestor 'ediff-last-dir-C)
|
|
|
|
|
'startup-hooks)))
|
|
|
|
|
(ediff-setup buf-A file-A
|
|
|
|
|
buf-B file-B
|
|
|
|
|
buf-C file-C
|
|
|
|
|
startup-hooks
|
|
|
|
|
(list (cons 'ediff-job-name job-name)))))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defalias 'ediff 'ediff-files)
|
1994-05-02 05:16:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
1995-03-16 22:31:54 +00:00
|
|
|
|
(defun ediff-buffers (buffer-A buffer-B &optional startup-hooks job-name)
|
1994-05-02 05:16:59 +00:00
|
|
|
|
"Run Ediff on a pair of buffers, BUFFER-A and BUFFER-B."
|
1994-07-20 20:04:47 +00:00
|
|
|
|
(interactive
|
1995-03-16 22:31:54 +00:00
|
|
|
|
(let (bf)
|
|
|
|
|
(list (setq bf (read-buffer "Buffer A to compare: "
|
|
|
|
|
(ediff-other-buffer "") t))
|
|
|
|
|
(read-buffer "Buffer B to compare: "
|
|
|
|
|
(progn
|
|
|
|
|
;; realign buffers so that two visible bufs will be
|
|
|
|
|
;; at the top
|
|
|
|
|
(save-window-excursion (other-window 1))
|
|
|
|
|
(ediff-other-buffer bf))
|
|
|
|
|
t))))
|
|
|
|
|
(or job-name (setq job-name 'ediff-buffers))
|
|
|
|
|
(ediff-buffers-internal buffer-A buffer-B nil startup-hooks job-name))
|
1996-06-22 01:54:34 +00:00
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defalias 'ebuffers 'ediff-buffers)
|
|
|
|
|
|
1995-03-16 22:31:54 +00:00
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun ediff-buffers3 (buffer-A buffer-B buffer-C
|
|
|
|
|
&optional startup-hooks job-name)
|
|
|
|
|
"Run Ediff on three buffers, BUFFER-A, BUFFER-B, and BUFFER-C."
|
|
|
|
|
(interactive
|
|
|
|
|
(let (bf bff)
|
|
|
|
|
(list (setq bf (read-buffer "Buffer A to compare: "
|
|
|
|
|
(ediff-other-buffer "") t))
|
|
|
|
|
(setq bff (read-buffer "Buffer B to compare: "
|
|
|
|
|
(progn
|
|
|
|
|
;; realign buffers so that two visible
|
|
|
|
|
;; bufs will be at the top
|
|
|
|
|
(save-window-excursion (other-window 1))
|
|
|
|
|
(ediff-other-buffer bf))
|
|
|
|
|
t))
|
|
|
|
|
(read-buffer "Buffer C to compare: "
|
|
|
|
|
(progn
|
|
|
|
|
;; realign buffers so that three visible
|
|
|
|
|
;; bufs will be at the top
|
|
|
|
|
(save-window-excursion (other-window 1))
|
|
|
|
|
(ediff-other-buffer (list bf bff)))
|
|
|
|
|
t)
|
|
|
|
|
)))
|
|
|
|
|
(or job-name (setq job-name 'ediff-buffers3))
|
|
|
|
|
(ediff-buffers-internal buffer-A buffer-B buffer-C startup-hooks job-name))
|
1996-06-22 01:54:34 +00:00
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defalias 'ebuffers3 'ediff-buffers3)
|
1995-03-16 22:31:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defun ediff-buffers-internal (buf-A buf-B buf-C startup-hooks job-name)
|
|
|
|
|
(let* ((buf-A-file-name (buffer-file-name (get-buffer buf-A)))
|
|
|
|
|
(buf-B-file-name (buffer-file-name (get-buffer buf-B)))
|
|
|
|
|
(buf-C-is-alive (ediff-buffer-live-p buf-C))
|
|
|
|
|
(buf-C-file-name (if buf-C-is-alive
|
|
|
|
|
(buffer-file-name (get-buffer buf-B))))
|
|
|
|
|
file-A file-B file-C)
|
|
|
|
|
(if (not (ediff-buffer-live-p buf-A))
|
|
|
|
|
(error "Buffer %S doesn't exist" buf-A))
|
|
|
|
|
(if (not (ediff-buffer-live-p buf-B))
|
|
|
|
|
(error "Buffer %S doesn't exist" buf-B))
|
|
|
|
|
(let ((ediff-job-name job-name))
|
|
|
|
|
(if (and ediff-3way-comparison-job
|
|
|
|
|
(not buf-C-is-alive))
|
|
|
|
|
(error "Buffer %S doesn't exist" buf-C)))
|
|
|
|
|
(if (stringp buf-A-file-name)
|
|
|
|
|
(setq buf-A-file-name (file-name-nondirectory buf-A-file-name)))
|
|
|
|
|
(if (stringp buf-B-file-name)
|
|
|
|
|
(setq buf-B-file-name (file-name-nondirectory buf-B-file-name)))
|
|
|
|
|
(if (stringp buf-C-file-name)
|
|
|
|
|
(setq buf-C-file-name (file-name-nondirectory buf-C-file-name)))
|
|
|
|
|
|
1996-02-16 06:36:35 +00:00
|
|
|
|
(setq file-A (ediff-make-temp-file buf-A buf-A-file-name)
|
|
|
|
|
file-B (ediff-make-temp-file buf-B buf-B-file-name))
|
1995-03-16 22:31:54 +00:00
|
|
|
|
(if buf-C-is-alive
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(setq file-C (ediff-make-temp-file buf-C buf-C-file-name)))
|
1995-03-16 22:31:54 +00:00
|
|
|
|
|
|
|
|
|
(ediff-setup (get-buffer buf-A) file-A
|
|
|
|
|
(get-buffer buf-B) file-B
|
|
|
|
|
(if buf-C-is-alive (get-buffer buf-C))
|
|
|
|
|
file-C
|
|
|
|
|
(cons (` (lambda ()
|
|
|
|
|
(delete-file (, file-A))
|
|
|
|
|
(delete-file (, file-B))
|
|
|
|
|
(if (stringp (, file-C)) (delete-file (, file-C)))
|
|
|
|
|
))
|
|
|
|
|
startup-hooks)
|
|
|
|
|
(list (cons 'ediff-job-name job-name))
|
|
|
|
|
)))
|
1995-10-06 01:01:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;; Directory and file group operations
|
|
|
|
|
|
|
|
|
|
;; Get appropriate default name for directory:
|
|
|
|
|
;; If ediff-use-last-dir, use ediff-last-dir-A.
|
|
|
|
|
;; In dired mode, use the directory that is under the point (if any);
|
|
|
|
|
;; otherwise, use default-directory
|
|
|
|
|
(defun ediff-get-default-directory-name ()
|
|
|
|
|
(cond (ediff-use-last-dir ediff-last-dir-A)
|
|
|
|
|
((eq major-mode 'dired-mode)
|
|
|
|
|
(let ((f (dired-get-filename nil 'noerror)))
|
|
|
|
|
(if (and (stringp f) (file-directory-p f))
|
|
|
|
|
f
|
|
|
|
|
default-directory)))
|
|
|
|
|
(t default-directory)))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun ediff-directories (dir1 dir2 regexp)
|
|
|
|
|
"Run Ediff on a pair of directories, DIR1 and DIR2, comparing files that have
|
|
|
|
|
the same name in both. The third argument, REGEXP, is a regular expression that
|
1996-06-22 01:54:34 +00:00
|
|
|
|
can be used to filter out certain file names."
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(interactive
|
|
|
|
|
(let ((dir-A (ediff-get-default-directory-name))
|
|
|
|
|
f)
|
1996-06-22 01:54:34 +00:00
|
|
|
|
(list (setq f (ediff-read-file-name "Directory A to compare:" dir-A nil))
|
|
|
|
|
(ediff-read-file-name "Directory B to compare:"
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(if ediff-use-last-dir
|
|
|
|
|
ediff-last-dir-B
|
|
|
|
|
(ediff-strip-last-dir f))
|
|
|
|
|
nil)
|
|
|
|
|
(read-string "Filter through regular expression: "
|
1996-06-22 01:54:34 +00:00
|
|
|
|
nil 'ediff-filtering-regexp-history)
|
1995-10-06 01:01:08 +00:00
|
|
|
|
)))
|
|
|
|
|
(ediff-directories-internal
|
|
|
|
|
dir1 dir2 nil regexp 'ediff-files 'ediff-directories
|
|
|
|
|
))
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defalias 'edirs 'ediff-directories)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun ediff-directory-revisions (dir1 regexp)
|
|
|
|
|
"Run Ediff on a directory, DIR1, comparing its files with their revisions.
|
|
|
|
|
The second argument, REGEXP, is a regular expression that filters the file
|
|
|
|
|
names. Only the files that are under revision control are taken into account."
|
|
|
|
|
(interactive
|
|
|
|
|
(let ((dir-A (ediff-get-default-directory-name)))
|
|
|
|
|
(list (ediff-read-file-name
|
1996-06-22 01:54:34 +00:00
|
|
|
|
"Directory to compare with revision:" dir-A nil)
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(read-string "Filter through regular expression: "
|
1996-06-22 01:54:34 +00:00
|
|
|
|
nil 'ediff-filtering-regexp-history)
|
1995-10-06 01:01:08 +00:00
|
|
|
|
)))
|
|
|
|
|
(ediff-directory-revisions-internal
|
|
|
|
|
dir1 regexp 'ediff-revision 'ediff-directory-revisions
|
|
|
|
|
))
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defalias 'edir-revisions 'ediff-directory-revisions)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun ediff-directories3 (dir1 dir2 dir3 regexp)
|
|
|
|
|
"Run Ediff on three directories, DIR1, DIR2, and DIR3, comparing files that
|
|
|
|
|
have the same name in all three. The last argument, REGEXP, is a regular
|
1996-06-22 01:54:34 +00:00
|
|
|
|
expression that can be used to filter out certain file names."
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(interactive
|
|
|
|
|
(let ((dir-A (ediff-get-default-directory-name))
|
|
|
|
|
f)
|
1996-06-22 01:54:34 +00:00
|
|
|
|
(list (setq f (ediff-read-file-name "Directory A to compare:" dir-A nil))
|
|
|
|
|
(setq f (ediff-read-file-name "Directory B to compare:"
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(if ediff-use-last-dir
|
|
|
|
|
ediff-last-dir-B
|
|
|
|
|
(ediff-strip-last-dir f))
|
|
|
|
|
nil))
|
1996-06-22 01:54:34 +00:00
|
|
|
|
(ediff-read-file-name "Directory C to compare:"
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(if ediff-use-last-dir
|
|
|
|
|
ediff-last-dir-C
|
|
|
|
|
(ediff-strip-last-dir f))
|
|
|
|
|
nil)
|
|
|
|
|
(read-string "Filter through regular expression: "
|
1996-06-22 01:54:34 +00:00
|
|
|
|
nil 'ediff-filtering-regexp-history)
|
1995-10-06 01:01:08 +00:00
|
|
|
|
)))
|
|
|
|
|
(ediff-directories-internal
|
|
|
|
|
dir1 dir2 dir3 regexp 'ediff-files3 'ediff-directories3
|
|
|
|
|
))
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defalias 'edirs3 'ediff-directories3)
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun ediff-merge-directories (dir1 dir2 regexp)
|
|
|
|
|
"Run Ediff on a pair of directories, DIR1 and DIR2, merging files that have
|
|
|
|
|
the same name in both. The third argument, REGEXP, is a regular expression that
|
1996-06-22 01:54:34 +00:00
|
|
|
|
can be used to filter out certain file names."
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(interactive
|
|
|
|
|
(let ((dir-A (ediff-get-default-directory-name))
|
|
|
|
|
f)
|
1996-06-22 01:54:34 +00:00
|
|
|
|
(list (setq f (ediff-read-file-name "Directory A to merge:" dir-A nil))
|
|
|
|
|
(ediff-read-file-name "Directory B to merge:"
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(if ediff-use-last-dir
|
|
|
|
|
ediff-last-dir-B
|
|
|
|
|
(ediff-strip-last-dir f))
|
|
|
|
|
nil)
|
|
|
|
|
(read-string "Filter through regular expression: "
|
1996-06-22 01:54:34 +00:00
|
|
|
|
nil 'ediff-filtering-regexp-history)
|
1995-10-06 01:01:08 +00:00
|
|
|
|
)))
|
|
|
|
|
(ediff-directories-internal
|
|
|
|
|
dir1 dir2 nil regexp 'ediff-merge-files 'ediff-merge-directories
|
|
|
|
|
))
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defalias 'edirs-merge 'ediff-merge-directories)
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
1996-06-22 01:54:34 +00:00
|
|
|
|
(defun ediff-merge-directories-with-ancestor (dir1 dir2 ancestor-dir regexp)
|
|
|
|
|
"Merge files in directories DIR1 and DIR2 using files in ANCESTOR-DIR as ancestors.
|
|
|
|
|
Ediff merges files that have identical names in DIR1, DIR2. If a pair of files
|
|
|
|
|
in DIR1 and DIR2 doesn't have an ancestor in ANCESTOR-DIR, Ediff will merge
|
|
|
|
|
without ancestor. The fourth argument, REGEXP, is a regular expression that
|
|
|
|
|
can be used to filter out certain file names."
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(interactive
|
|
|
|
|
(let ((dir-A (ediff-get-default-directory-name))
|
|
|
|
|
f)
|
1996-06-22 01:54:34 +00:00
|
|
|
|
(list (setq f (ediff-read-file-name "Directory A to merge:" dir-A nil))
|
|
|
|
|
(setq f (ediff-read-file-name "Directory B to merge:"
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(if ediff-use-last-dir
|
|
|
|
|
ediff-last-dir-B
|
|
|
|
|
(ediff-strip-last-dir f))
|
|
|
|
|
nil))
|
1996-06-22 01:54:34 +00:00
|
|
|
|
(ediff-read-file-name "Ancestor directory:"
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(if ediff-use-last-dir
|
|
|
|
|
ediff-last-dir-C
|
|
|
|
|
(ediff-strip-last-dir f))
|
|
|
|
|
nil)
|
|
|
|
|
(read-string "Filter through regular expression: "
|
1996-06-22 01:54:34 +00:00
|
|
|
|
nil 'ediff-filtering-regexp-history)
|
1995-10-06 01:01:08 +00:00
|
|
|
|
)))
|
|
|
|
|
(ediff-directories-internal
|
1996-06-22 01:54:34 +00:00
|
|
|
|
dir1 dir2 ancestor-dir regexp
|
1995-10-06 01:01:08 +00:00
|
|
|
|
'ediff-merge-files-with-ancestor 'ediff-merge-directories-with-ancestor
|
|
|
|
|
))
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun ediff-merge-directory-revisions (dir1 regexp)
|
|
|
|
|
"Run Ediff on a directory, DIR1, merging its files with their revisions.
|
|
|
|
|
The second argument, REGEXP, is a regular expression that filters the file
|
|
|
|
|
names. Only the files that are under revision control are taken into account."
|
|
|
|
|
(interactive
|
1996-12-28 02:53:04 +00:00
|
|
|
|
(let ((dir-A (ediff-get-default-directory-name)))
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(list (ediff-read-file-name
|
1996-06-22 01:54:34 +00:00
|
|
|
|
"Directory to merge with revisions:" dir-A nil)
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(read-string "Filter through regular expression: "
|
1996-06-22 01:54:34 +00:00
|
|
|
|
nil 'ediff-filtering-regexp-history)
|
1995-10-06 01:01:08 +00:00
|
|
|
|
)))
|
|
|
|
|
(ediff-directory-revisions-internal
|
|
|
|
|
dir1 regexp 'ediff-merge-revisions 'ediff-merge-directory-revisions
|
|
|
|
|
))
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defalias 'edir-merge-revisions 'ediff-merge-directory-revisions)
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun ediff-merge-directory-revisions-with-ancestor (dir1 regexp)
|
|
|
|
|
"Run Ediff on a directory, DIR1, merging its files with their revisions and ancestors.
|
|
|
|
|
The second argument, REGEXP, is a regular expression that filters the file
|
|
|
|
|
names. Only the files that are under revision control are taken into account."
|
|
|
|
|
(interactive
|
1996-12-28 02:53:04 +00:00
|
|
|
|
(let ((dir-A (ediff-get-default-directory-name)))
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(list (ediff-read-file-name
|
1996-06-22 01:54:34 +00:00
|
|
|
|
"Directory to merge with revisions and ancestors:" dir-A nil)
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(read-string "Filter through regular expression: "
|
1996-06-22 01:54:34 +00:00
|
|
|
|
nil 'ediff-filtering-regexp-history)
|
1995-10-06 01:01:08 +00:00
|
|
|
|
)))
|
|
|
|
|
(ediff-directory-revisions-internal
|
|
|
|
|
dir1 regexp 'ediff-merge-revisions-with-ancestor
|
|
|
|
|
'ediff-merge-directory-revisions-with-ancestor
|
|
|
|
|
))
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defalias
|
|
|
|
|
'edir-merge-revisions-with-ancestor
|
|
|
|
|
'ediff-merge-directory-revisions-with-ancestor)
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defalias 'edirs-merge-with-ancestor 'ediff-merge-directories-with-ancestor)
|
|
|
|
|
|
|
|
|
|
;; Run ediff-action (ediff-files, ediff-merge, ediff-merge-with-ancestors)
|
|
|
|
|
;; on a pair of directories (three directories, in case of ancestor).
|
1996-06-22 01:54:34 +00:00
|
|
|
|
;; The third argument, REGEXP, is a regular expression that can be used to
|
|
|
|
|
;; filter out certain file names.
|
1995-10-06 01:01:08 +00:00
|
|
|
|
;; JOBNAME is the symbol indicating the meta-job to be performed.
|
1996-09-20 01:10:05 +00:00
|
|
|
|
;; MERGE-DIR is the directory in which to store merged files.
|
|
|
|
|
(defun ediff-directories-internal (dir1 dir2 dir3 regexp action jobname
|
1995-10-06 01:01:08 +00:00
|
|
|
|
&optional startup-hooks)
|
|
|
|
|
;; ediff-read-file-name is set to attach a previously entered file name if
|
|
|
|
|
;; the currently entered file is a directory. This code takes care of that.
|
|
|
|
|
(setq dir1 (if (file-directory-p dir1) dir1 (file-name-directory dir1))
|
|
|
|
|
dir2 (if (file-directory-p dir2) dir2 (file-name-directory dir2)))
|
|
|
|
|
|
|
|
|
|
(if (stringp dir3)
|
|
|
|
|
(setq dir3 (if (file-directory-p dir3) dir3 (file-name-directory dir3))))
|
|
|
|
|
|
|
|
|
|
(cond ((string= dir1 dir2)
|
|
|
|
|
(error "Directories A and B are the same: %s" dir1))
|
|
|
|
|
((and (eq jobname 'ediff-directories3)
|
|
|
|
|
(string= dir1 dir3))
|
|
|
|
|
(error "Directories A and C are the same: %s" dir1))
|
|
|
|
|
((and (eq jobname 'ediff-directories3)
|
|
|
|
|
(string= dir2 dir3))
|
|
|
|
|
(error "Directories B and C are the same: %s" dir1)))
|
|
|
|
|
|
|
|
|
|
(let (diffs ; var where ediff-intersect-directories returns the diff list
|
1996-09-20 01:10:05 +00:00
|
|
|
|
merge-autostore-dir
|
1995-10-06 01:01:08 +00:00
|
|
|
|
file-list meta-buf)
|
1996-09-20 01:10:05 +00:00
|
|
|
|
(if (and ediff-autostore-merges (ediff-merge-metajob jobname))
|
|
|
|
|
(setq merge-autostore-dir
|
|
|
|
|
(ediff-read-file-name "Directory to save merged files:"
|
|
|
|
|
(if ediff-use-last-dir
|
|
|
|
|
ediff-last-merge-autostore-dir
|
|
|
|
|
(ediff-strip-last-dir dir1))
|
|
|
|
|
nil)))
|
|
|
|
|
;; verify we are not merging into an orig directory
|
|
|
|
|
(if (stringp merge-autostore-dir)
|
|
|
|
|
(cond ((and (stringp dir1) (string= merge-autostore-dir dir1))
|
|
|
|
|
(or (y-or-n-p "Merge directory same as directory A, sure? ")
|
|
|
|
|
(error "Directory merge aborted")))
|
|
|
|
|
((and (stringp dir2) (string= merge-autostore-dir dir2))
|
|
|
|
|
(or (y-or-n-p "Merge directory same as directory B, sure? ")
|
|
|
|
|
(error "Directory merge aborted")))
|
|
|
|
|
((and (stringp dir3) (string= merge-autostore-dir dir3))
|
|
|
|
|
(or (y-or-n-p
|
|
|
|
|
"Merge directory same as ancestor directory, sure? ")
|
|
|
|
|
(error "Directory merge aborted")))))
|
|
|
|
|
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(setq file-list (ediff-intersect-directories
|
1996-09-20 01:10:05 +00:00
|
|
|
|
jobname 'diffs
|
|
|
|
|
regexp dir1 dir2 dir3 merge-autostore-dir))
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(setq startup-hooks
|
|
|
|
|
;; this sets various vars in the meta buffer inside
|
|
|
|
|
;; ediff-prepare-meta-buffer
|
|
|
|
|
(cons (` (lambda ()
|
|
|
|
|
;; tell what to do if the user clicks on a session record
|
|
|
|
|
(setq ediff-session-action-function (quote (, action)))
|
|
|
|
|
;; set ediff-dir-difference-list
|
|
|
|
|
(setq ediff-dir-difference-list (quote (, diffs)))))
|
|
|
|
|
startup-hooks))
|
|
|
|
|
(setq meta-buf (ediff-prepare-meta-buffer
|
1996-06-22 01:54:34 +00:00
|
|
|
|
'ediff-filegroup-action
|
1995-10-06 01:01:08 +00:00
|
|
|
|
file-list
|
|
|
|
|
"*Ediff Session Group Panel"
|
|
|
|
|
'ediff-redraw-directory-group-buffer
|
|
|
|
|
jobname
|
|
|
|
|
startup-hooks))
|
|
|
|
|
(ediff-show-meta-buffer meta-buf)
|
|
|
|
|
))
|
|
|
|
|
|
|
|
|
|
(defun ediff-directory-revisions-internal (dir1 regexp action jobname
|
|
|
|
|
&optional startup-hooks)
|
|
|
|
|
(setq dir1 (if (file-directory-p dir1) dir1 (file-name-directory dir1)))
|
1996-09-20 01:10:05 +00:00
|
|
|
|
|
|
|
|
|
(let (file-list meta-buf merge-autostore-dir)
|
|
|
|
|
(if (and ediff-autostore-merges (ediff-merge-metajob jobname))
|
|
|
|
|
(setq merge-autostore-dir
|
|
|
|
|
(ediff-read-file-name "Directory to save merged files:"
|
|
|
|
|
(if ediff-use-last-dir
|
|
|
|
|
ediff-last-merge-autostore-dir
|
|
|
|
|
(ediff-strip-last-dir dir1))
|
|
|
|
|
nil)))
|
|
|
|
|
;; verify merge-autostore-dir != dir1
|
|
|
|
|
(if (and (stringp merge-autostore-dir)
|
|
|
|
|
(stringp dir1)
|
|
|
|
|
(string= merge-autostore-dir dir1))
|
|
|
|
|
(or (y-or-n-p
|
|
|
|
|
"Directory for saving merges is the same as directory A. Sure? ")
|
|
|
|
|
(error "Merge of directory revisions aborted")))
|
|
|
|
|
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(setq file-list
|
1996-09-20 01:10:05 +00:00
|
|
|
|
(ediff-get-directory-files-under-revision
|
|
|
|
|
jobname regexp dir1 merge-autostore-dir))
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(setq startup-hooks
|
|
|
|
|
;; this sets various vars in the meta buffer inside
|
|
|
|
|
;; ediff-prepare-meta-buffer
|
|
|
|
|
(cons (` (lambda ()
|
|
|
|
|
;; tell what to do if the user clicks on a session record
|
|
|
|
|
(setq ediff-session-action-function (quote (, action)))
|
|
|
|
|
))
|
|
|
|
|
startup-hooks))
|
|
|
|
|
(setq meta-buf (ediff-prepare-meta-buffer
|
1996-06-22 01:54:34 +00:00
|
|
|
|
'ediff-filegroup-action
|
1995-10-06 01:01:08 +00:00
|
|
|
|
file-list
|
|
|
|
|
"*Ediff Session Group Panel"
|
|
|
|
|
'ediff-redraw-directory-group-buffer
|
|
|
|
|
jobname
|
|
|
|
|
startup-hooks))
|
|
|
|
|
(ediff-show-meta-buffer meta-buf)
|
|
|
|
|
))
|
1995-03-16 22:31:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;; Compare regions and windows
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
1995-06-05 23:41:43 +00:00
|
|
|
|
(defun ediff-windows-wordwise (dumb-mode &optional wind-A wind-B startup-hooks)
|
|
|
|
|
"Compare WIND-A and WIND-B, which are selected by clicking, wordwise.
|
1995-03-16 22:31:54 +00:00
|
|
|
|
With prefix argument, DUMB-MODE, or on a non-windowing display, works as
|
|
|
|
|
follows:
|
|
|
|
|
If WIND-A is nil, use selected window.
|
|
|
|
|
If WIND-B is nil, use window next to WIND-A."
|
|
|
|
|
(interactive "P")
|
1995-06-05 23:41:43 +00:00
|
|
|
|
(ediff-windows dumb-mode wind-A wind-B
|
|
|
|
|
startup-hooks 'ediff-windows-wordwise 'word-mode))
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun ediff-windows-linewise (dumb-mode &optional wind-A wind-B startup-hooks)
|
|
|
|
|
"Compare WIND-A and WIND-B, which are selected by clicking, linewise.
|
|
|
|
|
With prefix argument, DUMB-MODE, or on a non-windowing display, works as
|
|
|
|
|
follows:
|
|
|
|
|
If WIND-A is nil, use selected window.
|
|
|
|
|
If WIND-B is nil, use window next to WIND-A."
|
|
|
|
|
(interactive "P")
|
|
|
|
|
(ediff-windows dumb-mode wind-A wind-B
|
|
|
|
|
startup-hooks 'ediff-windows-linewise nil))
|
1995-03-16 22:31:54 +00:00
|
|
|
|
|
1995-06-05 23:41:43 +00:00
|
|
|
|
;; Compare WIND-A and WIND-B, which are selected by clicking.
|
|
|
|
|
;; With prefix argument, DUMB-MODE, or on a non-windowing display,
|
|
|
|
|
;; works as follows:
|
|
|
|
|
;; If WIND-A is nil, use selected window.
|
|
|
|
|
;; If WIND-B is nil, use window next to WIND-A.
|
|
|
|
|
(defun ediff-windows (dumb-mode wind-A wind-B startup-hooks job-name word-mode)
|
|
|
|
|
(if (or dumb-mode (not (ediff-window-display-p)))
|
1995-03-16 22:31:54 +00:00
|
|
|
|
(setq wind-A (ediff-get-next-window wind-A nil)
|
|
|
|
|
wind-B (ediff-get-next-window wind-B wind-A))
|
|
|
|
|
(setq wind-A (ediff-get-window-by-clicking wind-A nil 1)
|
|
|
|
|
wind-B (ediff-get-window-by-clicking wind-B wind-A 2)))
|
|
|
|
|
|
|
|
|
|
(let ((buffer-A (window-buffer wind-A))
|
|
|
|
|
(buffer-B (window-buffer wind-B))
|
|
|
|
|
beg-A end-A beg-B end-B)
|
|
|
|
|
|
|
|
|
|
(save-excursion
|
|
|
|
|
(save-window-excursion
|
1996-01-05 22:21:28 +00:00
|
|
|
|
(sit-for 0) ; sync before using window-start/end -- a precaution
|
1995-03-16 22:31:54 +00:00
|
|
|
|
(select-window wind-A)
|
|
|
|
|
(setq beg-A (window-start)
|
|
|
|
|
end-A (window-end))
|
|
|
|
|
(select-window wind-B)
|
|
|
|
|
(setq beg-B (window-start)
|
|
|
|
|
end-B (window-end))))
|
|
|
|
|
(ediff-regions-internal
|
|
|
|
|
buffer-A beg-A end-A buffer-B beg-B end-B
|
1995-06-05 23:41:43 +00:00
|
|
|
|
startup-hooks job-name word-mode)))
|
1995-03-16 22:31:54 +00:00
|
|
|
|
|
|
|
|
|
;;;###autoload
|
1995-06-05 23:41:43 +00:00
|
|
|
|
(defun ediff-regions-wordwise (buffer-A buffer-B &optional startup-hooks)
|
1995-03-16 22:31:54 +00:00
|
|
|
|
"Run Ediff on a pair of regions in two different buffers.
|
|
|
|
|
Regions \(i.e., point and mark\) are assumed to be set in advance.
|
|
|
|
|
This function is effective only for relatively small regions, up to 200
|
1995-06-05 23:41:43 +00:00
|
|
|
|
lines. For large regions, use `ediff-regions-linewise'."
|
1995-03-16 22:31:54 +00:00
|
|
|
|
(interactive
|
|
|
|
|
(let (bf)
|
|
|
|
|
(list (setq bf (read-buffer "Region's A buffer: "
|
|
|
|
|
(ediff-other-buffer "") t))
|
|
|
|
|
(read-buffer "Region's B buffer: "
|
|
|
|
|
(progn
|
|
|
|
|
;; realign buffers so that two visible bufs will be
|
|
|
|
|
;; at the top
|
|
|
|
|
(save-window-excursion (other-window 1))
|
|
|
|
|
(ediff-other-buffer bf))
|
|
|
|
|
t))))
|
|
|
|
|
(if (not (ediff-buffer-live-p buffer-A))
|
|
|
|
|
(error "Buffer %S doesn't exist" buffer-A))
|
|
|
|
|
(if (not (ediff-buffer-live-p buffer-B))
|
|
|
|
|
(error "Buffer %S doesn't exist" buffer-B))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(let (reg-A-beg reg-A-end reg-B-beg reg-B-end)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer buffer-A)
|
|
|
|
|
(setq reg-A-beg (region-beginning)
|
|
|
|
|
reg-A-end (region-end))
|
|
|
|
|
(set-buffer buffer-B)
|
|
|
|
|
(setq reg-B-beg (region-beginning)
|
|
|
|
|
reg-B-end (region-end)))
|
|
|
|
|
|
|
|
|
|
(ediff-regions-internal
|
|
|
|
|
(get-buffer buffer-A) reg-A-beg reg-A-end
|
|
|
|
|
(get-buffer buffer-B) reg-B-beg reg-B-end
|
1995-06-05 23:41:43 +00:00
|
|
|
|
startup-hooks 'ediff-regions-wordwise 'word-mode)))
|
1995-03-16 22:31:54 +00:00
|
|
|
|
|
|
|
|
|
;;;###autoload
|
1995-06-05 23:41:43 +00:00
|
|
|
|
(defun ediff-regions-linewise (buffer-A buffer-B &optional startup-hooks)
|
1995-03-16 22:31:54 +00:00
|
|
|
|
"Run Ediff on a pair of regions in two different buffers.
|
|
|
|
|
Regions \(i.e., point and mark\) are assumed to be set in advance.
|
|
|
|
|
Each region is enlarged to contain full lines.
|
|
|
|
|
This function is effective for large regions, over 100-200
|
1995-06-05 23:41:43 +00:00
|
|
|
|
lines. For small regions, use `ediff-regions-wordwise'."
|
1995-03-16 22:31:54 +00:00
|
|
|
|
(interactive
|
|
|
|
|
(let (bf)
|
|
|
|
|
(list (setq bf (read-buffer "Region A's buffer: "
|
|
|
|
|
(ediff-other-buffer "") t))
|
|
|
|
|
(read-buffer "Region B's buffer: "
|
|
|
|
|
(progn
|
|
|
|
|
;; realign buffers so that two visible bufs will be
|
|
|
|
|
;; at the top
|
|
|
|
|
(save-window-excursion (other-window 1))
|
|
|
|
|
(ediff-other-buffer bf))
|
|
|
|
|
t))))
|
1994-07-20 20:04:47 +00:00
|
|
|
|
(if (not (ediff-buffer-live-p buffer-A))
|
1995-03-16 22:31:54 +00:00
|
|
|
|
(error "Buffer %S doesn't exist" buffer-A))
|
1994-07-20 20:04:47 +00:00
|
|
|
|
(if (not (ediff-buffer-live-p buffer-B))
|
1995-03-16 22:31:54 +00:00
|
|
|
|
(error "Buffer %S doesn't exist" buffer-B))
|
|
|
|
|
|
|
|
|
|
(let (reg-A-beg reg-A-end reg-B-beg reg-B-end)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer buffer-A)
|
|
|
|
|
(setq reg-A-beg (region-beginning)
|
|
|
|
|
reg-A-end (region-end))
|
|
|
|
|
;; enlarge the region to hold full lines
|
|
|
|
|
(goto-char reg-A-beg)
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(setq reg-A-beg (point))
|
|
|
|
|
(goto-char reg-A-end)
|
|
|
|
|
(end-of-line)
|
|
|
|
|
(or (eobp) (forward-char)) ; include the newline char
|
|
|
|
|
(setq reg-A-end (point))
|
1994-07-20 20:04:47 +00:00
|
|
|
|
|
1995-03-16 22:31:54 +00:00
|
|
|
|
(set-buffer buffer-B)
|
|
|
|
|
(setq reg-B-beg (region-beginning)
|
|
|
|
|
reg-B-end (region-end))
|
|
|
|
|
;; enlarge the region to hold full lines
|
|
|
|
|
(goto-char reg-B-beg)
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(setq reg-B-beg (point))
|
|
|
|
|
(goto-char reg-B-end)
|
|
|
|
|
(end-of-line)
|
|
|
|
|
(or (eobp) (forward-char)) ; include the newline char
|
|
|
|
|
(setq reg-B-end (point))
|
|
|
|
|
) ; save excursion
|
|
|
|
|
|
|
|
|
|
(ediff-regions-internal
|
|
|
|
|
(get-buffer buffer-A) reg-A-beg reg-A-end
|
|
|
|
|
(get-buffer buffer-B) reg-B-beg reg-B-end
|
1995-06-05 23:41:43 +00:00
|
|
|
|
startup-hooks 'ediff-regions-linewise nil))) ; no word mode
|
1995-03-16 22:31:54 +00:00
|
|
|
|
|
|
|
|
|
;; compare region beg-A to end-A of buffer-A
|
|
|
|
|
;; to regions beg-B -- end-B in buffer-B.
|
|
|
|
|
(defun ediff-regions-internal (buffer-A beg-A end-A buffer-B beg-B end-B
|
|
|
|
|
startup-hooks job-name word-mode)
|
|
|
|
|
(let ((tmp-buffer (get-buffer-create ediff-tmp-buffer))
|
|
|
|
|
overl-A overl-B
|
|
|
|
|
file-A file-B)
|
|
|
|
|
|
|
|
|
|
;; in case beg/end-A/B aren't markers--make them into markers
|
|
|
|
|
(ediff-eval-in-buffer buffer-A
|
|
|
|
|
(setq beg-A (move-marker (make-marker) beg-A)
|
|
|
|
|
end-A (move-marker (make-marker) end-A)))
|
|
|
|
|
(ediff-eval-in-buffer buffer-B
|
|
|
|
|
(setq beg-B (move-marker (make-marker) beg-B)
|
|
|
|
|
end-B (move-marker (make-marker) end-B)))
|
|
|
|
|
|
|
|
|
|
(if (and (eq buffer-A buffer-B)
|
|
|
|
|
(or (and (< beg-A end-B) (<= beg-B beg-A)) ; b-B b-A e-B
|
|
|
|
|
(and (< beg-B end-A) (<= end-A end-B)))) ; b-B e-A e-B
|
|
|
|
|
(progn
|
|
|
|
|
(with-output-to-temp-buffer ediff-msg-buffer
|
|
|
|
|
(princ "
|
|
|
|
|
You have requested to compare overlapping regions of the same buffer.
|
|
|
|
|
|
|
|
|
|
In this case, Ediff's highlighting may be confusing---in the same window,
|
|
|
|
|
you may see highlighted regions that belong to different regions.
|
|
|
|
|
|
|
|
|
|
Continue anyway? (y/n) "))
|
|
|
|
|
|
|
|
|
|
(if (y-or-n-p "Continue anyway? ")
|
|
|
|
|
()
|
|
|
|
|
(error "%S aborted" job-name))))
|
|
|
|
|
|
|
|
|
|
;; make file-A
|
|
|
|
|
(if word-mode
|
|
|
|
|
(ediff-wordify beg-A end-A buffer-A tmp-buffer)
|
|
|
|
|
(ediff-copy-to-buffer beg-A end-A buffer-A tmp-buffer))
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(setq file-A (ediff-make-temp-file tmp-buffer "regA"))
|
1995-03-16 22:31:54 +00:00
|
|
|
|
|
|
|
|
|
;; make file-B
|
|
|
|
|
(if word-mode
|
|
|
|
|
(ediff-wordify beg-B end-B buffer-B tmp-buffer)
|
|
|
|
|
(ediff-copy-to-buffer beg-B end-B buffer-B tmp-buffer))
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(setq file-B (ediff-make-temp-file tmp-buffer "regB"))
|
1995-03-16 22:31:54 +00:00
|
|
|
|
|
|
|
|
|
(setq overl-A (ediff-make-bullet-proof-overlay beg-A end-A buffer-A))
|
|
|
|
|
(setq overl-B (ediff-make-bullet-proof-overlay beg-B end-B buffer-B))
|
|
|
|
|
(ediff-setup buffer-A file-A
|
|
|
|
|
buffer-B file-B
|
|
|
|
|
nil nil ; buffer & file C
|
1994-05-02 05:16:59 +00:00
|
|
|
|
(cons (` (lambda ()
|
1994-05-10 00:48:00 +00:00
|
|
|
|
(delete-file (, file-A))
|
|
|
|
|
(delete-file (, file-B))))
|
1994-05-02 05:16:59 +00:00
|
|
|
|
startup-hooks)
|
1995-03-16 22:31:54 +00:00
|
|
|
|
(list (cons 'ediff-word-mode word-mode)
|
|
|
|
|
(cons 'ediff-narrow-bounds (list overl-A overl-B))
|
|
|
|
|
(cons 'ediff-job-name job-name))
|
|
|
|
|
)
|
|
|
|
|
))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;; Merge files and buffers
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defalias 'ediff-merge 'ediff-merge-files)
|
|
|
|
|
|
|
|
|
|
(defsubst ediff-merge-on-startup ()
|
|
|
|
|
(ediff-do-merge 0)
|
|
|
|
|
(ediff-eval-in-buffer ediff-buffer-C
|
|
|
|
|
(set-buffer-modified-p nil)))
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun ediff-merge-files (file-A file-B &optional startup-hooks)
|
|
|
|
|
"Merge two files without ancestor."
|
|
|
|
|
(interactive
|
|
|
|
|
(let ((dir-A (if ediff-use-last-dir
|
|
|
|
|
ediff-last-dir-A
|
|
|
|
|
default-directory))
|
|
|
|
|
dir-B f)
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(list (setq f (ediff-read-file-name
|
|
|
|
|
"File A to merge" dir-A
|
|
|
|
|
(ediff-get-default-file-name)))
|
1995-03-16 22:31:54 +00:00
|
|
|
|
(ediff-read-file-name "File B to merge"
|
|
|
|
|
(setq dir-B
|
|
|
|
|
(if ediff-use-last-dir
|
|
|
|
|
ediff-last-dir-B
|
|
|
|
|
(file-name-directory f)))
|
|
|
|
|
(progn
|
|
|
|
|
(setq file-name-history
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(cons (ediff-abbreviate-file-name
|
1995-03-16 22:31:54 +00:00
|
|
|
|
(expand-file-name
|
|
|
|
|
(file-name-nondirectory f)
|
|
|
|
|
dir-B))
|
|
|
|
|
file-name-history))
|
|
|
|
|
f))
|
|
|
|
|
)))
|
|
|
|
|
(setq startup-hooks (cons 'ediff-merge-on-startup startup-hooks))
|
|
|
|
|
(ediff-files-internal file-A
|
|
|
|
|
(if (file-directory-p file-B)
|
|
|
|
|
(expand-file-name
|
|
|
|
|
(file-name-nondirectory file-A) file-B)
|
|
|
|
|
file-B)
|
|
|
|
|
nil ; file-C
|
|
|
|
|
startup-hooks
|
|
|
|
|
'ediff-merge-files))
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun ediff-merge-files-with-ancestor (file-A file-B file-ancestor
|
|
|
|
|
&optional startup-hooks)
|
|
|
|
|
"Merge two files with ancestor."
|
|
|
|
|
(interactive
|
|
|
|
|
(let ((dir-A (if ediff-use-last-dir
|
|
|
|
|
ediff-last-dir-A
|
|
|
|
|
default-directory))
|
|
|
|
|
dir-B dir-ancestor f ff)
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(list (setq f (ediff-read-file-name
|
|
|
|
|
"File A to merge" dir-A
|
|
|
|
|
(ediff-get-default-file-name)))
|
1995-03-16 22:31:54 +00:00
|
|
|
|
(setq ff (ediff-read-file-name "File B to merge"
|
|
|
|
|
(setq dir-B
|
|
|
|
|
(if ediff-use-last-dir
|
|
|
|
|
ediff-last-dir-B
|
|
|
|
|
(file-name-directory f)))
|
|
|
|
|
(progn
|
|
|
|
|
(setq file-name-history
|
|
|
|
|
(cons
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(ediff-abbreviate-file-name
|
1995-03-16 22:31:54 +00:00
|
|
|
|
(expand-file-name
|
|
|
|
|
(file-name-nondirectory f)
|
|
|
|
|
dir-B))
|
|
|
|
|
file-name-history))
|
|
|
|
|
f)))
|
|
|
|
|
(ediff-read-file-name "Ancestor file"
|
|
|
|
|
(setq dir-ancestor
|
|
|
|
|
(if ediff-use-last-dir
|
|
|
|
|
ediff-last-dir-ancestor
|
|
|
|
|
(file-name-directory ff)))
|
|
|
|
|
(progn
|
|
|
|
|
(setq file-name-history
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(cons (ediff-abbreviate-file-name
|
1995-03-16 22:31:54 +00:00
|
|
|
|
(expand-file-name
|
|
|
|
|
(file-name-nondirectory ff)
|
|
|
|
|
dir-ancestor))
|
|
|
|
|
file-name-history))
|
|
|
|
|
ff))
|
|
|
|
|
)))
|
|
|
|
|
(setq startup-hooks (cons 'ediff-merge-on-startup startup-hooks))
|
|
|
|
|
(ediff-files-internal file-A
|
|
|
|
|
(if (file-directory-p file-B)
|
|
|
|
|
(expand-file-name
|
|
|
|
|
(file-name-nondirectory file-A) file-B)
|
|
|
|
|
file-B)
|
|
|
|
|
file-ancestor
|
|
|
|
|
startup-hooks
|
|
|
|
|
'ediff-merge-files-with-ancestor))
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defalias 'ediff-merge-with-ancestor 'ediff-merge-files-with-ancestor)
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun ediff-merge-buffers (buffer-A buffer-B &optional startup-hooks job-name)
|
|
|
|
|
"Merge buffers without ancestor."
|
|
|
|
|
(interactive
|
|
|
|
|
(let (bf)
|
|
|
|
|
(list (setq bf (read-buffer "Buffer A to merge: "
|
|
|
|
|
(ediff-other-buffer "") t))
|
|
|
|
|
(read-buffer "Buffer B to merge: "
|
|
|
|
|
(progn
|
|
|
|
|
;; realign buffers so that two visible bufs will be
|
|
|
|
|
;; at the top
|
|
|
|
|
(save-window-excursion (other-window 1))
|
|
|
|
|
(ediff-other-buffer bf))
|
|
|
|
|
t))))
|
|
|
|
|
|
|
|
|
|
(setq startup-hooks (cons 'ediff-merge-on-startup startup-hooks))
|
|
|
|
|
(or job-name (setq job-name 'ediff-merge-buffers))
|
|
|
|
|
(ediff-buffers-internal
|
|
|
|
|
buffer-A buffer-B nil startup-hooks job-name))
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun ediff-merge-buffers-with-ancestor (buffer-A
|
|
|
|
|
buffer-B buffer-ancestor
|
|
|
|
|
&optional startup-hooks job-name)
|
|
|
|
|
"Merge buffers with ancestor."
|
|
|
|
|
(interactive
|
|
|
|
|
(let (bf bff)
|
|
|
|
|
(list (setq bf (read-buffer "Buffer A to merge: "
|
|
|
|
|
(ediff-other-buffer "") t))
|
|
|
|
|
(setq bff (read-buffer "Buffer B to merge: "
|
|
|
|
|
(progn
|
|
|
|
|
;; realign buffers so that two visible
|
|
|
|
|
;; bufs will be at the top
|
|
|
|
|
(save-window-excursion (other-window 1))
|
|
|
|
|
(ediff-other-buffer bf))
|
|
|
|
|
t))
|
|
|
|
|
(read-buffer "Ancestor buffer: "
|
|
|
|
|
(progn
|
|
|
|
|
;; realign buffers so that three visible
|
|
|
|
|
;; bufs will be at the top
|
|
|
|
|
(save-window-excursion (other-window 1))
|
|
|
|
|
(ediff-other-buffer (list bf bff)))
|
|
|
|
|
t)
|
|
|
|
|
)))
|
|
|
|
|
|
|
|
|
|
(setq startup-hooks (cons 'ediff-merge-on-startup startup-hooks))
|
|
|
|
|
(or job-name (setq job-name 'ediff-merge-buffers-with-ancestor))
|
|
|
|
|
(ediff-buffers-internal
|
|
|
|
|
buffer-A buffer-B buffer-ancestor startup-hooks job-name))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(defun ediff-merge-revisions (&optional file startup-hooks)
|
1995-03-16 22:31:54 +00:00
|
|
|
|
"Run Ediff by merging two revisions of a file.
|
1995-10-06 01:01:08 +00:00
|
|
|
|
The file is the optional FILE argument or the file visited by the current
|
|
|
|
|
buffer."
|
|
|
|
|
(interactive)
|
|
|
|
|
(if (stringp file) (find-file file))
|
1996-02-16 06:36:35 +00:00
|
|
|
|
(let (rev1 rev2)
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(setq rev1
|
|
|
|
|
(read-string
|
|
|
|
|
(format
|
|
|
|
|
"Version 1 to merge (default: %s's latest version): "
|
|
|
|
|
(if (stringp file)
|
|
|
|
|
(file-name-nondirectory file) "current buffer")))
|
|
|
|
|
rev2
|
|
|
|
|
(read-string
|
|
|
|
|
(format
|
|
|
|
|
"Version 2 to merge (default: %s): "
|
|
|
|
|
(if (stringp file)
|
|
|
|
|
(file-name-nondirectory file) "current buffer"))))
|
1996-02-16 06:36:35 +00:00
|
|
|
|
(ediff-load-version-control)
|
|
|
|
|
;; ancestor-revision=nil
|
|
|
|
|
(funcall
|
1996-09-20 01:10:05 +00:00
|
|
|
|
(intern (format "ediff-%S-merge-internal" ediff-version-control-package))
|
1996-02-16 06:36:35 +00:00
|
|
|
|
rev1 rev2 nil startup-hooks)))
|
1995-03-16 22:31:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(defun ediff-merge-revisions-with-ancestor (&optional file startup-hooks)
|
|
|
|
|
"Run Ediff by merging two revisions of a file with a common ancestor.
|
|
|
|
|
The file is the the optional FILE argument or the file visited by the current
|
|
|
|
|
buffer."
|
|
|
|
|
(interactive)
|
|
|
|
|
(if (stringp file) (find-file file))
|
1996-02-16 06:36:35 +00:00
|
|
|
|
(let (rev1 rev2 ancestor-rev)
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(setq rev1
|
|
|
|
|
(read-string
|
|
|
|
|
(format
|
|
|
|
|
"Version 1 to merge (default: %s's latest version): "
|
|
|
|
|
(if (stringp file)
|
|
|
|
|
(file-name-nondirectory file) "current buffer")))
|
|
|
|
|
rev2
|
|
|
|
|
(read-string
|
|
|
|
|
(format
|
|
|
|
|
"Version 2 to merge (default: %s): "
|
|
|
|
|
(if (stringp file)
|
|
|
|
|
(file-name-nondirectory file) "current buffer")))
|
|
|
|
|
ancestor-rev
|
|
|
|
|
(read-string
|
|
|
|
|
(format
|
|
|
|
|
"Ancestor version (default: %s): "
|
|
|
|
|
(if (stringp file)
|
|
|
|
|
(file-name-nondirectory file) "current buffer"))))
|
1996-02-16 06:36:35 +00:00
|
|
|
|
(ediff-load-version-control)
|
|
|
|
|
(funcall
|
1996-09-20 01:10:05 +00:00
|
|
|
|
(intern (format "ediff-%S-merge-internal" ediff-version-control-package))
|
1996-02-16 06:36:35 +00:00
|
|
|
|
rev1 rev2 ancestor-rev startup-hooks)))
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun run-ediff-from-cvs-buffer (pos)
|
|
|
|
|
"Run Ediff-merge on appropriate revisions of the selected file.
|
|
|
|
|
First run after `M-x cvs-update'. Then place the cursor on a lide describing a
|
|
|
|
|
file and then run `run-ediff-from-cvs-buffer'."
|
|
|
|
|
(interactive "d")
|
|
|
|
|
(ediff-load-version-control)
|
|
|
|
|
(let ((tin (tin-locate cvs-cookie-handle pos)))
|
|
|
|
|
(if tin
|
|
|
|
|
(cvs-run-ediff-on-file-descriptor tin)
|
|
|
|
|
(error "There is no file to merge"))))
|
1995-03-16 22:31:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;; Apply patch
|
|
|
|
|
|
1996-06-22 01:54:34 +00:00
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun ediff-patch-file ()
|
|
|
|
|
"Run Ediff by patching SOURCE-FILENAME."
|
|
|
|
|
;; This now returns the control buffer
|
|
|
|
|
(interactive)
|
|
|
|
|
(let (source-dir source-file patch-buf)
|
|
|
|
|
(require 'ediff-ptch)
|
|
|
|
|
(setq patch-buf (ediff-get-patch-buffer))
|
|
|
|
|
(setq source-dir (cond (ediff-use-last-dir ediff-last-dir-patch)
|
|
|
|
|
((and (not ediff-patch-default-directory)
|
|
|
|
|
(buffer-file-name patch-buf))
|
|
|
|
|
(file-name-directory
|
|
|
|
|
(expand-file-name
|
|
|
|
|
(buffer-file-name patch-buf))))
|
|
|
|
|
(t default-directory)))
|
|
|
|
|
(setq source-file
|
|
|
|
|
;; the default is the directory, not the visited file name
|
|
|
|
|
(ediff-read-file-name "Which file to patch? " source-dir source-dir))
|
|
|
|
|
(ediff-dispatch-file-patching-job patch-buf source-file)))
|
1995-03-16 22:31:54 +00:00
|
|
|
|
|
1996-06-22 01:54:34 +00:00
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun ediff-patch-buffer ()
|
|
|
|
|
"Run Ediff by patching BUFFER-NAME."
|
|
|
|
|
(interactive)
|
|
|
|
|
(let (patch-buf)
|
|
|
|
|
(require 'ediff-ptch)
|
|
|
|
|
(setq patch-buf (ediff-get-patch-buffer))
|
|
|
|
|
(ediff-patch-buffer-internal
|
|
|
|
|
patch-buf
|
|
|
|
|
(read-buffer "Which buffer to patch? "
|
|
|
|
|
(cond ((eq patch-buf (current-buffer))
|
|
|
|
|
(window-buffer (other-window 1)))
|
|
|
|
|
(t (current-buffer)))
|
|
|
|
|
'must-match))))
|
1995-03-16 22:31:54 +00:00
|
|
|
|
|
1996-06-22 01:54:34 +00:00
|
|
|
|
;;;###autoload
|
|
|
|
|
(defalias 'epatch 'ediff-patch-file)
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defalias 'epatch-buffer 'ediff-patch-buffer)
|
1995-03-16 22:31:54 +00:00
|
|
|
|
|
|
|
|
|
|
1994-05-02 05:16:59 +00:00
|
|
|
|
|
1995-03-16 22:31:54 +00:00
|
|
|
|
|
1994-05-02 05:16:59 +00:00
|
|
|
|
;;; Versions Control functions
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(defun ediff-revision (&optional file startup-hooks)
|
|
|
|
|
"Run Ediff by comparing versions of a file.
|
|
|
|
|
The file is an optional FILE argument or the file visited by the current
|
|
|
|
|
buffer. Use `vc.el' or `rcs.el' depending on `ediff-version-control-package'."
|
|
|
|
|
;; if buffer is non-nil, use that buffer instead of the current buffer
|
1995-06-05 23:41:43 +00:00
|
|
|
|
(interactive "P")
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(if (stringp file) (find-file file))
|
1995-06-05 23:41:43 +00:00
|
|
|
|
(let (rev1 rev2)
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(setq rev1
|
|
|
|
|
(read-string
|
|
|
|
|
(format "Version 1 to compare (default: %s's latest version): "
|
|
|
|
|
(if (stringp file)
|
|
|
|
|
(file-name-nondirectory file) "current buffer")))
|
|
|
|
|
rev2
|
|
|
|
|
(read-string
|
|
|
|
|
(format "Version 2 to compare (default: %s): "
|
|
|
|
|
(if (stringp file)
|
|
|
|
|
(file-name-nondirectory file) "current buffer"))))
|
1995-06-05 23:41:43 +00:00
|
|
|
|
(ediff-load-version-control)
|
|
|
|
|
(funcall
|
1996-09-20 01:10:05 +00:00
|
|
|
|
(intern (format "ediff-%S-internal" ediff-version-control-package))
|
1995-10-06 01:01:08 +00:00
|
|
|
|
rev1 rev2 startup-hooks)
|
1995-06-05 23:41:43 +00:00
|
|
|
|
))
|
1995-03-16 22:31:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;; Test if version control package is loaded and load if not
|
|
|
|
|
;; Is SILENT is non-nil, don't report error if package is not found.
|
|
|
|
|
(defun ediff-load-version-control (&optional silent)
|
1996-02-16 06:36:35 +00:00
|
|
|
|
(require 'ediff-vers)
|
1995-03-16 22:31:54 +00:00
|
|
|
|
(or (featurep ediff-version-control-package)
|
|
|
|
|
(if (locate-library (symbol-name ediff-version-control-package))
|
|
|
|
|
(progn
|
|
|
|
|
(message "") ; kill the message from `locate-library'
|
1995-10-06 01:01:08 +00:00
|
|
|
|
(require ediff-version-control-package))
|
1995-03-16 22:31:54 +00:00
|
|
|
|
(or silent
|
1995-06-05 23:41:43 +00:00
|
|
|
|
(error "Version control package %S.el not found. Use vc.el instead"
|
1995-03-16 22:31:54 +00:00
|
|
|
|
ediff-version-control-package)))))
|
1995-10-06 01:01:08 +00:00
|
|
|
|
|
1994-05-10 00:48:00 +00:00
|
|
|
|
|
1995-10-14 03:14:39 +00:00
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun ediff-version ()
|
|
|
|
|
"Return string describing the version of Ediff.
|
|
|
|
|
When called interactively, displays the version."
|
|
|
|
|
(interactive)
|
|
|
|
|
(if (interactive-p)
|
|
|
|
|
(message (ediff-version))
|
|
|
|
|
(format "Ediff %s of %s" ediff-version ediff-date)))
|
|
|
|
|
|
1994-05-02 05:16:59 +00:00
|
|
|
|
|
1996-02-16 06:36:35 +00:00
|
|
|
|
;;;###autoload
|
1996-09-20 01:10:05 +00:00
|
|
|
|
(defun ediff-documentation (&optional node)
|
|
|
|
|
"Display Ediff's manual.
|
|
|
|
|
With optional NODE, goes to that node."
|
1996-02-16 06:36:35 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(let ((ctl-window ediff-control-window)
|
|
|
|
|
(ctl-buf ediff-control-buffer))
|
|
|
|
|
|
|
|
|
|
(ediff-skip-unsuitable-frames)
|
|
|
|
|
(condition-case nil
|
|
|
|
|
(progn
|
|
|
|
|
(pop-to-buffer (get-buffer-create "*info*"))
|
|
|
|
|
(info (if ediff-xemacs-p "ediff.info" "ediff"))
|
1996-09-20 01:10:05 +00:00
|
|
|
|
(if node
|
|
|
|
|
(Info-goto-node node)
|
|
|
|
|
(message "Type `i' to search for a specific topic"))
|
|
|
|
|
(raise-frame (selected-frame)))
|
1996-02-16 06:36:35 +00:00
|
|
|
|
(error (beep 1)
|
1996-06-22 01:54:34 +00:00
|
|
|
|
(with-output-to-temp-buffer ediff-msg-buffer
|
1996-09-20 01:10:05 +00:00
|
|
|
|
(princ ediff-BAD-INFO))
|
1996-02-16 06:36:35 +00:00
|
|
|
|
(if (window-live-p ctl-window)
|
|
|
|
|
(progn
|
|
|
|
|
(select-window ctl-window)
|
|
|
|
|
(set-window-buffer ctl-window ctl-buf)))))))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;; Local Variables:
|
|
|
|
|
;;; eval: (put 'ediff-defvar-local 'lisp-indent-hook 'defun)
|
|
|
|
|
;;; eval: (put 'ediff-eval-in-buffer 'lisp-indent-hook 1)
|
1996-09-20 01:10:05 +00:00
|
|
|
|
;;; eval: (put 'ediff-eval-in-buffer 'edebug-form-spec '(form body))
|
1996-02-16 06:36:35 +00:00
|
|
|
|
;;; End:
|
|
|
|
|
|
1994-05-02 05:16:59 +00:00
|
|
|
|
(provide 'ediff)
|
1995-03-16 22:31:54 +00:00
|
|
|
|
(require 'ediff-util)
|
1994-05-02 05:16:59 +00:00
|
|
|
|
|
|
|
|
|
;;; ediff.el ends here
|