Mercurial > emacs
annotate lisp/ediff-vers.el @ 37678:ebec0594dece
(compile-files): Redirect output of chmod to
/dev/null.
| author | Gerd Moellmann <gerd@gnu.org> |
|---|---|
| date | Fri, 11 May 2001 10:53:56 +0000 |
| parents | 1b58126efb71 |
| children | 7a94f1c588c4 |
| rev | line source |
|---|---|
| 14234 | 1 ;;; ediff-vers.el --- version control interface to Ediff |
| 2 | |
| 18054 | 3 ;;; Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc. |
| 14234 | 4 |
| 5 ;; Author: Michael Kifer <kifer@cs.sunysb.edu> | |
| 6 | |
| 7 ;; This file is part of GNU Emacs. | |
| 8 | |
| 9 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
| 10 ;; it under the terms of the GNU General Public License as published by | |
| 11 ;; the Free Software Foundation; either version 2, or (at your option) | |
| 12 ;; any later version. | |
| 13 | |
| 14 ;; GNU Emacs is distributed in the hope that it will be useful, | |
| 15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 17 ;; GNU General Public License for more details. | |
| 18 | |
| 19 ;; You should have received a copy of the GNU General Public License | |
| 20 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
| 21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
| 22 ;; Boston, MA 02111-1307, USA. | |
| 23 | |
| 24 | |
| 25 ;;; Code: | |
|
15480
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14234
diff
changeset
|
26 |
|
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14234
diff
changeset
|
27 ;; Compiler pacifier |
|
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14234
diff
changeset
|
28 (defvar rcs-default-co-switches) |
|
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14234
diff
changeset
|
29 (defvar sc-mode) |
|
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14234
diff
changeset
|
30 (defvar cvs-shell) |
|
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14234
diff
changeset
|
31 (defvar cvs-program) |
|
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14234
diff
changeset
|
32 (defvar cvs-cookie-handle) |
| 18054 | 33 (defvar ediff-temp-file-prefix) |
|
15480
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14234
diff
changeset
|
34 |
|
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
15480
diff
changeset
|
35 (and noninteractive |
|
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
15480
diff
changeset
|
36 (eval-when-compile |
|
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
15480
diff
changeset
|
37 (load "pcl-cvs" 'noerror) |
|
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
15480
diff
changeset
|
38 (load "rcs" 'noerror) |
|
35109
1b58126efb71
(noninteractive): Don't load generic-sc on MS-DOS
Eli Zaretskii <eliz@gnu.org>
parents:
33391
diff
changeset
|
39 ;; On 8+3 MS-DOS filesystems, generic-x.el is loaded |
|
1b58126efb71
(noninteractive): Don't load generic-sc on MS-DOS
Eli Zaretskii <eliz@gnu.org>
parents:
33391
diff
changeset
|
40 ;; instead of (the missing) generic-sc.el. Since the |
|
1b58126efb71
(noninteractive): Don't load generic-sc on MS-DOS
Eli Zaretskii <eliz@gnu.org>
parents:
33391
diff
changeset
|
41 ;; version of Emacs which supports MS-DOS doesn't have |
|
1b58126efb71
(noninteractive): Don't load generic-sc on MS-DOS
Eli Zaretskii <eliz@gnu.org>
parents:
33391
diff
changeset
|
42 ;; generic-sc, we simply avoid loading it. |
|
1b58126efb71
(noninteractive): Don't load generic-sc on MS-DOS
Eli Zaretskii <eliz@gnu.org>
parents:
33391
diff
changeset
|
43 (or (and (fboundp 'msdos-long-file-names) |
|
1b58126efb71
(noninteractive): Don't load generic-sc on MS-DOS
Eli Zaretskii <eliz@gnu.org>
parents:
33391
diff
changeset
|
44 (not (msdos-long-file-names))) |
|
1b58126efb71
(noninteractive): Don't load generic-sc on MS-DOS
Eli Zaretskii <eliz@gnu.org>
parents:
33391
diff
changeset
|
45 (load "generic-sc" 'noerror)) |
|
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
15480
diff
changeset
|
46 (load "vc" 'noerror))) |
|
15480
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14234
diff
changeset
|
47 ;; end pacifier |
| 14234 | 48 |
| 49 ;; VC.el support | |
|
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
15480
diff
changeset
|
50 (defun ediff-vc-internal (rev1 rev2 &optional startup-hooks) |
| 14234 | 51 ;; Run Ediff on versions of the current buffer. |
| 52 ;; If REV2 is "" then compare current buffer with REV1. | |
| 53 ;; If the current buffer is named `F', the version is named `F.~REV~'. | |
| 54 ;; If `F.~REV~' already exists, it is used instead of being re-created. | |
| 55 (let (file1 file2 rev1buf rev2buf) | |
|
33019
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
56 (save-window-excursion |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
57 (save-excursion |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
58 (vc-version-other-window rev1) |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
59 (setq rev1buf (current-buffer) |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
60 file1 (buffer-file-name))) |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
61 (save-excursion |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
62 (or (string= rev2 "") ; use current buffer |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
63 (vc-version-other-window rev2)) |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
64 (setq rev2buf (current-buffer) |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
65 file2 (buffer-file-name))) |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
66 (setq startup-hooks |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
67 (cons `(lambda () |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
68 (delete-file ,file1) |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
69 (or ,(string= rev2 "") (delete-file ,file2))) |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
70 startup-hooks))) |
| 14234 | 71 (ediff-buffers |
| 72 rev1buf rev2buf | |
| 73 startup-hooks | |
| 74 'ediff-revision))) | |
| 75 | |
| 76 ;; RCS.el support | |
| 77 (defun rcs-ediff-view-revision (&optional rev) | |
| 78 ;; View previous RCS revision of current file. | |
| 79 ;; With prefix argument, prompts for a revision name. | |
| 80 (interactive (list (if current-prefix-arg | |
| 81 (read-string "Revision: ")))) | |
| 82 (let* ((filename (buffer-file-name (current-buffer))) | |
| 83 (switches (append '("-p") | |
| 84 (if rev (list (concat "-r" rev)) nil))) | |
| 85 (buff (concat (file-name-nondirectory filename) ".~" rev "~"))) | |
| 86 (message "Working ...") | |
| 87 (setq filename (expand-file-name filename)) | |
| 88 (with-output-to-temp-buffer buff | |
|
33391
f8c8c2d3538e
(rcs-ediff-view-revision): Put temp buffer into
Dave Love <fx@gnu.org>
parents:
33019
diff
changeset
|
89 (ediff-with-current-buffer standard-output |
|
f8c8c2d3538e
(rcs-ediff-view-revision): Put temp buffer into
Dave Love <fx@gnu.org>
parents:
33019
diff
changeset
|
90 (fundamental-mode)) |
| 14234 | 91 (let ((output-buffer (ediff-rcs-get-output-buffer filename buff))) |
| 92 (delete-windows-on output-buffer) | |
| 93 (save-excursion | |
| 94 (set-buffer output-buffer) | |
| 95 (apply 'call-process "co" nil t nil | |
| 96 ;; -q: quiet (no diagnostics) | |
| 97 (append switches rcs-default-co-switches | |
| 98 (list "-q" filename))))) | |
| 99 (message "") | |
| 100 buff))) | |
| 101 | |
| 102 (defun ediff-rcs-get-output-buffer (file name) | |
| 103 ;; Get a buffer for RCS output for FILE, make it writable and clean it up. | |
| 104 ;; Optional NAME is name to use instead of `*RCS-output*'. | |
|
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26039
diff
changeset
|
105 ;; This is a modified version from rcs.el v1.1. I use it here to make |
| 14234 | 106 ;; Ediff immune to changes in rcs.el |
| 107 (let* ((default-major-mode 'fundamental-mode) ; no frills! | |
| 108 (buf (get-buffer-create name))) | |
| 109 (save-excursion | |
| 110 (set-buffer buf) | |
| 111 (setq buffer-read-only nil | |
| 112 default-directory (file-name-directory (expand-file-name file))) | |
| 113 (erase-buffer)) | |
| 114 buf)) | |
| 115 | |
|
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
15480
diff
changeset
|
116 (defun ediff-rcs-internal (rev1 rev2 &optional startup-hooks) |
| 14234 | 117 ;; Run Ediff on versions of the current buffer. |
| 118 ;; If REV2 is "" then use current buffer. | |
|
33019
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
119 (let (rev2buf rev1buf) |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
120 (save-window-excursion |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
121 (setq rev2buf (if (string= rev2 "") |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
122 (current-buffer) |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
123 (rcs-ediff-view-revision rev2)) |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
124 rev1buf (rcs-ediff-view-revision rev1))) |
| 14234 | 125 |
| 126 ;; rcs.el doesn't create temp version files, so we don't have to delete | |
| 127 ;; anything in startup hooks to ediff-buffers | |
| 128 (ediff-buffers rev1buf rev2buf startup-hooks 'ediff-revision) | |
| 129 )) | |
| 130 | |
| 131 | |
| 132 ;; GENERIC-SC.el support | |
| 133 | |
| 134 (defun generic-sc-get-latest-rev () | |
| 135 (cond ((eq sc-mode 'CCASE) | |
| 136 (eval "main/LATEST")) | |
| 137 (t (eval "")))) | |
| 138 | |
|
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
15480
diff
changeset
|
139 (defun ediff-generic-sc-internal (rev1 rev2 &optional startup-hooks) |
| 14234 | 140 ;; Run Ediff on versions of the current buffer. |
| 141 ;; If REV2 is "" then compare current buffer with REV1. | |
| 142 ;; If the current buffer is named `F', the version is named `F.~REV~'. | |
| 143 ;; If `F.~REV~' already exists, it is used instead of being re-created. | |
| 144 (let (rev1buf rev2buf) | |
| 145 (save-excursion | |
| 146 (if (or (not rev1) (string= rev1 "")) | |
| 147 (setq rev1 (generic-sc-get-latest-rev))) | |
| 148 (sc-visit-previous-revision rev1) | |
| 149 (setq rev1buf (current-buffer))) | |
| 150 (save-excursion | |
| 151 (or (string= rev2 "") ; use current buffer | |
| 152 (sc-visit-previous-revision rev2)) | |
| 153 (setq rev2buf (current-buffer))) | |
| 154 (ediff-buffers rev1buf rev2buf startup-hooks 'ediff-revision))) | |
| 155 | |
| 156 | |
| 157 ;;; Merge with Version Control | |
| 158 | |
| 20206 | 159 (defun ediff-vc-merge-internal (rev1 rev2 ancestor-rev |
| 160 &optional startup-hooks merge-buffer-file) | |
| 14234 | 161 ;; If ANCESTOR-REV non-nil, merge with ancestor |
| 162 (let (buf1 buf2 ancestor-buf) | |
|
33019
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
163 (save-window-excursion |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
164 (save-excursion |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
165 (vc-version-other-window rev1) |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
166 (setq buf1 (current-buffer))) |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
167 (save-excursion |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
168 (or (string= rev2 "") |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
169 (vc-version-other-window rev2)) |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
170 (setq buf2 (current-buffer))) |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
171 (if ancestor-rev |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
172 (save-excursion |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
173 (if (string= ancestor-rev "") |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
174 (setq ancestor-rev (vc-workfile-version buffer-file-name))) |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
175 (vc-version-other-window ancestor-rev) |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
176 (setq ancestor-buf (current-buffer)))) |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
177 (setq startup-hooks |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
178 (cons |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
179 `(lambda () |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
180 (delete-file ,(buffer-file-name buf1)) |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
181 (or ,(string= rev2 "") |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
182 (delete-file ,(buffer-file-name buf2))) |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
183 (or ,(string= ancestor-rev "") |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
184 ,(not ancestor-rev) |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
185 (delete-file ,(buffer-file-name ancestor-buf))) |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
186 ) |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
187 startup-hooks))) |
| 14234 | 188 (if ancestor-rev |
| 189 (ediff-merge-buffers-with-ancestor | |
| 190 buf1 buf2 ancestor-buf | |
| 20206 | 191 startup-hooks 'ediff-merge-revisions-with-ancestor merge-buffer-file) |
| 192 (ediff-merge-buffers | |
| 193 buf1 buf2 startup-hooks 'ediff-merge-revisions merge-buffer-file)) | |
| 14234 | 194 )) |
| 195 | |
|
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
15480
diff
changeset
|
196 (defun ediff-rcs-merge-internal (rev1 rev2 ancestor-rev |
| 20206 | 197 &optional |
| 198 startup-hooks merge-buffer-file) | |
| 14234 | 199 ;; If ANCESTOR-REV non-nil, merge with ancestor |
| 200 (let (buf1 buf2 ancestor-buf) | |
|
33019
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
201 (save-window-excursion |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
202 (setq buf1 (rcs-ediff-view-revision rev1) |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
203 buf2 (if (string= rev2 "") |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
204 (current-buffer) |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
205 (rcs-ediff-view-revision rev2)) |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
206 ancestor-buf (if ancestor-rev |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
207 (if (string= ancestor-rev "") |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
208 (current-buffer) |
|
6306740f6938
2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26585
diff
changeset
|
209 (rcs-ediff-view-revision ancestor-rev))))) |
| 14234 | 210 ;; rcs.el doesn't create temp version files, so we don't have to delete |
| 211 ;; anything in startup hooks to ediff-buffers | |
| 212 (if ancestor-rev | |
| 213 (ediff-merge-buffers-with-ancestor | |
| 214 buf1 buf2 ancestor-buf | |
| 20206 | 215 startup-hooks 'ediff-merge-revisions-with-ancestor merge-buffer-file) |
| 216 (ediff-merge-buffers | |
| 217 buf1 buf2 startup-hooks 'ediff-merge-revisions merge-buffer-file)))) | |
| 14234 | 218 |
|
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
15480
diff
changeset
|
219 (defun ediff-generic-sc-merge-internal (rev1 rev2 ancestor-rev |
| 20206 | 220 &optional |
| 221 startup-hooks merge-buffer-file) | |
| 14234 | 222 ;; If ANCESTOR-REV non-nil, merge with ancestor |
| 223 (let (buf1 buf2 ancestor-buf) | |
| 224 (save-excursion | |
| 225 (if (string= rev1 "") | |
| 226 (setq rev1 (generic-sc-get-latest-rev))) | |
| 227 (sc-visit-previous-revision rev1) | |
| 228 (setq buf1 (current-buffer))) | |
| 229 (save-excursion | |
| 230 (or (string= rev2 "") | |
| 231 (sc-visit-previous-revision rev2)) | |
| 232 (setq buf2 (current-buffer))) | |
| 233 (if ancestor-rev | |
| 234 (save-excursion | |
| 235 (or (string= ancestor-rev "") | |
| 236 (sc-visit-previous-revision ancestor-rev)) | |
| 237 (setq ancestor-buf (current-buffer)))) | |
| 238 (if ancestor-rev | |
| 239 (ediff-merge-buffers-with-ancestor | |
| 240 buf1 buf2 ancestor-buf | |
| 20206 | 241 startup-hooks 'ediff-merge-revisions-with-ancestor merge-buffer-file) |
| 242 (ediff-merge-buffers | |
| 243 buf1 buf2 startup-hooks 'ediff-merge-revisions merge-buffer-file)))) | |
| 14234 | 244 |
| 245 | |
| 246 ;; PCL-CVS.el support | |
| 247 | |
| 248 | |
| 249 (defun cvs-run-ediff-on-file-descriptor (tin) | |
| 250 ;; This is a replacement for cvs-emerge-mode | |
| 20206 | 251 ;; Runs after cvs-update. |
| 14234 | 252 ;; Ediff-merge appropriate revisions of the selected file. |
| 253 (let* ((fileinfo (tin-cookie cvs-cookie-handle tin)) | |
| 254 (type (cvs-fileinfo->type fileinfo)) | |
| 255 (tmp-file | |
| 256 (cvs-retrieve-revision-to-tmpfile fileinfo)) | |
| 20343 | 257 (default-directory |
| 21940 | 258 (file-name-as-directory (cvs-fileinfo->dir fileinfo))) |
| 14234 | 259 ancestor-file) |
| 260 | |
| 261 (or (memq type '(MERGED CONFLICT MODIFIED)) | |
| 262 (error | |
| 263 "Can only merge `Modified', `Merged' or `Conflict' files")) | |
| 264 | |
| 265 (cond ((memq type '(MERGED CONFLICT)) | |
| 266 (setq ancestor-file | |
| 267 (cvs-retrieve-revision-to-tmpfile | |
| 268 fileinfo | |
| 269 ;; revision | |
| 270 (cvs-fileinfo->base-revision fileinfo))) | |
| 271 (ediff-merge-buffers-with-ancestor | |
| 272 (find-file-noselect tmp-file) | |
| 273 (find-file-noselect (cvs-fileinfo->backup-file fileinfo)) | |
| 274 (find-file-noselect ancestor-file) | |
| 275 nil ; startup-hooks | |
| 276 'ediff-merge-revisions-with-ancestor)) | |
| 277 ((eq type 'MODIFIED) | |
| 20343 | 278 (ediff-buffers |
| 14234 | 279 (find-file-noselect tmp-file) |
| 280 (find-file-noselect (cvs-fileinfo->full-path fileinfo)) | |
| 281 nil ; startup-hooks | |
| 20343 | 282 'ediff-revisions))) |
| 14234 | 283 (if (stringp tmp-file) (delete-file tmp-file)) |
| 284 (if (stringp ancestor-file) (delete-file ancestor-file)))) | |
| 285 | |
| 286 ;;; Local Variables: | |
| 287 ;;; eval: (put 'ediff-defvar-local 'lisp-indent-hook 'defun) | |
| 19047 | 288 ;;; eval: (put 'ediff-with-current-buffer 'lisp-indent-hook 1) |
| 289 ;;; eval: (put 'ediff-with-current-buffer 'edebug-form-spec '(form body)) | |
| 14234 | 290 ;;; End: |
| 291 | |
| 292 (provide 'ediff-vers) | |
| 293 | |
| 294 ;;; ediff-vers.el ends here |
