annotate lisp/ediff/ediff-ptch.el @ 181:bfd6434d15b3 r20-3b17

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