Mercurial > emacs
annotate lisp/ediff-ptch.el @ 16570:f1f1c509a8f2
(redisplay_window): When handling scroll_conservatively,
scroll a little farther for the sake of scroll_margin.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 12 Nov 1996 07:12:24 +0000 |
parents | b2fae8abc5b0 |
children | beb94a5271e2 |
rev | line source |
---|---|
15479 | 1 ;;; ediff-ptch.el --- Ediff's patch support |
2 | |
3 ;; Copyright (C) 1996 Free Software Foundation, Inc. | |
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: | |
26 | |
15987 | 27 (require 'ediff-init) |
28 | |
15479 | 29 (defvar ediff-last-dir-patch nil |
30 "Last directory used by an Ediff command for file to patch.") | |
31 | |
32 (defvar ediff-backup-extension | |
33 (if (memq system-type '(vax-vms axp-vms emx ms-dos windows-nt windows-95)) | |
34 "_orig" ".orig") | |
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
35 "Backup extension used by the patch program. |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
36 See also `ediff-backup-specs'.") |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
37 |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
38 (defvar ediff-backup-specs (format "-b %s" ediff-backup-extension) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
39 "*Backup directives to pass to the patch program. |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
40 Ediff requires that the old version of the file \(before applying the patch\) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
41 is saved in a file named `the-patch-file.extension'. Usually `extension' is |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
42 `.orig', but this can be changed by the user and may depend on the system. |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
43 Therefore, Ediff needs to know the backup extension used by the patch program. |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
44 |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
45 Some versions of the patch program let you specify `-b backup-extension'. |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
46 Other versions only permit `-b', which assumes some canned extension |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
47 \(usually `.orig'\). |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
48 |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
49 Note that both `ediff-backup-extension' and `ediff-backup-specs' |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
50 must be properly set. If your patch program takes the option `-b', |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
51 but not `-b extension', the variable `ediff-backup-extension' must |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
52 still be set so Ediff will know which extension to use.") |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
53 |
15479 | 54 |
55 (defvar ediff-patch-default-directory nil | |
56 "*Default directory to look for patches.") | |
57 | |
58 (defvar ediff-context-diff-label-regexp | |
59 (concat "\\(" ; context diff 2-liner | |
60 "^\\*\\*\\* \\([^ \t]+\\)[^*]+[\t ]*\n--- \\([^ \t]+\\)" | |
61 "\\|" ; GNU unified format diff 2-liner | |
16168
587b9c438823
(ediff-context-diff-label-regexp): Recognize -u format better.
Richard M. Stallman <rms@gnu.org>
parents:
15987
diff
changeset
|
62 "^--- \\([^ \t]+\\)[\t ]+.*\n\\+\\+\\+ \\([^ \t]+\\)" |
15479 | 63 "\\)") |
64 "*Regexp matching filename 2-liners at the start of each context diff.") | |
65 | |
66 (defvar ediff-patch-program "patch" | |
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
67 "*Name of the program that applies patches. |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
68 It is recommended to use GNU-compatible versions.") |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
69 (defvar ediff-patch-options "-f" |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
70 "*Options to pass to ediff-patch-program. |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
71 |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
72 Note: the `-b' option should be specified in `ediff-backup-specs'. |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
73 |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
74 It is recommended to pass the `-f' option to the patch program, so it won't ask |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
75 questions. However, some implementations don't accept this option, in which |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
76 case the default value for this variable should be changed.") |
15479 | 77 |
78 ;; The buffer of the patch file. Local to control buffer. | |
79 (ediff-defvar-local ediff-patchbufer nil "") | |
80 | |
81 ;; The buffer where patch displays its diagnostics. | |
82 (ediff-defvar-local ediff-patch-diagnostics nil "") | |
83 | |
84 ;; Map of patch buffer. Has the form: | |
85 ;; ((filename1 marker1 marker2) (filename2 marker1 marker2) ...) | |
86 ;; where filenames are files to which patch would have applied the patch; | |
87 ;; marker1 delimits the beginning of the corresponding patch and marker2 does | |
88 ;; it for the end. | |
89 (ediff-defvar-local ediff-patch-map nil "") | |
90 | |
91 ;; strip prefix from filename | |
92 ;; returns /dev/null, if can't strip prefix | |
93 (defsubst ediff-file-name-sans-prefix (filename prefix) | |
94 (save-match-data | |
95 (if (string-match (concat "^" prefix) filename) | |
96 (substring filename (match-end 0)) | |
97 (concat "/null/" filename)))) | |
98 | |
99 | |
100 | |
101 ;; no longer used | |
102 ;; return the number of matches of regexp in buf starting from the beginning | |
103 (defun ediff-count-matches (regexp buf) | |
104 (ediff-eval-in-buffer buf | |
105 (let ((count 0) opoint) | |
106 (save-excursion | |
107 (goto-char (point-min)) | |
108 (while (and (not (eobp)) | |
109 (progn (setq opoint (point)) | |
110 (re-search-forward regexp nil t))) | |
111 (if (= opoint (point)) | |
112 (forward-char 1) | |
113 (setq count (1+ count))))) | |
114 count))) | |
115 | |
116 ;; Scan BUF (which is supposed to contain a patch) and make a list of the form | |
117 ;; ((filename1 marker1 marker2) (filename2 marker1 marker2) ...) | |
118 ;; where filenames are files to which patch would have applied the patch; | |
119 ;; marker1 delimits the beginning of the corresponding patch and marker2 does | |
120 ;; it for the end. This list is then assigned to ediff-patch-map. | |
121 ;; Returns the number of elements in the list ediff-patch-map | |
122 (defun ediff-map-patch-buffer (buf) | |
123 (ediff-eval-in-buffer buf | |
124 (let ((count 0) | |
125 (mark1 (move-marker (make-marker) (point-min))) | |
126 (mark1-end (point-min)) | |
127 (possible-file-names '("/dev/null" . "/dev/null")) | |
128 mark2-end mark2 filenames | |
129 beg1 beg2 end1 end2 | |
130 patch-map opoint) | |
131 (save-excursion | |
132 (goto-char (point-min)) | |
133 (setq opoint (point)) | |
134 (while (and (not (eobp)) | |
135 (re-search-forward ediff-context-diff-label-regexp nil t)) | |
136 (if (= opoint (point)) | |
137 (forward-char 1) ; ensure progress towards the end | |
138 (setq mark2 (move-marker (make-marker) (match-beginning 0)) | |
139 mark2-end (match-end 0) | |
16168
587b9c438823
(ediff-context-diff-label-regexp): Recognize -u format better.
Richard M. Stallman <rms@gnu.org>
parents:
15987
diff
changeset
|
140 beg1 (or (match-beginning 2) (match-beginning 4)) |
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
141 end1 (or (match-end 2) (match-end 4)) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
142 beg2 (or (match-beginning 3) (match-beginning 5)) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
143 end2 (or (match-end 3) (match-end 5))) |
15479 | 144 ;; possible-file-names is holding the new file names until we |
145 ;; insert the old file name in the patch map | |
146 ;; It is a pair (filename from 1st header line . fn from 2nd line) | |
147 (setq possible-file-names | |
148 (cons (if (and beg1 end1) | |
149 (buffer-substring beg1 end1) | |
150 "/dev/null") | |
151 (if (and beg2 end2) | |
152 (buffer-substring beg2 end2) | |
153 "/dev/null"))) | |
154 ;; check for any `Index:' or `Prereq:' lines, but don't use them | |
155 (if (re-search-backward "^Index:" mark1-end 'noerror) | |
156 (move-marker mark2 (match-beginning 0))) | |
157 (if (re-search-backward "^Prereq:" mark1-end 'noerror) | |
158 (move-marker mark2 (match-beginning 0))) | |
159 | |
160 (goto-char mark2-end) | |
161 | |
162 (if filenames | |
163 (setq patch-map (cons (list filenames mark1 mark2) patch-map))) | |
164 (setq mark1 mark2 | |
165 mark1-end mark2-end | |
166 filenames possible-file-names)) | |
167 (setq opoint (point) | |
168 count (1+ count)))) | |
169 (setq mark2 (point-max-marker) | |
170 patch-map (cons (list possible-file-names mark1 mark2) patch-map)) | |
171 (setq ediff-patch-map (nreverse patch-map)) | |
172 count))) | |
173 | |
174 ;; Fix up the file names in the list using the argument FILENAME | |
175 ;; Algorithm: find the first file's directory and cut it out from each file | |
176 ;; name in the patch. Prepend the directory of FILENAME to each file in the | |
177 ;; patch. In addition, the first file in the patch is replaced by FILENAME. | |
178 ;; Each file is actually a file-pair of files found in the context diff header | |
179 ;; In the end, for each pair, we select the shortest existing file. | |
180 ;; Note: Ediff doesn't recognize multi-file patches that are separated | |
181 ;; with the `Index:' line. It treats them as a single-file patch. | |
182 ;; | |
183 ;; Executes inside the patch buffer | |
184 (defun ediff-fixup-patch-map (filename) | |
185 (setq filename (expand-file-name filename)) | |
186 (let ((actual-dir (if (file-directory-p filename) | |
187 ;; directory part of filename | |
188 (file-name-as-directory filename) | |
189 (file-name-directory filename))) | |
190 ;; directory part of the first file in the patch | |
191 (base-dir1 (file-name-directory (car (car (car ediff-patch-map))))) | |
192 (base-dir2 (file-name-directory (cdr (car (car ediff-patch-map))))) | |
193 ) | |
194 | |
195 ;; chop off base-dirs | |
196 (mapcar (function (lambda (triple) | |
197 (or (string= (car (car triple)) "/dev/null") | |
198 (setcar (car triple) | |
199 (ediff-file-name-sans-prefix | |
200 (car (car triple)) base-dir1))) | |
201 (or (string= (cdr (car triple)) "/dev/null") | |
202 (setcdr (car triple) | |
203 (ediff-file-name-sans-prefix | |
204 (cdr (car triple)) base-dir2))) | |
205 )) | |
206 ediff-patch-map) | |
207 | |
208 ;; take the given file name into account | |
209 (or (file-directory-p filename) | |
210 (string= "/dev/null" filename) | |
211 (progn | |
212 (setcar (car ediff-patch-map) | |
213 (cons (file-name-nondirectory filename) | |
214 (file-name-nondirectory filename))))) | |
215 | |
216 ;; prepend actual-dir | |
217 (mapcar (function (lambda (triple) | |
218 (if (and (string-match "^/null/" (car (car triple))) | |
219 (string-match "^/null/" (cdr (car triple)))) | |
220 ;; couldn't strip base-dir1 and base-dir2 | |
221 ;; hence, something wrong | |
222 (progn | |
223 (with-output-to-temp-buffer ediff-msg-buffer | |
224 (princ | |
225 (format " | |
226 The patch file contains a context diff for | |
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
227 |
15479 | 228 %s |
229 %s | |
230 | |
231 However, Ediff cannot infer the name of the actual file | |
232 to be patched on your system. If you know the correct file name, | |
233 please enter it now. | |
234 | |
235 If you don't know and still would like to apply patches to | |
236 other files, enter /dev/null | |
237 " | |
238 (substring (car (car triple)) 6) | |
239 (substring (cdr (car triple)) 6)))) | |
240 (let ((directory t) | |
241 user-file) | |
242 (while directory | |
243 (setq user-file | |
244 (read-file-name | |
245 "Please enter file name: " | |
246 actual-dir actual-dir t)) | |
247 (if (not (file-directory-p user-file)) | |
248 (setq directory nil) | |
249 (setq directory t) | |
250 (beep) | |
251 (message "%s is a directory" user-file) | |
252 (sit-for 2))) | |
253 (setcar triple (cons user-file user-file)))) | |
254 (setcar (car triple) | |
255 (expand-file-name | |
256 (concat actual-dir (car (car triple))))) | |
257 (setcdr (car triple) | |
258 (expand-file-name | |
259 (concat actual-dir (cdr (car triple)))))) | |
260 )) | |
261 ediff-patch-map) | |
262 ;; check for the shorter existing file in each pair and discard the other | |
263 ;; one | |
264 (mapcar (function (lambda (triple) | |
265 (let* ((file1 (car (car triple))) | |
266 (file2 (cdr (car triple))) | |
267 (f1-exists (file-exists-p file1)) | |
268 (f2-exists (file-exists-p file2))) | |
269 (cond | |
270 ((and (< (length file2) (length file1)) | |
271 f2-exists) | |
272 (setcar triple file2)) | |
273 ((and (< (length file1) (length file2)) | |
274 f1-exists) | |
275 (setcar triple file1)) | |
276 ((and f1-exists f2-exists | |
277 (string= file1 file2)) | |
278 (setcar triple file1)) | |
279 ((and f1-exists f2-exists) | |
280 (with-output-to-temp-buffer ediff-msg-buffer | |
281 (princ (format " | |
282 Ediff has inferred that | |
283 %s | |
284 %s | |
285 are possible targets for applying the patch. | |
286 Both files seem to be plausible alternatives. | |
287 | |
288 Please advice: | |
289 Type `y' to use %s as the target; | |
290 Type `n' to use %s as the target. | |
291 " | |
292 file1 file2 file2 file1))) | |
293 (setcar triple | |
294 (if (y-or-n-p (format "Use %s ? " file2)) | |
295 file2 file1))) | |
296 (f2-exists (setcar triple file2)) | |
297 (f1-exists (setcar triple file1)) | |
298 (t | |
299 (with-output-to-temp-buffer ediff-msg-buffer | |
300 (princ (format " | |
301 Ediff inferred that | |
302 %s | |
303 %s | |
304 are possible alternative targets for this patch. | |
305 | |
306 However, these files do not exist. | |
307 | |
308 Please enter an alternative patch target ... | |
309 " | |
310 file1 file2))) | |
311 (let ((directory t) | |
312 target) | |
313 (while directory | |
314 (setq target (read-file-name | |
315 "Please enter a patch target: " | |
316 actual-dir actual-dir t)) | |
317 (if (not (file-directory-p target)) | |
318 (setq directory nil) | |
319 (beep) | |
320 (message "%s is a directory" target) | |
321 (sit-for 2))) | |
322 (setcar triple target))))))) | |
323 ediff-patch-map) | |
324 )) | |
325 | |
326 (defun ediff-show-patch-diagnostics () | |
327 (interactive) | |
328 (cond ((window-live-p ediff-window-A) | |
329 (set-window-buffer ediff-window-A ediff-patch-diagnostics)) | |
330 ((window-live-p ediff-window-B) | |
331 (set-window-buffer ediff-window-B ediff-patch-diagnostics)) | |
332 (t (display-buffer ediff-patch-diagnostics 'not-this-window)))) | |
333 | |
334 (defun ediff-get-patch-buffer () | |
335 "Obtain patch buffer. If patch is already in a buffer---use it. | |
336 Else, read patch file into a new buffer." | |
337 (let ((dir (cond (ediff-patch-default-directory) ; try patch default dir | |
338 (ediff-use-last-dir ediff-last-dir-patch) | |
339 (t default-directory))) | |
340 patch-buf) | |
341 (if (y-or-n-p "Is the patch already in a buffer? ") | |
342 (setq patch-buf | |
343 (get-buffer | |
344 (read-buffer | |
345 "Which buffer contains the patch? " | |
346 (current-buffer) 'must-match))) | |
347 (setq patch-buf | |
348 (find-file-noselect | |
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
349 (read-file-name "Which file contains the patch? " |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
350 dir nil 'must-match)))) |
15479 | 351 |
352 (ediff-eval-in-buffer patch-buf | |
353 (goto-char (point-min)) | |
354 (or (ediff-get-visible-buffer-window patch-buf) | |
355 (progn | |
356 (pop-to-buffer patch-buf 'other-window) | |
357 (select-window (previous-window))))) | |
358 (ediff-map-patch-buffer patch-buf) | |
359 patch-buf)) | |
360 | |
361 ;; Dispatch the right patch file function: regular or meta-level, | |
362 ;; depending on how many patches are in the patch file. | |
363 ;; At present, there is no support for meta-level patches. | |
364 ;; Should return either the ctl buffer or the meta-buffer | |
365 (defun ediff-dispatch-file-patching-job (patch-buf filename | |
366 &optional startup-hooks) | |
367 (ediff-eval-in-buffer patch-buf | |
368 ;; relativize names in the patch with respect to source-file | |
369 (ediff-fixup-patch-map filename) | |
370 (if (< (length ediff-patch-map) 2) | |
371 (ediff-patch-file-internal | |
372 patch-buf | |
373 (if (and (not (string-match "^/dev/null" (car (car ediff-patch-map)))) | |
374 (> (length (car (car ediff-patch-map))) 1)) | |
375 (car (car ediff-patch-map)) | |
376 filename) | |
377 startup-hooks) | |
378 (ediff-multi-patch-internal patch-buf startup-hooks)) | |
379 )) | |
380 | |
381 | |
382 (defun ediff-patch-buffer-internal (patch-buf buf-to-patch-name | |
383 &optional startup-hooks) | |
384 (let* ((buf-to-patch (get-buffer buf-to-patch-name)) | |
385 (file-name-ok (if buf-to-patch (buffer-file-name buf-to-patch))) | |
386 (buf-mod-status (buffer-modified-p buf-to-patch)) | |
387 (multifile-patch-p (> (length (ediff-eval-in-buffer patch-buf | |
388 ediff-patch-map)) 1)) | |
389 default-dir file-name ctl-buf) | |
390 (if file-name-ok | |
391 (setq file-name file-name-ok) | |
392 (if multifile-patch-p | |
393 (error | |
394 "Can't apply multi-file patches to buffers that visit no files")) | |
395 (ediff-eval-in-buffer buf-to-patch | |
396 (setq default-dir default-directory) | |
397 (setq file-name (ediff-make-temp-file buf-to-patch)) | |
398 (set-visited-file-name file-name) | |
399 (setq buffer-auto-save-file-name nil) ; don't create auto-save file | |
400 ;;don't confuse the user with a new bufname | |
401 (rename-buffer buf-to-patch-name) | |
402 (set-buffer-modified-p nil) | |
403 (set-visited-file-modtime) ; sync buffer and temp file | |
404 (setq default-directory default-dir) | |
405 )) | |
406 | |
407 ;; dispatch a patch function | |
408 (setq ctl-buf (ediff-dispatch-file-patching-job | |
409 patch-buf file-name startup-hooks)) | |
410 | |
411 (if file-name-ok | |
412 () | |
413 ;; buffer wasn't visiting any file, | |
414 ;; so we will not run meta-level ediff here | |
415 (ediff-eval-in-buffer ctl-buf | |
416 (delete-file (buffer-file-name ediff-buffer-A)) | |
417 (delete-file (buffer-file-name ediff-buffer-B)) | |
418 (ediff-eval-in-buffer ediff-buffer-A | |
419 (if default-dir (setq default-directory default-dir)) | |
420 (set-visited-file-name nil) | |
421 (rename-buffer buf-to-patch-name) | |
422 (set-buffer-modified-p buf-mod-status)) | |
423 (ediff-eval-in-buffer ediff-buffer-B | |
424 (setq buffer-auto-save-file-name nil) ; don't create auto-save file | |
425 (if default-dir (setq default-directory default-dir)) | |
426 (set-visited-file-name nil) | |
427 (rename-buffer (ediff-unique-buffer-name | |
428 (concat buf-to-patch-name "_patched") "")) | |
429 (set-buffer-modified-p t)))) | |
430 )) | |
431 | |
432 (defun ediff-patch-file-internal (patch-buf source-filename | |
433 &optional startup-hooks) | |
434 (setq source-filename (expand-file-name source-filename)) | |
435 | |
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
436 (let* ((shell-file-name ediff-shell) |
15479 | 437 (patch-diagnostics (get-buffer-create "*ediff patch diagnostics*")) |
438 ;; ediff-find-file may use a temp file to do the patch | |
439 ;; so, we save source-filename and true-source-filename as a var | |
440 ;; that initially is source-filename but may be changed to a temp | |
441 ;; file for the purpose of patching. | |
442 (true-source-filename source-filename) | |
443 (target-filename source-filename) | |
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
444 target-buf buf-to-patch file-name-magic-p |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
445 patch-return-code ctl-buf backup-style aux-wind) |
15479 | 446 |
447 (if (string-match "-V" ediff-patch-options) | |
448 (error | |
449 "Ediff doesn't take the -V option in `ediff-patch-options'--sorry")) | |
450 | |
451 ;; Make a temp file, if source-filename has a magic file handler (or if | |
452 ;; it is handled via auto-mode-alist and similar magic). | |
453 ;; Check if there is a buffer visiting source-filename and if they are in | |
454 ;; sync; arrange for the deletion of temp file. | |
455 (ediff-find-file 'true-source-filename 'buf-to-patch | |
456 'ediff-last-dir-patch 'startup-hooks) | |
457 | |
458 ;; Check if source file name has triggered black magic, such as file name | |
459 ;; handlers or auto mode alist, and make a note of it. | |
460 ;; true-source-filename should be either the original name or a | |
461 ;; temporary file where we put the after-product of the file handler. | |
462 (setq file-name-magic-p (not (equal (file-truename true-source-filename) | |
463 (file-truename source-filename)))) | |
464 | |
465 ;; Checkout orig file, if necessary, so that the patched file could be | |
466 ;; checked back in. | |
467 (if (ediff-file-checked-in-p (buffer-file-name buf-to-patch)) | |
468 (ediff-toggle-read-only buf-to-patch)) | |
469 | |
470 (ediff-eval-in-buffer patch-diagnostics | |
471 (insert-buffer patch-buf) | |
472 (message "Applying patch ... ") | |
473 ;; fix environment for gnu patch, so it won't make numbered extensions | |
474 (setq backup-style (getenv "VERSION_CONTROL")) | |
475 (setenv "VERSION_CONTROL" nil) | |
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
476 (setq patch-return-code |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
477 (call-process-region |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
478 (point-min) (point-max) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
479 shell-file-name |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
480 t ; delete region (which contains the patch |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
481 t ; insert output (patch diagnostics) in current buffer |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
482 nil ; don't redisplay |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
483 shell-command-switch ; usually -c |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
484 (format "%s %s %s %s" |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
485 ediff-patch-program |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
486 ediff-patch-options |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
487 ediff-backup-specs |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
488 (expand-file-name true-source-filename)) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
489 )) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
490 |
15479 | 491 ;; restore environment for gnu patch |
492 (setenv "VERSION_CONTROL" backup-style)) | |
493 | |
494 (message "Applying patch ... done") | |
495 (message "") | |
496 | |
497 (switch-to-buffer patch-diagnostics) | |
498 (sit-for 0) ; synchronize - let the user see diagnostics | |
499 | |
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
500 (or (and (eq patch-return-code 0) ; patch reported success |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
501 (file-exists-p |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
502 (concat true-source-filename ediff-backup-extension))) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
503 (progn |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
504 (with-output-to-temp-buffer ediff-msg-buffer |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
505 (princ (format " |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
506 Patch has failed OR the backup version of the patched file was not created by |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
507 the patch program. |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
508 |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
509 A possible reason is that the values of the variables |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
510 |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
511 ediff-patch-options = %S |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
512 ediff-backup-extension = %S |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
513 ediff-backup-specs = %S |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
514 |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
515 are not appropriate for the program specified in the variable |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
516 |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
517 ediff-patch-program = %S |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
518 |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
519 See Ediff on-line manual for more details on these variables. |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
520 \(Or use a GNU-compatible patch program and stay out of trouble.\) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
521 |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
522 Type any key to continue... " |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
523 ediff-patch-options |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
524 ediff-backup-extension |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
525 ediff-backup-specs |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
526 ediff-patch-program))) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
527 (beep 1) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
528 (if (setq aux-wind (get-buffer-window ediff-msg-buffer)) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
529 (progn |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
530 (select-window aux-wind) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
531 (goto-char (point-max)))) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
532 (read-char-exclusive) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
533 (if aux-wind (bury-buffer)) ; ediff-msg-buffer |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
534 (if (setq aux-wind (get-buffer-window patch-diagnostics)) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
535 (progn |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
536 (select-window aux-wind) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
537 (bury-buffer))) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
538 (error "Patch appears to have failed"))) |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
539 |
15479 | 540 ;; If black magic is involved, apply patch to a temp copy of the |
541 ;; file. Otherwise, apply patch to the orig copy. If patch is applied | |
542 ;; to temp copy, we name the result old-name_patched for local files | |
543 ;; and temp-copy_patched for remote files. The orig file name isn't | |
544 ;; changed, and the temp copy of the original is later deleted. | |
545 ;; Without magic, the original file is renamed (usually into | |
546 ;; old-name_orig) and the result of patching will have the same name as | |
547 ;; the original. | |
548 (if (not file-name-magic-p) | |
549 (ediff-eval-in-buffer buf-to-patch | |
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
550 (set-visited-file-name |
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
551 (concat source-filename ediff-backup-extension)) |
15479 | 552 (set-buffer-modified-p nil)) |
553 | |
554 ;; Black magic in effect. | |
555 ;; If orig file was remote, put the patched file in the temp directory. | |
556 ;; If orig file is local, put the patched file in the directory of | |
557 ;; the orig file. | |
558 (setq target-filename | |
559 (concat | |
560 (if (ediff-file-remote-p (file-truename source-filename)) | |
561 true-source-filename | |
562 source-filename) | |
563 "_patched")) | |
564 | |
565 (rename-file true-source-filename target-filename t) | |
566 | |
567 ;; arrange that the temp copy of orig will be deleted | |
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
568 (rename-file (concat true-source-filename ediff-backup-extension) |
15479 | 569 true-source-filename t)) |
570 | |
571 ;; make orig buffer read-only | |
572 (setq startup-hooks | |
573 (cons 'ediff-set-read-only-in-buf-A startup-hooks)) | |
574 | |
575 ;; set up a buf for the patched file | |
576 (setq target-buf (find-file-noselect target-filename)) | |
577 | |
578 (setq ctl-buf | |
579 (ediff-buffers-internal | |
580 buf-to-patch target-buf nil | |
581 startup-hooks 'epatch)) | |
582 (ediff-eval-in-buffer ctl-buf | |
583 (setq ediff-patchbufer patch-buf | |
584 ediff-patch-diagnostics patch-diagnostics)) | |
585 | |
586 (bury-buffer patch-diagnostics) | |
587 (message "Type `P', if you need to see patch diagnostics") | |
588 ctl-buf)) | |
589 | |
590 (defun ediff-multi-patch-internal (patch-buf &optional startup-hooks) | |
591 (let (meta-buf) | |
592 (setq startup-hooks | |
593 ;; this sets various vars in the meta buffer inside | |
594 ;; ediff-prepare-meta-buffer | |
595 (cons (` (lambda () | |
596 ;; tell what to do if the user clicks on a session record | |
597 (setq ediff-session-action-function | |
598 'ediff-patch-file-form-meta | |
599 ediff-meta-patchbufer patch-buf) | |
600 )) | |
601 startup-hooks)) | |
602 (setq meta-buf (ediff-prepare-meta-buffer | |
603 'ediff-filegroup-action | |
604 (ediff-eval-in-buffer patch-buf | |
605 ;; nil replaces a regular expression | |
606 (cons (list nil (format "%S" patch-buf)) | |
607 ediff-patch-map)) | |
608 "*Ediff Session Group Panel" | |
609 'ediff-redraw-directory-group-buffer | |
610 'ediff-multifile-patch | |
611 startup-hooks)) | |
612 (ediff-show-meta-buffer meta-buf) | |
613 )) | |
614 | |
615 | |
616 | |
617 | |
618 ;;; Local Variables: | |
619 ;;; eval: (put 'ediff-defvar-local 'lisp-indent-hook 'defun) | |
620 ;;; eval: (put 'ediff-eval-in-buffer 'lisp-indent-hook 1) | |
16248
b2fae8abc5b0
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
16168
diff
changeset
|
621 ;;; eval: (put 'ediff-eval-in-buffer 'edebug-form-spec '(form body)) |
15479 | 622 ;;; End: |
623 | |
624 (provide 'ediff-ptch) | |
625 | |
626 ;;; ediff-ptch.el ends here |