1 ;;; ediff-ptch.el --- Ediff's patch support
3 ;; Copyright (C) 1996, 97, 98, 99, 2000, 01, 02 Free Software Foundation, Inc.
5 ;; Author: Michael Kifer <kifer@cs.stonybrook.edu>
7 ;; This file is part of GNU Emacs.
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)
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.
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.
30 (defgroup ediff-ptch nil
37 (defvar ediff-window-A
)
38 (defvar ediff-window-B
)
39 (defvar ediff-window-C
)
40 (defvar ediff-use-last-dir
)
44 (let ((load-path (cons (expand-file-name ".") load-path
)))
45 (or (featurep 'ediff-init
)
46 (load "ediff-init.el" nil nil
'nosuffix
))
47 (or (featurep 'ediff-mult
)
48 (load "ediff-mult.el" nil nil
'nosuffix
))
50 (load "ediff.el" nil nil
'nosuffix
))
56 (defcustom ediff-patch-program
"patch"
57 "*Name of the program that applies patches.
58 It is recommended to use GNU-compatible versions."
61 (defcustom ediff-patch-options
"-f"
62 "*Options to pass to ediff-patch-program.
64 Note: the `-b' option should be specified in `ediff-backup-specs'.
66 It is recommended to pass the `-f' option to the patch program, so it won't ask
67 questions. However, some implementations don't accept this option, in which
68 case the default value for this variable should be changed."
72 (defvar ediff-last-dir-patch nil
73 "Last directory used by an Ediff command for file to patch.")
75 ;; the default backup extension
76 (defconst ediff-default-backup-extension
77 (if (memq system-type
'(vax-vms axp-vms emx ms-dos
))
81 (defcustom ediff-backup-extension ediff-default-backup-extension
82 "Backup extension used by the patch program.
83 See also `ediff-backup-specs'."
87 (defun ediff-test-patch-utility ()
88 (cond ((zerop (call-process ediff-patch-program nil nil nil
"-z." "-b"))
89 ;; GNU `patch' v. >= 2.2
91 ((zerop (call-process ediff-patch-program nil nil nil
"-b"))
95 (defcustom ediff-backup-specs
96 (let ((type (ediff-test-patch-utility)))
98 ;; GNU `patch' v. >= 2.2
99 (format "-z%s -b" ediff-backup-extension
))
101 ;; POSIX `patch' -- ediff-backup-extension must be ".orig"
102 (setq ediff-backup-extension ediff-default-backup-extension
)
105 ;; traditional `patch'
106 (format "-b %s" ediff-backup-extension
))))
107 "*Backup directives to pass to the patch program.
108 Ediff requires that the old version of the file \(before applying the patch\)
109 be saved in a file named `the-patch-file.extension'. Usually `extension' is
110 `.orig', but this can be changed by the user and may depend on the system.
111 Therefore, Ediff needs to know the backup extension used by the patch program.
113 Some versions of the patch program let you specify `-b backup-extension'.
114 Other versions only permit `-b', which assumes the extension `.orig'
115 \(in which case ediff-backup-extension MUST be also `.orig'\). The latest
116 versions of GNU patch require `-b -z backup-extension'.
118 Note that both `ediff-backup-extension' and `ediff-backup-specs'
119 must be set properly. If your patch program takes the option `-b',
120 but not `-b extension', the variable `ediff-backup-extension' must
121 still be set so Ediff will know which extension to use.
123 Ediff tries to guess the appropriate value for this variables. It is believed
124 to be working for `traditional' patch, all versions of GNU patch, and for POSIX
125 patch. So, don't change these variables, unless the default doesn't work."
130 (defcustom ediff-patch-default-directory nil
131 "*Default directory to look for patches."
132 :type
'(choice (const nil
) string
)
135 (defcustom ediff-context-diff-label-regexp
136 (concat "\\(" ; context diff 2-liner
137 "^\\*\\*\\* \\([^ \t]+\\)[^*]+[\t ]*\n--- \\([^ \t]+\\)"
138 "\\|" ; GNU unified format diff 2-liner
139 "^--- \\([^ \t]+\\)[\t ]+.*\n\\+\\+\\+ \\([^ \t]+\\)"
141 "*Regexp matching filename 2-liners at the start of each context diff.
142 You probably don't want to change that, unless you are using an obscure patch
147 ;; The buffer of the patch file. Local to control buffer.
148 (ediff-defvar-local ediff-patchbufer nil
"")
150 ;; The buffer where patch displays its diagnostics.
151 (ediff-defvar-local ediff-patch-diagnostics nil
"")
153 ;; Map of patch buffer. Has the form:
154 ;; ((filename1 marker1 marker2) (filename2 marker1 marker2) ...)
155 ;; where filenames are files to which patch would have applied the patch;
156 ;; marker1 delimits the beginning of the corresponding patch and marker2 does
158 (ediff-defvar-local ediff-patch-map nil
"")
160 ;; strip prefix from filename
161 ;; returns /dev/null, if can't strip prefix
162 (defsubst ediff-file-name-sans-prefix
(filename prefix
)
164 (if (string-match (concat "^" prefix
) filename
)
165 (substring filename
(match-end 0))
166 (concat "/null/" filename
))))
171 ;; return the number of matches of regexp in buf starting from the beginning
172 (defun ediff-count-matches (regexp buf
)
173 (ediff-with-current-buffer buf
174 (let ((count 0) opoint
)
176 (goto-char (point-min))
177 (while (and (not (eobp))
178 (progn (setq opoint
(point))
179 (re-search-forward regexp nil t
)))
180 (if (= opoint
(point))
182 (setq count
(1+ count
)))))
185 ;; Scan BUF (which is supposed to contain a patch) and make a list of the form
186 ;; ((nil nil filename-spec1 marker1 marker2)
187 ;; (nil nil filename-spec2 marker1 marker2) ...)
188 ;; where filename-spec[12] are files to which the `patch' program would
189 ;; have applied the patch.
190 ;; nin, nil are placeholders. See ediff-make-new-meta-list-element in
191 ;; ediff-meta.el for the explanations.
192 ;; In the beginning we don't know exactly which files need to be patched.
193 ;; We usually come up with two candidates and ediff-file-name-sans-prefix
194 ;; resolves this later.
196 ;; The marker `marker1' delimits the beginning of the corresponding patch and
197 ;; `marker2' does it for the end.
198 ;; The result of ediff-map-patch-buffer is a list, which is then assigned
199 ;; to ediff-patch-map.
200 ;; The function returns the number of elements in the list ediff-patch-map
201 (defun ediff-map-patch-buffer (buf)
202 (ediff-with-current-buffer buf
204 (mark1 (move-marker (make-marker) (point-min)))
205 (mark1-end (point-min))
206 (possible-file-names '("/dev/null" .
"/dev/null"))
207 mark2-end mark2 filenames
211 (goto-char (point-min))
212 (setq opoint
(point))
213 (while (and (not (eobp))
214 (re-search-forward ediff-context-diff-label-regexp nil t
))
215 (if (= opoint
(point))
216 (forward-char 1) ; ensure progress towards the end
217 (setq mark2
(move-marker (make-marker) (match-beginning 0))
218 mark2-end
(match-end 0)
219 beg1
(or (match-beginning 2) (match-beginning 4))
220 end1
(or (match-end 2) (match-end 4))
221 beg2
(or (match-beginning 3) (match-beginning 5))
222 end2
(or (match-end 3) (match-end 5)))
223 ;; possible-file-names is holding the new file names until we
224 ;; insert the old file name in the patch map
226 ;; (filename-from-1st-header-line . fn from 2nd line)
227 (setq possible-file-names
228 (cons (if (and beg1 end1
)
229 (buffer-substring beg1 end1
)
232 (buffer-substring beg2 end2
)
234 ;; check for any `Index:' or `Prereq:' lines, but don't use them
235 (if (re-search-backward "^Index:" mark1-end
'noerror
)
236 (move-marker mark2
(match-beginning 0)))
237 (if (re-search-backward "^Prereq:" mark1-end
'noerror
)
238 (move-marker mark2
(match-beginning 0)))
240 (goto-char mark2-end
)
244 (cons (ediff-make-new-meta-list-element
245 filenames mark1 mark2
)
249 filenames possible-file-names
))
252 (setq mark2
(point-max-marker)
253 patch-map
(cons (ediff-make-new-meta-list-element
254 possible-file-names mark1 mark2
)
256 (setq ediff-patch-map
(nreverse patch-map
))
259 ;; Fix up the file names in the list using the argument FILENAME
260 ;; Algorithm: find the first file's directory and cut it out from each file
261 ;; name in the patch. Prepend the directory of FILENAME to each file in the
262 ;; patch. In addition, the first file in the patch is replaced by FILENAME.
263 ;; Each file is actually a file-pair of files found in the context diff header
264 ;; In the end, for each pair, we select the shortest existing file.
265 ;; Note: Ediff doesn't recognize multi-file patches that are separated
266 ;; with the `Index:' line. It treats them as a single-file patch.
268 ;; Executes inside the patch buffer
269 (defun ediff-fixup-patch-map (filename)
270 (setq filename
(expand-file-name filename
))
271 (let ((actual-dir (if (file-directory-p filename
)
272 ;; directory part of filename
273 (file-name-as-directory filename
)
274 (file-name-directory filename
)))
275 ;; Filename-spec is objA; at this point it is represented as
276 ;; (file1 . file2). We get it using ediff-get-session-objA
277 ;; directory part of the first file in the patch
278 (base-dir1 (file-name-directory
279 (car (ediff-get-session-objA-name (car ediff-patch-map
)))))
280 ;; directory part of the 2nd file in the patch
281 (base-dir2 (file-name-directory
282 (cdr (ediff-get-session-objA-name (car ediff-patch-map
)))))
285 ;; chop off base-dirs
286 (mapcar (lambda (session-info)
287 (let ((proposed-file-names
288 (ediff-get-session-objA-name session-info
)))
289 (or (string= (car proposed-file-names
) "/dev/null")
290 (setcar proposed-file-names
291 (ediff-file-name-sans-prefix
292 (car proposed-file-names
) base-dir1
)))
294 (cdr proposed-file-names
) "/dev/null")
295 (setcdr proposed-file-names
296 (ediff-file-name-sans-prefix
297 (cdr proposed-file-names
) base-dir2
)))
301 ;; take the given file name into account
302 (or (file-directory-p filename
)
303 (string= "/dev/null" filename
)
304 (setcar (ediff-get-session-objA (car ediff-patch-map
))
305 (cons (file-name-nondirectory filename
)
306 (file-name-nondirectory filename
))))
308 ;; prepend actual-dir
309 (mapcar (lambda (session-info)
310 (let ((proposed-file-names
311 (ediff-get-session-objA-name session-info
)))
312 (if (and (string-match "^/null/" (car proposed-file-names
))
313 (string-match "^/null/" (cdr proposed-file-names
)))
314 ;; couldn't strip base-dir1 and base-dir2
315 ;; hence, something is wrong
317 (with-output-to-temp-buffer ediff-msg-buffer
318 (ediff-with-current-buffer standard-output
322 The patch file contains a context diff for
325 However, Ediff cannot infer the name of the actual file
326 to be patched on your system. If you know the correct file name,
329 If you don't know and still would like to apply patches to
330 other files, enter /dev/null
332 (substring (car proposed-file-names
) 6)
333 (substring (cdr proposed-file-names
) 6))))
339 "Please enter file name: "
340 actual-dir actual-dir t
))
341 (if (not (file-directory-p user-file
))
345 (message "%s is a directory" user-file
)
347 (setcar (ediff-get-session-objA session-info
)
348 (cons user-file user-file
))))
349 (setcar proposed-file-names
351 (concat actual-dir
(car proposed-file-names
))))
352 (setcdr proposed-file-names
354 (concat actual-dir
(cdr proposed-file-names
)))))
357 ;; check for the shorter existing file in each pair and discard the other
359 (mapcar (lambda (session-info)
360 (let* ((file1 (car (ediff-get-session-objA-name session-info
)))
361 (file2 (cdr (ediff-get-session-objA-name session-info
)))
363 (ediff-get-session-objA session-info
))
364 (f1-exists (file-exists-p file1
))
365 (f2-exists (file-exists-p file2
)))
367 ((and (< (length file2
) (length file1
))
369 ;; replace file-pair with the winning file2
370 (setcar session-file-object file2
))
371 ((and (< (length file1
) (length file2
))
373 ;; replace file-pair with the winning file1
374 (setcar session-file-object file1
))
375 ((and f1-exists f2-exists
376 (string= file1 file2
))
377 (setcar session-file-object file1
))
378 ((and f1-exists f2-exists
)
379 (with-output-to-temp-buffer ediff-msg-buffer
380 (ediff-with-current-buffer standard-output
383 Ediff has inferred that
386 are two possible targets for applying the patch.
387 Both files seem to be plausible alternatives.
390 Type `y' to use %s as the target;
391 Type `n' to use %s as the target.
393 file1 file2 file2 file1
)))
394 (setcar session-file-object
395 (if (y-or-n-p (format "Use %s ? " file2
))
397 (f2-exists (setcar session-file-object file2
))
398 (f1-exists (setcar session-file-object file1
))
400 (with-output-to-temp-buffer ediff-msg-buffer
401 (ediff-with-current-buffer standard-output
403 (princ "\nEdiff has inferred that")
404 (if (string= file1 file2
)
407 is the target for this patch. However, this file does not exist."
412 are two possible targets for this patch. However, these files do not exist."
415 \nPlease enter an alternative patch target ...\n"))
419 (setq target
(read-file-name
420 "Please enter a patch target: "
421 actual-dir actual-dir t
))
422 (if (not (file-directory-p target
))
425 (message "%s is a directory" target
)
427 (setcar session-file-object target
))))))
431 (defun ediff-show-patch-diagnostics ()
433 (cond ((window-live-p ediff-window-A
)
434 (set-window-buffer ediff-window-A ediff-patch-diagnostics
))
435 ((window-live-p ediff-window-B
)
436 (set-window-buffer ediff-window-B ediff-patch-diagnostics
))
437 (t (display-buffer ediff-patch-diagnostics
'not-this-window
))))
439 ;; prompt for file, get the buffer
440 (defun ediff-prompt-for-patch-file ()
441 (let ((dir (cond (ediff-patch-default-directory) ; try patch default dir
442 (ediff-use-last-dir ediff-last-dir-patch
)
443 (t default-directory
)))
444 (coding-system-for-read ediff-coding-system-for-read
))
447 (format "Patch is in file:%s "
448 (cond ((and buffer-file-name
449 (equal (expand-file-name dir
)
450 (file-name-directory buffer-file-name
)))
453 (file-name-nondirectory buffer-file-name
)
456 dir buffer-file-name
'must-match
))
460 ;; Try current buffer, then the other window's buffer. Else, give up.
461 (defun ediff-prompt-for-patch-buffer ()
464 "Buffer that holds the patch: "
465 (cond ((save-excursion
466 (goto-char (point-min))
467 (re-search-forward ediff-context-diff-label-regexp nil t
))
469 ((save-window-excursion
472 (goto-char (point-min))
473 (and (re-search-forward ediff-context-diff-label-regexp nil t
)
475 ((save-window-excursion
478 (goto-char (point-min))
479 (and (re-search-forward ediff-context-diff-label-regexp nil t
)
481 (t (ediff-other-buffer (current-buffer))))
485 (defun ediff-get-patch-buffer (&optional arg patch-buf
)
486 "Obtain patch buffer. If patch is already in a buffer---use it.
487 Else, read patch file into a new buffer. If patch buffer is passed as an
488 optional argument, then use it."
489 (let ((last-nonmenu-event t
) ; Emacs: don't use dialog box
490 last-command-event
) ; XEmacs: don't use dialog box
492 (cond ((ediff-buffer-live-p patch-buf
))
493 ;; even prefix arg: patch in buffer
494 ((and (integerp arg
) (eq 0 (mod arg
2)))
495 (setq patch-buf
(ediff-prompt-for-patch-buffer)))
496 ;; odd prefix arg: get patch from a file
497 ((and (integerp arg
) (eq 1 (mod arg
2)))
498 (setq patch-buf
(ediff-prompt-for-patch-file)))
500 (if (y-or-n-p "Is the patch already in a buffer? ")
501 (ediff-prompt-for-patch-buffer)
502 (ediff-prompt-for-patch-file)))))
504 (ediff-with-current-buffer patch-buf
505 (goto-char (point-min))
506 (or (ediff-get-visible-buffer-window patch-buf
)
508 (pop-to-buffer patch-buf
'other-window
)
509 (select-window (previous-window)))))
510 (ediff-map-patch-buffer patch-buf
)
513 ;; Dispatch the right patch file function: regular or meta-level,
514 ;; depending on how many patches are in the patch file.
515 ;; At present, there is no support for meta-level patches.
516 ;; Should return either the ctl buffer or the meta-buffer
517 (defun ediff-dispatch-file-patching-job (patch-buf filename
518 &optional startup-hooks
)
519 (ediff-with-current-buffer patch-buf
520 ;; relativize names in the patch with respect to source-file
521 (ediff-fixup-patch-map filename
)
522 (if (< (length ediff-patch-map
) 2)
523 (ediff-patch-file-internal
525 (if (and ediff-patch-map
528 ;; this is the file to patch
529 (ediff-get-session-objA-name (car ediff-patch-map
))))
531 (ediff-get-session-objA-name (car ediff-patch-map
)))
533 (ediff-get-session-objA-name (car ediff-patch-map
))
536 (ediff-multi-patch-internal patch-buf startup-hooks
))
540 ;; When patching a buffer, never change the orig file. Instead, create a new
541 ;; buffer, ***_patched, even if the buff visits a file.
542 ;; Users who want to actually patch the buffer should use
543 ;; ediff-patch-file, not ediff-patch-buffer.
544 (defun ediff-patch-buffer-internal (patch-buf
546 &optional startup-hooks
)
547 (let* ((buf-to-patch (get-buffer buf-to-patch-name
))
548 (visited-file (if buf-to-patch
(buffer-file-name buf-to-patch
)))
549 (buf-mod-status (buffer-modified-p buf-to-patch
))
550 (multifile-patch-p (> (length (ediff-with-current-buffer patch-buf
551 ediff-patch-map
)) 1))
552 default-dir file-name ctl-buf
)
553 (if multifile-patch-p
555 "To apply multi-file patches, please use `ediff-patch-file'"))
557 ;; create a temp file to patch
558 (ediff-with-current-buffer buf-to-patch
559 (setq default-dir default-directory
)
560 (setq file-name
(ediff-make-temp-file buf-to-patch
))
561 ;; temporarily switch visited file name, if any
562 (set-visited-file-name file-name
)
563 ;; don't create auto-save file, if buff was visiting a file
565 (setq buffer-auto-save-file-name nil
))
566 ;; don't confuse the user with a new bufname
567 (rename-buffer buf-to-patch-name
)
568 (set-buffer-modified-p nil
)
569 (set-visited-file-modtime) ; sync buffer and temp file
570 (setq default-directory default-dir
)
573 ;; dispatch a patch function
574 (setq ctl-buf
(ediff-dispatch-file-patching-job
575 patch-buf file-name startup-hooks
))
577 (ediff-with-current-buffer ctl-buf
578 (delete-file (buffer-file-name ediff-buffer-A
))
579 (delete-file (buffer-file-name ediff-buffer-B
))
580 (ediff-with-current-buffer ediff-buffer-A
581 (if default-dir
(setq default-directory default-dir
))
582 (set-visited-file-name visited-file
) ; visited-file might be nil
583 (rename-buffer buf-to-patch-name
)
584 (set-buffer-modified-p buf-mod-status
))
585 (ediff-with-current-buffer ediff-buffer-B
586 (setq buffer-auto-save-file-name nil
) ; don't create auto-save file
587 (if default-dir
(setq default-directory default-dir
))
588 (set-visited-file-name nil
)
589 (rename-buffer (ediff-unique-buffer-name
590 (concat buf-to-patch-name
"_patched") ""))
591 (set-buffer-modified-p t
)))
595 ;; Traditional patch has weird return codes.
596 ;; GNU and Posix return 1 if some hanks failed and 2 in case of trouble.
597 ;; 0 is a good code in all cases.
598 ;; We'll do the concervative thing.
599 (defun ediff-patch-return-code-ok (code)
601 ;;; (if (eq (ediff-test-patch-utility) 'traditional)
603 ;;; (not (eq code 2))))
605 (defun ediff-patch-file-internal (patch-buf source-filename
606 &optional startup-hooks
)
607 (setq source-filename
(expand-file-name source-filename
))
609 (let* ((shell-file-name ediff-shell
)
610 (patch-diagnostics (get-buffer-create "*ediff patch diagnostics*"))
611 ;; ediff-find-file may use a temp file to do the patch
612 ;; so, we save source-filename and true-source-filename as a var
613 ;; that initially is source-filename but may be changed to a temp
614 ;; file for the purpose of patching.
615 (true-source-filename source-filename
)
616 (target-filename source-filename
)
617 ;; this ensures that the patch process gets patch buffer in the
618 ;; encoding that Emacs thinks is right for that type of text
619 (coding-system-for-write
620 (if (boundp 'buffer-file-coding-system
) buffer-file-coding-system
))
621 target-buf buf-to-patch file-name-magic-p
622 patch-return-code ctl-buf backup-style aux-wind
)
624 (if (string-match "V" ediff-patch-options
)
626 "Ediff doesn't take the -V option in `ediff-patch-options'--sorry"))
628 ;; Make a temp file, if source-filename has a magic file handler (or if
629 ;; it is handled via auto-mode-alist and similar magic).
630 ;; Check if there is a buffer visiting source-filename and if they are in
631 ;; sync; arrange for the deletion of temp file.
632 (ediff-find-file 'true-source-filename
'buf-to-patch
633 'ediff-last-dir-patch
'startup-hooks
)
635 ;; Check if source file name has triggered black magic, such as file name
636 ;; handlers or auto mode alist, and make a note of it.
637 ;; true-source-filename should be either the original name or a
638 ;; temporary file where we put the after-product of the file handler.
639 (setq file-name-magic-p
(not (equal (file-truename true-source-filename
)
640 (file-truename source-filename
))))
642 ;; Checkout orig file, if necessary, so that the patched file
643 ;; could be checked back in.
644 (ediff-maybe-checkout buf-to-patch
)
646 (ediff-with-current-buffer patch-diagnostics
647 (insert-buffer patch-buf
)
648 (message "Applying patch ... ")
649 ;; fix environment for gnu patch, so it won't make numbered extensions
650 (setq backup-style
(getenv "VERSION_CONTROL"))
651 (setenv "VERSION_CONTROL" nil
)
652 (setq patch-return-code
654 (point-min) (point-max)
656 t
; delete region (which contains the patch
657 t
; insert output (patch diagnostics) in current buffer
658 nil
; don't redisplay
659 shell-command-switch
; usually -c
660 (format "%s %s %s %s"
664 (expand-file-name true-source-filename
))
667 ;; restore environment for gnu patch
668 (setenv "VERSION_CONTROL" backup-style
))
670 (message "Applying patch ... done")
673 (switch-to-buffer patch-diagnostics
)
674 (sit-for 0) ; synchronize - let the user see diagnostics
676 (or (and (ediff-patch-return-code-ok patch-return-code
)
678 (concat true-source-filename ediff-backup-extension
)))
680 (with-output-to-temp-buffer ediff-msg-buffer
681 (ediff-with-current-buffer standard-output
684 "Patch program has failed due to a bad patch file,
685 it couldn't apply all hunks, OR
686 it couldn't create the backup for the file being patched.
688 The former could be caused by a corrupt patch file or because the %S
689 program doesn't understand the format of the patch file in use.
691 The second problem might be due to an incompatibility among these settings:
692 ediff-patch-program = %S ediff-patch-options = %S
693 ediff-backup-extension = %S ediff-backup-specs = %S
695 See Ediff on-line manual for more details on these variables.
696 In particular, check the documentation for `ediff-backup-specs'.
698 In any of the above cases, Ediff doesn't compare files automatically.
699 However, if the patch was applied partially and the backup file was created,
700 you can still examine the changes via M-x ediff-files"
704 ediff-backup-extension
708 (if (setq aux-wind
(get-buffer-window ediff-msg-buffer
))
710 (select-window aux-wind
)
711 (goto-char (point-max))))
712 (switch-to-buffer-other-window patch-diagnostics
)
713 (error "Patch appears to have failed")))
715 ;; If black magic is involved, apply patch to a temp copy of the
716 ;; file. Otherwise, apply patch to the orig copy. If patch is applied
717 ;; to temp copy, we name the result old-name_patched for local files
718 ;; and temp-copy_patched for remote files. The orig file name isn't
719 ;; changed, and the temp copy of the original is later deleted.
720 ;; Without magic, the original file is renamed (usually into
721 ;; old-name_orig) and the result of patching will have the same name as
723 (if (not file-name-magic-p
)
724 (ediff-with-current-buffer buf-to-patch
725 (set-visited-file-name
726 (concat source-filename ediff-backup-extension
))
727 (set-buffer-modified-p nil
))
729 ;; Black magic in effect.
730 ;; If orig file was remote, put the patched file in the temp directory.
731 ;; If orig file is local, put the patched file in the directory of
733 (setq target-filename
735 (if (ediff-file-remote-p (file-truename source-filename
))
740 (rename-file true-source-filename target-filename t
)
742 ;; arrange that the temp copy of orig will be deleted
743 (rename-file (concat true-source-filename ediff-backup-extension
)
744 true-source-filename t
))
746 ;; make orig buffer read-only
748 (cons 'ediff-set-read-only-in-buf-A startup-hooks
))
750 ;; set up a buf for the patched file
751 (setq target-buf
(find-file-noselect target-filename
))
754 (ediff-buffers-internal
755 buf-to-patch target-buf nil
756 startup-hooks
'epatch
))
757 (ediff-with-current-buffer ctl-buf
758 (setq ediff-patchbufer patch-buf
759 ediff-patch-diagnostics patch-diagnostics
))
761 (bury-buffer patch-diagnostics
)
762 (message "Type `P', if you need to see patch diagnostics")
765 (defun ediff-multi-patch-internal (patch-buf &optional startup-hooks
)
768 ;; this sets various vars in the meta buffer inside
769 ;; ediff-prepare-meta-buffer
771 ;; tell what to do if the user clicks on a session record
772 (setq ediff-session-action-function
773 'ediff-patch-file-form-meta
774 ediff-meta-patchbufer patch-buf
) )
776 (setq meta-buf
(ediff-prepare-meta-buffer
777 'ediff-filegroup-action
778 (ediff-with-current-buffer patch-buf
779 (cons (ediff-make-new-meta-list-header
781 (format "%S" patch-buf
) ; obj A
782 nil nil
; objects B,C
783 nil
; merge-auto-store-dir
784 nil
; comparison-func
787 "*Ediff Session Group Panel"
788 'ediff-redraw-directory-group-buffer
789 'ediff-multifile-patch
791 (ediff-show-meta-buffer meta-buf
)
798 ;;; eval: (put 'ediff-defvar-local 'lisp-indent-hook 'defun)
799 ;;; eval: (put 'ediff-with-current-buffer 'lisp-indent-hook 1)
800 ;;; eval: (put 'ediff-with-current-buffer 'edebug-form-spec '(form body))
803 ;;; ediff-ptch.el ends here