]> code.delx.au - gnu-emacs/blob - lisp/diff-mode.el
* diff-mode.el (diff-file-junk-re): Recognize the git format for
[gnu-emacs] / lisp / diff-mode.el
1 ;;; diff-mode.el --- a mode for viewing/editing context diffs
2
3 ;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
5
6 ;; Author: Stefan Monnier <monnier@iro.umontreal.ca>
7 ;; Keywords: convenience patch diff
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 3, or (at your option)
14 ;; any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02110-1301, USA.
25
26 ;;; Commentary:
27
28 ;; Provides support for font-lock, outline, navigation
29 ;; commands, editing and various conversions as well as jumping
30 ;; to the corresponding source file.
31
32 ;; Inspired by Pavel Machek's patch-mode.el (<pavel@@atrey.karlin.mff.cuni.cz>)
33 ;; Some efforts were spent to have it somewhat compatible with XEmacs'
34 ;; diff-mode as well as with compilation-minor-mode
35
36 ;; Bugs:
37
38 ;; - Reverse doesn't work with normal diffs.
39
40 ;; Todo:
41
42 ;; - Improve `diff-add-change-log-entries-other-window',
43 ;; it is very simplistic now.
44 ;;
45 ;; - Add a `delete-after-apply' so C-c C-a automatically deletes hunks.
46 ;; Also allow C-c C-a to delete already-applied hunks.
47 ;;
48 ;; - Try `diff <file> <hunk>' to try and fuzzily discover the source location
49 ;; of a hunk. Show then the changes between <file> and <hunk> and make it
50 ;; possible to apply them to <file>, <hunk-src>, or <hunk-dst>.
51 ;; Or maybe just make it into a ".rej to diff3-markers converter".
52 ;; Maybe just use `wiggle' (by Neil Brown) to do it for us.
53 ;;
54 ;; - in diff-apply-hunk, strip context in replace-match to better
55 ;; preserve markers and spacing.
56 ;; - Handle `diff -b' output in context->unified.
57
58 ;;; Code:
59 (eval-when-compile (require 'cl))
60
61 (defvar add-log-buffer-file-name-function)
62
63
64 (defgroup diff-mode ()
65 "Major mode for viewing/editing diffs."
66 :version "21.1"
67 :group 'tools
68 :group 'diff)
69
70 (defcustom diff-default-read-only nil
71 "If non-nil, `diff-mode' buffers default to being read-only."
72 :type 'boolean
73 :group 'diff-mode)
74
75 (defcustom diff-jump-to-old-file nil
76 "Non-nil means `diff-goto-source' jumps to the old file.
77 Else, it jumps to the new file."
78 :type 'boolean
79 :group 'diff-mode)
80
81 (defcustom diff-update-on-the-fly t
82 "*Non-nil means hunk headers are kept up-to-date on-the-fly.
83 When editing a diff file, the line numbers in the hunk headers
84 need to be kept consistent with the actual diff. This can
85 either be done on the fly (but this sometimes interacts poorly with the
86 undo mechanism) or whenever the file is written (can be slow
87 when editing big diffs)."
88 :type 'boolean
89 :group 'diff-mode)
90
91 (defcustom diff-advance-after-apply-hunk t
92 "*Non-nil means `diff-apply-hunk' will move to the next hunk after applying."
93 :type 'boolean
94 :group 'diff-mode)
95
96 (defcustom diff-auto-refine t
97 "Automatically highlight changes in detail as the user visits hunks."
98 :type 'boolean
99 :group 'diff-mode)
100
101 (defcustom diff-mode-hook nil
102 "Run after setting up the `diff-mode' major mode."
103 :type 'hook
104 :options '(diff-delete-empty-files diff-make-unified)
105 :group 'diff-mode)
106
107 (defvar diff-outline-regexp
108 "\\([*+][*+][*+] [^0-9]\\|@@ ...\\|\\*\\*\\* [0-9].\\|--- [0-9]..\\)")
109
110 ;;;;
111 ;;;; keymap, menu, ...
112 ;;;;
113
114 (easy-mmode-defmap diff-mode-shared-map
115 '(;; From Pavel Machek's patch-mode.
116 ("n" . diff-hunk-next)
117 ("N" . diff-file-next)
118 ("p" . diff-hunk-prev)
119 ("P" . diff-file-prev)
120 ("\t" . diff-hunk-next)
121 ([backtab] . diff-hunk-prev)
122 ("k" . diff-hunk-kill)
123 ("K" . diff-file-kill)
124 ;; From compilation-minor-mode.
125 ("}" . diff-file-next)
126 ("{" . diff-file-prev)
127 ("\C-m" . diff-goto-source)
128 ([mouse-2] . diff-goto-source)
129 ;; From XEmacs' diff-mode.
130 ;; Standard M-w is useful, so don't change M-W.
131 ;;("W" . widen)
132 ;;("." . diff-goto-source) ;display-buffer
133 ;;("f" . diff-goto-source) ;find-file
134 ("o" . diff-goto-source) ;other-window
135 ;;("w" . diff-goto-source) ;other-frame
136 ;;("N" . diff-narrow)
137 ;;("h" . diff-show-header)
138 ;;("j" . diff-show-difference) ;jump to Nth diff
139 ;;("q" . diff-quit)
140 ;; Not useful if you have to metafy them.
141 ;;(" " . scroll-up)
142 ;;("\177" . scroll-down)
143 ;; Standard M-a is useful, so don't change M-A.
144 ;;("A" . diff-ediff-patch)
145 ;; Standard M-r is useful, so don't change M-r or M-R.
146 ;;("r" . diff-restrict-view)
147 ;;("R" . diff-reverse-direction)
148 ("q" . quit-window))
149 "Basic keymap for `diff-mode', bound to various prefix keys.")
150
151 (easy-mmode-defmap diff-mode-map
152 `(("\e" . ,diff-mode-shared-map)
153 ;; From compilation-minor-mode.
154 ("\C-c\C-c" . diff-goto-source)
155 ;; By analogy with the global C-x 4 a binding.
156 ("\C-x4A" . diff-add-change-log-entries-other-window)
157 ;; Misc operations.
158 ("\C-c\C-a" . diff-apply-hunk)
159 ("\C-c\C-e" . diff-ediff-patch)
160 ("\C-c\C-n" . diff-restrict-view)
161 ("\C-c\C-s" . diff-split-hunk)
162 ("\C-c\C-t" . diff-test-hunk)
163 ("\C-c\C-r" . diff-reverse-direction)
164 ("\C-c\C-u" . diff-context->unified)
165 ;; `d' because it duplicates the context :-( --Stef
166 ("\C-c\C-d" . diff-unified->context)
167 ("\C-c\C-w" . diff-ignore-whitespace-hunk)
168 ("\C-c\C-b" . diff-refine-hunk) ;No reason for `b' :-(
169 ("\C-c\C-f" . next-error-follow-minor-mode))
170 "Keymap for `diff-mode'. See also `diff-mode-shared-map'.")
171
172 (easy-menu-define diff-mode-menu diff-mode-map
173 "Menu for `diff-mode'."
174 '("Diff"
175 ["Jump to Source" diff-goto-source
176 :help "Jump to the corresponding source line"]
177 ["Apply hunk" diff-apply-hunk
178 :help "Apply the current hunk to the source file and go to the next"]
179 ["Test applying hunk" diff-test-hunk
180 :help "See whether it's possible to apply the current hunk"]
181 ["Apply diff with Ediff" diff-ediff-patch
182 :help "Call `ediff-patch-file' on the current buffer"]
183 ["Create Change Log entries" diff-add-change-log-entries-other-window
184 :help "Create ChangeLog entries for the changes in the diff buffer"]
185 "-----"
186 ["Reverse direction" diff-reverse-direction
187 :help "Reverse the direction of the diffs"]
188 ["Context -> Unified" diff-context->unified
189 :help "Convert context diffs to unified diffs"]
190 ["Unified -> Context" diff-unified->context
191 :help "Convert unified diffs to context diffs"]
192 ;;["Fixup Headers" diff-fixup-modifs (not buffer-read-only)]
193 "-----"
194 ["Split hunk" diff-split-hunk
195 :active (diff-splittable-p)
196 :help "Split the current (unified diff) hunk at point into two hunks"]
197 ["Ignore whitespace changes" diff-ignore-whitespace-hunk
198 :help "Re-diff the current hunk, ignoring whitespace differences"]
199 ["Highlight fine changes" diff-refine-hunk
200 :help "Highlight changes of hunk at point at a finer granularity"]
201 ["Kill current hunk" diff-hunk-kill
202 :help "Kill current hunk"]
203 ["Kill current file's hunks" diff-file-kill
204 :help "Kill all current file's hunks"]
205 "-----"
206 ["Previous Hunk" diff-hunk-prev
207 :help "Go to the previous count'th hunk"]
208 ["Next Hunk" diff-hunk-next
209 :help "Go to the next count'th hunk"]
210 ["Previous File" diff-file-prev
211 :help "Go to the previous count'th file"]
212 ["Next File" diff-file-next
213 :help "Go to the next count'th file"]
214 ))
215
216 (defcustom diff-minor-mode-prefix "\C-c="
217 "Prefix key for `diff-minor-mode' commands."
218 :type '(choice (string "\e") (string "C-c=") string)
219 :group 'diff-mode)
220
221 (easy-mmode-defmap diff-minor-mode-map
222 `((,diff-minor-mode-prefix . ,diff-mode-shared-map))
223 "Keymap for `diff-minor-mode'. See also `diff-mode-shared-map'.")
224
225
226 ;;;;
227 ;;;; font-lock support
228 ;;;;
229
230 (defface diff-header
231 '((((class color) (min-colors 88) (background light))
232 :background "grey80")
233 (((class color) (min-colors 88) (background dark))
234 :background "grey45")
235 (((class color) (background light))
236 :foreground "blue1" :weight bold)
237 (((class color) (background dark))
238 :foreground "green" :weight bold)
239 (t :weight bold))
240 "`diff-mode' face inherited by hunk and index header faces."
241 :group 'diff-mode)
242 ;; backward-compatibility alias
243 (put 'diff-header-face 'face-alias 'diff-header)
244 (defvar diff-header-face 'diff-header)
245
246 (defface diff-file-header
247 '((((class color) (min-colors 88) (background light))
248 :background "grey70" :weight bold)
249 (((class color) (min-colors 88) (background dark))
250 :background "grey60" :weight bold)
251 (((class color) (background light))
252 :foreground "green" :weight bold)
253 (((class color) (background dark))
254 :foreground "cyan" :weight bold)
255 (t :weight bold)) ; :height 1.3
256 "`diff-mode' face used to highlight file header lines."
257 :group 'diff-mode)
258 ;; backward-compatibility alias
259 (put 'diff-file-header-face 'face-alias 'diff-file-header)
260 (defvar diff-file-header-face 'diff-file-header)
261
262 (defface diff-index
263 '((t :inherit diff-file-header))
264 "`diff-mode' face used to highlight index header lines."
265 :group 'diff-mode)
266 ;; backward-compatibility alias
267 (put 'diff-index-face 'face-alias 'diff-index)
268 (defvar diff-index-face 'diff-index)
269
270 (defface diff-hunk-header
271 '((t :inherit diff-header))
272 "`diff-mode' face used to highlight hunk header lines."
273 :group 'diff-mode)
274 ;; backward-compatibility alias
275 (put 'diff-hunk-header-face 'face-alias 'diff-hunk-header)
276 (defvar diff-hunk-header-face 'diff-hunk-header)
277
278 (defface diff-removed
279 '((t :inherit diff-changed))
280 "`diff-mode' face used to highlight removed lines."
281 :group 'diff-mode)
282 ;; backward-compatibility alias
283 (put 'diff-removed-face 'face-alias 'diff-removed)
284 (defvar diff-removed-face 'diff-removed)
285
286 (defface diff-added
287 '((t :inherit diff-changed))
288 "`diff-mode' face used to highlight added lines."
289 :group 'diff-mode)
290 ;; backward-compatibility alias
291 (put 'diff-added-face 'face-alias 'diff-added)
292 (defvar diff-added-face 'diff-added)
293
294 (defface diff-changed
295 '((((type tty pc) (class color) (background light))
296 :foreground "magenta" :weight bold :slant italic)
297 (((type tty pc) (class color) (background dark))
298 :foreground "yellow" :weight bold :slant italic))
299 "`diff-mode' face used to highlight changed lines."
300 :group 'diff-mode)
301 ;; backward-compatibility alias
302 (put 'diff-changed-face 'face-alias 'diff-changed)
303 (defvar diff-changed-face 'diff-changed)
304
305 (defface diff-indicator-removed
306 '((t :inherit diff-removed))
307 "`diff-mode' face used to highlight indicator of removed lines (-, <)."
308 :group 'diff-mode
309 :version "22.1")
310 (defvar diff-indicator-removed-face 'diff-indicator-removed)
311
312 (defface diff-indicator-added
313 '((t :inherit diff-added))
314 "`diff-mode' face used to highlight indicator of added lines (+, >)."
315 :group 'diff-mode
316 :version "22.1")
317 (defvar diff-indicator-added-face 'diff-indicator-added)
318
319 (defface diff-indicator-changed
320 '((t :inherit diff-changed))
321 "`diff-mode' face used to highlight indicator of changed lines."
322 :group 'diff-mode
323 :version "22.1")
324 (defvar diff-indicator-changed-face 'diff-indicator-changed)
325
326 (defface diff-function
327 '((t :inherit diff-header))
328 "`diff-mode' face used to highlight function names produced by \"diff -p\"."
329 :group 'diff-mode)
330 ;; backward-compatibility alias
331 (put 'diff-function-face 'face-alias 'diff-function)
332 (defvar diff-function-face 'diff-function)
333
334 (defface diff-context
335 '((((class color grayscale) (min-colors 88)) :inherit shadow))
336 "`diff-mode' face used to highlight context and other side-information."
337 :group 'diff-mode)
338 ;; backward-compatibility alias
339 (put 'diff-context-face 'face-alias 'diff-context)
340 (defvar diff-context-face 'diff-context)
341
342 (defface diff-nonexistent
343 '((t :inherit diff-file-header))
344 "`diff-mode' face used to highlight nonexistent files in recursive diffs."
345 :group 'diff-mode)
346 ;; backward-compatibility alias
347 (put 'diff-nonexistent-face 'face-alias 'diff-nonexistent)
348 (defvar diff-nonexistent-face 'diff-nonexistent)
349
350 (defconst diff-yank-handler '(diff-yank-function))
351 (defun diff-yank-function (text)
352 ;; FIXME: the yank-handler is now called separately on each piece of text
353 ;; with a yank-handler property, so the next-single-property-change call
354 ;; below will always return nil :-( --stef
355 (let ((mixed (next-single-property-change 0 'yank-handler text))
356 (start (point)))
357 ;; First insert the text.
358 (insert text)
359 ;; If the text does not include any diff markers and if we're not
360 ;; yanking back into a diff-mode buffer, get rid of the prefixes.
361 (unless (or mixed (derived-mode-p 'diff-mode))
362 (undo-boundary) ; Just in case the user wanted the prefixes.
363 (let ((re (save-excursion
364 (if (re-search-backward "^[><!][ \t]" start t)
365 (if (eq (char-after) ?!)
366 "^[!+- ][ \t]" "^[<>][ \t]")
367 "^[ <>!+-]"))))
368 (save-excursion
369 (while (re-search-backward re start t)
370 (replace-match "" t t)))))))
371
372 (defconst diff-hunk-header-re-unified
373 "^@@ -\\([0-9]+\\)\\(?:,\\([0-9]+\\)\\)? \\+\\([0-9]+\\)\\(?:,\\([0-9]+\\)\\) @@")
374
375 (defvar diff-font-lock-keywords
376 `((,(concat "\\(" diff-hunk-header-re-unified "\\)\\(.*\\)$")
377 (1 diff-hunk-header-face) (6 diff-function-face))
378 ("^\\(\\*\\{15\\}\\)\\(.*\\)$" ;context
379 (1 diff-hunk-header-face) (2 diff-function-face))
380 ("^\\*\\*\\* .+ \\*\\*\\*\\*". diff-hunk-header-face) ;context
381 ("^--- .+ ----$" . diff-hunk-header-face) ;context
382 ("^[0-9,]+[acd][0-9,]+$" . diff-hunk-header-face) ;normal
383 ("^---$" . diff-hunk-header-face) ;normal
384 ;; For file headers, accept files with spaces, but be careful to rule
385 ;; out false-positives when matching hunk headers.
386 ("^\\(---\\|\\+\\+\\+\\|\\*\\*\\*\\) \\([^\t\n]+?\\)\\(?:\t.*\\| \\(\\*\\*\\*\\*\\|----\\)\\)?\n"
387 (0 diff-header-face)
388 (2 (if (not (match-end 3)) diff-file-header-face) prepend))
389 ("^\\([-<]\\)\\(.*\n\\)"
390 (1 diff-indicator-removed-face) (2 diff-removed-face))
391 ("^\\([+>]\\)\\(.*\n\\)"
392 (1 diff-indicator-added-face) (2 diff-added-face))
393 ("^\\(!\\)\\(.*\n\\)"
394 (1 diff-indicator-changed-face) (2 diff-changed-face))
395 ("^Index: \\(.+\\).*\n"
396 (0 diff-header-face) (1 diff-index-face prepend))
397 ("^Only in .*\n" . diff-nonexistent-face)
398 ("^\\(#\\)\\(.*\\)"
399 (1 font-lock-comment-delimiter-face)
400 (2 font-lock-comment-face))
401 ("^[^-=+*!<>#].*\n" (0 diff-context-face))))
402
403 (defconst diff-font-lock-defaults
404 '(diff-font-lock-keywords t nil nil nil (font-lock-multiline . nil)))
405
406 (defvar diff-imenu-generic-expression
407 ;; Prefer second name as first is most likely to be a backup or
408 ;; version-control name. The [\t\n] at the end of the unidiff pattern
409 ;; catches Debian source diff files (which lack the trailing date).
410 '((nil "\\+\\+\\+\\ \\([^\t\n]+\\)[\t\n]" 1) ; unidiffs
411 (nil "^--- \\([^\t\n]+\\)\t.*\n\\*" 1))) ; context diffs
412
413 ;;;;
414 ;;;; Movement
415 ;;;;
416
417 (defvar diff-valid-unified-empty-line t
418 "If non-nil, empty lines are valid in unified diffs.
419 Some versions of diff replace all-blank context lines in unified format with
420 empty lines. This makes the format less robust, but is tolerated.
421 See http://lists.gnu.org/archive/html/emacs-devel/2007-11/msg01990.html")
422
423 (defconst diff-hunk-header-re
424 (concat "^\\(?:" diff-hunk-header-re-unified ".*\\|\\*\\{15\\}.*\n\\*\\*\\* .+ \\*\\*\\*\\*\\|[0-9]+\\(,[0-9]+\\)?[acd][0-9]+\\(,[0-9]+\\)?\\)$"))
425 (defconst diff-file-header-re (concat "^\\(--- .+\n\\+\\+\\+ \\|\\*\\*\\* .+\n--- \\|[^-+!<>0-9@* ]\\).+\n" (substring diff-hunk-header-re 1)))
426 (defvar diff-narrowed-to nil)
427
428 (defun diff-hunk-style (&optional style)
429 (when (looking-at diff-hunk-header-re)
430 (setq style (cdr (assq (char-after) '((?@ . unified) (?* . context)))))
431 (goto-char (match-end 0)))
432 style)
433
434 (defun diff-end-of-hunk (&optional style donttrustheader)
435 (let (end)
436 (when (looking-at diff-hunk-header-re)
437 ;; Especially important for unified (because headers are ambiguous).
438 (setq style (diff-hunk-style style))
439 (goto-char (match-end 0))
440 (when (and (not donttrustheader) (match-end 2))
441 (save-excursion
442 (re-search-forward (if diff-valid-unified-empty-line
443 "^[- \n]" "^[- ]")
444 nil t
445 (string-to-number (match-string 2)))
446 (setq end (line-beginning-position 2)))))
447 ;; We may have a first evaluation of `end' thanks to the hunk header.
448 (unless end
449 (setq end (and (re-search-forward
450 (case style
451 (unified (concat (if diff-valid-unified-empty-line
452 "^[^-+# \\\n]\\|" "^[^-+# \\]\\|")
453 ;; A `unified' header is ambiguous.
454 diff-file-header-re))
455 (context "^[^-+#! \\]")
456 (normal "^[^<>#\\]")
457 (t "^[^-+#!<> \\]"))
458 nil t)
459 (match-beginning 0)))
460 (when diff-valid-unified-empty-line
461 ;; While empty lines may be valid inside hunks, they are also likely
462 ;; to be unrelated to the hunk.
463 (goto-char (or end (point-max)))
464 (while (eq ?\n (char-before (1- (point))))
465 (forward-char -1)
466 (setq end (point)))))
467 ;; The return value is used by easy-mmode-define-navigation.
468 (goto-char (or end (point-max)))))
469
470 (defun diff-beginning-of-hunk (&optional try-harder)
471 "Move back to beginning of hunk.
472 If TRY-HARDER is non-nil, try to cater to the case where we're not in a hunk
473 but in the file header instead, in which case move forward to the first hunk."
474 (beginning-of-line)
475 (unless (looking-at diff-hunk-header-re)
476 (forward-line 1)
477 (condition-case ()
478 (re-search-backward diff-hunk-header-re)
479 (error
480 (if (not try-harder)
481 (error "Can't find the beginning of the hunk")
482 (diff-beginning-of-file-and-junk)
483 (diff-hunk-next))))))
484
485 (defun diff-unified-hunk-p ()
486 (save-excursion
487 (ignore-errors
488 (diff-beginning-of-hunk)
489 (looking-at "^@@"))))
490
491 (defun diff-beginning-of-file ()
492 (beginning-of-line)
493 (unless (looking-at diff-file-header-re)
494 (let ((start (point))
495 res)
496 ;; diff-file-header-re may need to match up to 4 lines, so in case
497 ;; we're inside the header, we need to move up to 3 lines forward.
498 (forward-line 3)
499 (if (and (setq res (re-search-backward diff-file-header-re nil t))
500 ;; Maybe the 3 lines forward were too much and we matched
501 ;; a file header after our starting point :-(
502 (or (<= (point) start)
503 (setq res (re-search-backward diff-file-header-re nil t))))
504 res
505 (goto-char start)
506 (error "Can't find the beginning of the file")))))
507
508
509 (defun diff-end-of-file ()
510 (re-search-forward "^[-+#!<>0-9@* \\]" nil t)
511 (re-search-forward (concat "^[^-+#!<>0-9@* \\]\\|" diff-file-header-re)
512 nil 'move)
513 (if (match-beginning 1)
514 (goto-char (match-beginning 1))
515 (beginning-of-line)))
516
517 ;; Define diff-{hunk,file}-{prev,next}
518 (easy-mmode-define-navigation
519 diff-hunk diff-hunk-header-re "hunk" diff-end-of-hunk diff-restrict-view
520 (if diff-auto-refine
521 (condition-case-no-debug nil (diff-refine-hunk) (error nil))))
522
523 (easy-mmode-define-navigation
524 diff-file diff-file-header-re "file" diff-end-of-hunk)
525
526 (defun diff-restrict-view (&optional arg)
527 "Restrict the view to the current hunk.
528 If the prefix ARG is given, restrict the view to the current file instead."
529 (interactive "P")
530 (save-excursion
531 (if arg (diff-beginning-of-file) (diff-beginning-of-hunk 'try-harder))
532 (narrow-to-region (point)
533 (progn (if arg (diff-end-of-file) (diff-end-of-hunk))
534 (point)))
535 (set (make-local-variable 'diff-narrowed-to) (if arg 'file 'hunk))))
536
537
538 (defun diff-hunk-kill ()
539 "Kill current hunk."
540 (interactive)
541 (diff-beginning-of-hunk)
542 (let* ((start (point))
543 (nexthunk (when (re-search-forward diff-hunk-header-re nil t)
544 (match-beginning 0)))
545 (firsthunk (ignore-errors
546 (goto-char start)
547 (diff-beginning-of-file) (diff-hunk-next) (point)))
548 (nextfile (ignore-errors (diff-file-next) (point)))
549 (inhibit-read-only t))
550 (goto-char start)
551 (if (and firsthunk (= firsthunk start)
552 (or (null nexthunk)
553 (and nextfile (> nexthunk nextfile))))
554 ;; It's the only hunk for this file, so kill the file.
555 (diff-file-kill)
556 (diff-end-of-hunk)
557 (kill-region start (point)))))
558
559 ;; "index ", "old mode", "new mode" and "new file mode" are output by git-diff.
560 (defconst diff-file-junk-re
561 "diff \\|index \\|\\(?:new\\(?: file\\)?\\|old\\) mode ")
562
563 (defun diff-beginning-of-file-and-junk ()
564 "Go to the beginning of file-related diff-info.
565 This is like `diff-beginning-of-file' except it tries to skip back over leading
566 data such as \"Index: ...\" and such."
567 (let* ((orig (point))
568 ;; Skip forward over what might be "leading junk" so as to get
569 ;; closer to the actual diff.
570 (_ (progn (beginning-of-line)
571 (while (looking-at diff-file-junk-re)
572 (forward-line 1))))
573 (start (point))
574 (prevfile (condition-case err
575 (save-excursion (diff-beginning-of-file) (point))
576 (error err)))
577 (err (if (consp prevfile) prevfile))
578 (nextfile (ignore-errors
579 (save-excursion
580 (goto-char start) (diff-file-next) (point))))
581 ;; prevhunk is one of the limits.
582 (prevhunk (save-excursion
583 (ignore-errors
584 (if (numberp prevfile) (goto-char prevfile))
585 (diff-hunk-prev) (point))))
586 (previndex (save-excursion
587 (forward-line 1) ;In case we're looking at "Index:".
588 (re-search-backward "^Index: " prevhunk t))))
589 ;; If we're in the junk, we should use nextfile instead of prevfile.
590 (if (and (numberp nextfile)
591 (or (not (numberp prevfile))
592 (and previndex (> previndex prevfile))))
593 (setq prevfile nextfile))
594 (if (and previndex (numberp prevfile) (< previndex prevfile))
595 (setq prevfile previndex))
596 (if (and (numberp prevfile) (<= prevfile start))
597 (progn
598 (goto-char prevfile)
599 ;; Now skip backward over the leading junk we may have before the
600 ;; diff itself.
601 (while (save-excursion
602 (and (zerop (forward-line -1))
603 (looking-at diff-file-junk-re)))
604 (forward-line -1)))
605 ;; File starts *after* the starting point: we really weren't in
606 ;; a file diff but elsewhere.
607 (goto-char orig)
608 (signal (car err) (cdr err)))))
609
610 (defun diff-file-kill ()
611 "Kill current file's hunks."
612 (interactive)
613 (let ((orig (point))
614 (start (progn (diff-beginning-of-file-and-junk) (point)))
615 (inhibit-read-only t))
616 (diff-end-of-file)
617 (if (looking-at "^\n") (forward-char 1)) ;`tla' generates such diffs.
618 (if (> orig (point)) (error "Not inside a file diff"))
619 (kill-region start (point))))
620
621 (defun diff-kill-junk ()
622 "Kill spurious empty diffs."
623 (interactive)
624 (save-excursion
625 (let ((inhibit-read-only t))
626 (goto-char (point-min))
627 (while (re-search-forward (concat "^\\(Index: .*\n\\)"
628 "\\([^-+!* <>].*\n\\)*?"
629 "\\(\\(Index:\\) \\|"
630 diff-file-header-re "\\)")
631 nil t)
632 (delete-region (if (match-end 4) (match-beginning 0) (match-end 1))
633 (match-beginning 3))
634 (beginning-of-line)))))
635
636 (defun diff-count-matches (re start end)
637 (save-excursion
638 (let ((n 0))
639 (goto-char start)
640 (while (re-search-forward re end t) (incf n))
641 n)))
642
643 (defun diff-splittable-p ()
644 (save-excursion
645 (beginning-of-line)
646 (and (looking-at "^[-+ ]")
647 (progn (forward-line -1) (looking-at "^[-+ ]"))
648 (diff-unified-hunk-p))))
649
650 (defun diff-split-hunk ()
651 "Split the current (unified diff) hunk at point into two hunks."
652 (interactive)
653 (beginning-of-line)
654 (let ((pos (point))
655 (start (progn (diff-beginning-of-hunk) (point))))
656 (unless (looking-at diff-hunk-header-re-unified)
657 (error "diff-split-hunk only works on unified context diffs"))
658 (forward-line 1)
659 (let* ((start1 (string-to-number (match-string 1)))
660 (start2 (string-to-number (match-string 3)))
661 (newstart1 (+ start1 (diff-count-matches "^[- \t]" (point) pos)))
662 (newstart2 (+ start2 (diff-count-matches "^[+ \t]" (point) pos)))
663 (inhibit-read-only t))
664 (goto-char pos)
665 ;; Hopefully the after-change-function will not screw us over.
666 (insert "@@ -" (number-to-string newstart1) ",1 +"
667 (number-to-string newstart2) ",1 @@\n")
668 ;; Fix the original hunk-header.
669 (diff-fixup-modifs start pos))))
670
671
672 ;;;;
673 ;;;; jump to other buffers
674 ;;;;
675
676 (defvar diff-remembered-files-alist nil)
677 (defvar diff-remembered-defdir nil)
678
679 (defun diff-filename-drop-dir (file)
680 (when (string-match "/" file) (substring file (match-end 0))))
681
682 (defun diff-merge-strings (ancestor from to)
683 "Merge the diff between ANCESTOR and FROM into TO.
684 Returns the merged string if successful or nil otherwise.
685 The strings are assumed not to contain any \"\\n\" (i.e. end of line).
686 If ANCESTOR = FROM, returns TO.
687 If ANCESTOR = TO, returns FROM.
688 The heuristic is simplistic and only really works for cases
689 like \(diff-merge-strings \"b/foo\" \"b/bar\" \"/a/c/foo\")."
690 ;; Ideally, we want:
691 ;; AMB ANB CMD -> CND
692 ;; but that's ambiguous if `foo' or `bar' is empty:
693 ;; a/foo a/foo1 b/foo.c -> b/foo1.c but not 1b/foo.c or b/foo.c1
694 (let ((str (concat ancestor "\n" from "\n" to)))
695 (when (and (string-match (concat
696 "\\`\\(.*?\\)\\(.*\\)\\(.*\\)\n"
697 "\\1\\(.*\\)\\3\n"
698 "\\(.*\\(\\2\\).*\\)\\'") str)
699 (equal to (match-string 5 str)))
700 (concat (substring str (match-beginning 5) (match-beginning 6))
701 (match-string 4 str)
702 (substring str (match-end 6) (match-end 5))))))
703
704 (defun diff-tell-file-name (old name)
705 "Tell Emacs where the find the source file of the current hunk.
706 If the OLD prefix arg is passed, tell the file NAME of the old file."
707 (interactive
708 (let* ((old current-prefix-arg)
709 (fs (diff-hunk-file-names current-prefix-arg)))
710 (unless fs (error "No file name to look for"))
711 (list old (read-file-name (format "File for %s: " (car fs))
712 nil (diff-find-file-name old) t))))
713 (let ((fs (diff-hunk-file-names old)))
714 (unless fs (error "No file name to look for"))
715 (push (cons fs name) diff-remembered-files-alist)))
716
717 (defun diff-hunk-file-names (&optional old)
718 "Give the list of file names textually mentioned for the current hunk."
719 (save-excursion
720 (unless (looking-at diff-file-header-re)
721 (or (ignore-errors (diff-beginning-of-file))
722 (re-search-forward diff-file-header-re nil t)))
723 (let ((limit (save-excursion
724 (condition-case ()
725 (progn (diff-hunk-prev) (point))
726 (error (point-min)))))
727 (header-files
728 (if (looking-at "[-*][-*][-*] \\(\\S-+\\)\\(\\s-.*\\)?\n[-+][-+][-+] \\(\\S-+\\)")
729 (list (if old (match-string 1) (match-string 3))
730 (if old (match-string 3) (match-string 1)))
731 (forward-line 1) nil)))
732 (delq nil
733 (append
734 (when (and (not old)
735 (save-excursion
736 (re-search-backward "^Index: \\(.+\\)" limit t)))
737 (list (match-string 1)))
738 header-files
739 (when (re-search-backward
740 "^diff \\(-\\S-+ +\\)*\\(\\S-+\\)\\( +\\(\\S-+\\)\\)?"
741 nil t)
742 (list (if old (match-string 2) (match-string 4))
743 (if old (match-string 4) (match-string 2)))))))))
744
745 (defun diff-find-file-name (&optional old batch prefix)
746 "Return the file corresponding to the current patch.
747 Non-nil OLD means that we want the old file.
748 Non-nil BATCH means to prefer returning an incorrect answer than to prompt
749 the user.
750 PREFIX is only used internally: don't use it."
751 (unless (equal diff-remembered-defdir default-directory)
752 ;; Flush diff-remembered-files-alist if the default-directory is changed.
753 (set (make-local-variable 'diff-remembered-defdir) default-directory)
754 (set (make-local-variable 'diff-remembered-files-alist) nil))
755 (save-excursion
756 (unless (looking-at diff-file-header-re)
757 (or (ignore-errors (diff-beginning-of-file))
758 (re-search-forward diff-file-header-re nil t)))
759 (let ((fs (diff-hunk-file-names old)))
760 (if prefix (setq fs (mapcar (lambda (f) (concat prefix f)) fs)))
761 (or
762 ;; use any previously used preference
763 (cdr (assoc fs diff-remembered-files-alist))
764 ;; try to be clever and use previous choices as an inspiration
765 (dolist (rf diff-remembered-files-alist)
766 (let ((newfile (diff-merge-strings (caar rf) (car fs) (cdr rf))))
767 (if (and newfile (file-exists-p newfile)) (return newfile))))
768 ;; look for each file in turn. If none found, try again but
769 ;; ignoring the first level of directory, ...
770 (do* ((files fs (delq nil (mapcar 'diff-filename-drop-dir files)))
771 (file nil nil))
772 ((or (null files)
773 (setq file (do* ((files files (cdr files))
774 (file (car files) (car files)))
775 ;; Use file-regular-p to avoid
776 ;; /dev/null, directories, etc.
777 ((or (null file) (file-regular-p file))
778 file))))
779 file))
780 ;; <foo>.rej patches implicitly apply to <foo>
781 (and (string-match "\\.rej\\'" (or buffer-file-name ""))
782 (let ((file (substring buffer-file-name 0 (match-beginning 0))))
783 (when (file-exists-p file) file)))
784 ;; If we haven't found the file, maybe it's because we haven't paid
785 ;; attention to the PCL-CVS hint.
786 (and (not prefix)
787 (boundp 'cvs-pcl-cvs-dirchange-re)
788 (save-excursion
789 (re-search-backward cvs-pcl-cvs-dirchange-re nil t))
790 (diff-find-file-name old batch (match-string 1)))
791 ;; Invent something, if necessary.
792 (when batch
793 (or (car fs) default-directory))
794 ;; if all else fails, ask the user
795 (let ((file (read-file-name (format "Use file %s: " (or (first fs) ""))
796 nil (first fs) t (first fs))))
797 (set (make-local-variable 'diff-remembered-files-alist)
798 (cons (cons fs file) diff-remembered-files-alist))
799 file)))))
800
801
802 (defun diff-ediff-patch ()
803 "Call `ediff-patch-file' on the current buffer."
804 (interactive)
805 (condition-case err
806 (ediff-patch-file nil (current-buffer))
807 (wrong-number-of-arguments (ediff-patch-file))))
808
809 ;;;;
810 ;;;; Conversion functions
811 ;;;;
812
813 ;;(defvar diff-inhibit-after-change nil
814 ;; "Non-nil means inhibit `diff-mode's after-change functions.")
815
816 (defun diff-unified->context (start end)
817 "Convert unified diffs to context diffs.
818 START and END are either taken from the region (if a prefix arg is given) or
819 else cover the whole buffer."
820 (interactive (if (or current-prefix-arg (and transient-mark-mode mark-active))
821 (list (region-beginning) (region-end))
822 (list (point-min) (point-max))))
823 (unless (markerp end) (setq end (copy-marker end t)))
824 (let (;;(diff-inhibit-after-change t)
825 (inhibit-read-only t))
826 (save-excursion
827 (goto-char start)
828 (while (and (re-search-forward
829 (concat "^\\(\\(---\\) .+\n\\(\\+\\+\\+\\) .+\\|"
830 diff-hunk-header-re-unified ".*\\)$")
831 nil t)
832 (< (point) end))
833 (combine-after-change-calls
834 (if (match-beginning 2)
835 ;; we matched a file header
836 (progn
837 ;; use reverse order to make sure the indices are kept valid
838 (replace-match "---" t t nil 3)
839 (replace-match "***" t t nil 2))
840 ;; we matched a hunk header
841 (let ((line1 (match-string 4))
842 (lines1 (if (match-end 5)
843 (string-to-number (match-string 5)) 1))
844 (line2 (match-string 6))
845 (lines2 (if (match-end 7)
846 (string-to-number (match-string 7)) 1))
847 ;; Variables to use the special undo function.
848 (old-undo buffer-undo-list)
849 (old-end (marker-position end))
850 (start (match-beginning 0))
851 (reversible t))
852 (replace-match
853 (concat "***************\n*** " line1 ","
854 (number-to-string (+ (string-to-number line1)
855 lines1 -1)) " ****"))
856 (save-restriction
857 (narrow-to-region (line-beginning-position 2)
858 ;; Call diff-end-of-hunk from just before
859 ;; the hunk header so it can use the hunk
860 ;; header info.
861 (progn (diff-end-of-hunk 'unified) (point)))
862 (let ((hunk (buffer-string)))
863 (goto-char (point-min))
864 (if (not (save-excursion (re-search-forward "^-" nil t)))
865 (delete-region (point) (point-max))
866 (goto-char (point-max))
867 (let ((modif nil) last-pt)
868 (while (progn (setq last-pt (point))
869 (= (forward-line -1) 0))
870 (case (char-after)
871 (?\s (insert " ") (setq modif nil) (backward-char 1))
872 (?+ (delete-region (point) last-pt) (setq modif t))
873 (?- (if (not modif)
874 (progn (forward-char 1)
875 (insert " "))
876 (delete-char 1)
877 (insert "! "))
878 (backward-char 2))
879 (?\\ (when (save-excursion (forward-line -1)
880 (= (char-after) ?+))
881 (delete-region (point) last-pt) (setq modif t)))
882 ;; diff-valid-unified-empty-line.
883 (?\n (insert " ") (setq modif nil) (backward-char 2))
884 (t (setq modif nil))))))
885 (goto-char (point-max))
886 (save-excursion
887 (insert "--- " line2 ","
888 (number-to-string (+ (string-to-number line2)
889 lines2 -1))
890 " ----\n" hunk))
891 ;;(goto-char (point-min))
892 (forward-line 1)
893 (if (not (save-excursion (re-search-forward "^+" nil t)))
894 (delete-region (point) (point-max))
895 (let ((modif nil) (delete nil))
896 (if (save-excursion (re-search-forward "^\\+.*\n-" nil t))
897 ;; Normally, lines in a substitution come with
898 ;; first the removals and then the additions, and
899 ;; the context->unified function follows this
900 ;; convention, of course. Yet, other alternatives
901 ;; are valid as well, but they preclude the use of
902 ;; context->unified as an undo command.
903 (setq reversible nil))
904 (while (not (eobp))
905 (case (char-after)
906 (?\s (insert " ") (setq modif nil) (backward-char 1))
907 (?- (setq delete t) (setq modif t))
908 (?+ (if (not modif)
909 (progn (forward-char 1)
910 (insert " "))
911 (delete-char 1)
912 (insert "! "))
913 (backward-char 2))
914 (?\\ (when (save-excursion (forward-line 1)
915 (not (eobp)))
916 (setq delete t) (setq modif t)))
917 ;; diff-valid-unified-empty-line.
918 (?\n (insert " ") (setq modif nil) (backward-char 2)
919 (setq reversible nil))
920 (t (setq modif nil)))
921 (let ((last-pt (point)))
922 (forward-line 1)
923 (when delete
924 (delete-region last-pt (point))
925 (setq delete nil)))))))
926 (unless (or (not reversible) (eq buffer-undo-list t))
927 ;; Drop the many undo entries and replace them with
928 ;; a single entry that uses diff-context->unified to do
929 ;; the work.
930 (setq buffer-undo-list
931 (cons (list 'apply (- old-end end) start (point-max)
932 'diff-context->unified start (point-max))
933 old-undo)))))))))))
934
935 (defun diff-context->unified (start end &optional to-context)
936 "Convert context diffs to unified diffs.
937 START and END are either taken from the region
938 \(when it is highlighted) or else cover the whole buffer.
939 With a prefix argument, convert unified format to context format."
940 (interactive (if (and transient-mark-mode mark-active)
941 (list (region-beginning) (region-end) current-prefix-arg)
942 (list (point-min) (point-max) current-prefix-arg)))
943 (if to-context
944 (diff-unified->context start end)
945 (unless (markerp end) (setq end (copy-marker end t)))
946 (let ( ;;(diff-inhibit-after-change t)
947 (inhibit-read-only t))
948 (save-excursion
949 (goto-char start)
950 (while (and (re-search-forward "^\\(\\(\\*\\*\\*\\) .+\n\\(---\\) .+\\|\\*\\{15\\}.*\n\\*\\*\\* \\([0-9]+\\),\\(-?[0-9]+\\) \\*\\*\\*\\*\\)$" nil t)
951 (< (point) end))
952 (combine-after-change-calls
953 (if (match-beginning 2)
954 ;; we matched a file header
955 (progn
956 ;; use reverse order to make sure the indices are kept valid
957 (replace-match "+++" t t nil 3)
958 (replace-match "---" t t nil 2))
959 ;; we matched a hunk header
960 (let ((line1s (match-string 4))
961 (line1e (match-string 5))
962 (pt1 (match-beginning 0))
963 ;; Variables to use the special undo function.
964 (old-undo buffer-undo-list)
965 (old-end (marker-position end))
966 (reversible t))
967 (replace-match "")
968 (unless (re-search-forward
969 "^--- \\([0-9]+\\),\\(-?[0-9]+\\) ----$" nil t)
970 (error "Can't find matching `--- n1,n2 ----' line"))
971 (let ((line2s (match-string 1))
972 (line2e (match-string 2))
973 (pt2 (progn
974 (delete-region (progn (beginning-of-line) (point))
975 (progn (forward-line 1) (point)))
976 (point-marker))))
977 (goto-char pt1)
978 (forward-line 1)
979 (while (< (point) pt2)
980 (case (char-after)
981 (?! (delete-char 2) (insert "-") (forward-line 1))
982 (?- (forward-char 1) (delete-char 1) (forward-line 1))
983 (?\s ;merge with the other half of the chunk
984 (let* ((endline2
985 (save-excursion
986 (goto-char pt2) (forward-line 1) (point))))
987 (case (char-after pt2)
988 ((?! ?+)
989 (insert "+"
990 (prog1 (buffer-substring (+ pt2 2) endline2)
991 (delete-region pt2 endline2))))
992 (?\s
993 (unless (= (- endline2 pt2)
994 (- (line-beginning-position 2) (point)))
995 ;; If the two lines we're merging don't have the
996 ;; same length (can happen with "diff -b"), then
997 ;; diff-unified->context will not properly undo
998 ;; this operation.
999 (setq reversible nil))
1000 (delete-region pt2 endline2)
1001 (delete-char 1)
1002 (forward-line 1))
1003 (?\\ (forward-line 1))
1004 (t (setq reversible nil)
1005 (delete-char 1) (forward-line 1)))))
1006 (t (setq reversible nil) (forward-line 1))))
1007 (while (looking-at "[+! ] ")
1008 (if (/= (char-after) ?!) (forward-char 1)
1009 (delete-char 1) (insert "+"))
1010 (delete-char 1) (forward-line 1))
1011 (save-excursion
1012 (goto-char pt1)
1013 (insert "@@ -" line1s ","
1014 (number-to-string (- (string-to-number line1e)
1015 (string-to-number line1s)
1016 -1))
1017 " +" line2s ","
1018 (number-to-string (- (string-to-number line2e)
1019 (string-to-number line2s)
1020 -1)) " @@"))
1021 (set-marker pt2 nil)
1022 ;; The whole procedure succeeded, let's replace the myriad
1023 ;; of undo elements with just a single special one.
1024 (unless (or (not reversible) (eq buffer-undo-list t))
1025 (setq buffer-undo-list
1026 (cons (list 'apply (- old-end end) pt1 (point)
1027 'diff-unified->context pt1 (point))
1028 old-undo)))
1029 )))))))))
1030
1031 (defun diff-reverse-direction (start end)
1032 "Reverse the direction of the diffs.
1033 START and END are either taken from the region (if a prefix arg is given) or
1034 else cover the whole buffer."
1035 (interactive (if (or current-prefix-arg (and transient-mark-mode mark-active))
1036 (list (region-beginning) (region-end))
1037 (list (point-min) (point-max))))
1038 (unless (markerp end) (setq end (copy-marker end t)))
1039 (let (;;(diff-inhibit-after-change t)
1040 (inhibit-read-only t))
1041 (save-excursion
1042 (goto-char start)
1043 (while (and (re-search-forward "^\\(\\([-*][-*][-*] \\)\\(.+\\)\n\\([-+][-+][-+] \\)\\(.+\\)\\|\\*\\{15\\}.*\n\\*\\*\\* \\(.+\\) \\*\\*\\*\\*\\|@@ -\\([0-9,]+\\) \\+\\([0-9,]+\\) @@.*\\)$" nil t)
1044 (< (point) end))
1045 (combine-after-change-calls
1046 (cond
1047 ;; a file header
1048 ((match-beginning 2) (replace-match "\\2\\5\n\\4\\3" nil))
1049 ;; a context-diff hunk header
1050 ((match-beginning 6)
1051 (let ((pt-lines1 (match-beginning 6))
1052 (lines1 (match-string 6)))
1053 (replace-match "" nil nil nil 6)
1054 (forward-line 1)
1055 (let ((half1s (point)))
1056 (while (looking-at "[-! \\][ \t]\\|#")
1057 (when (= (char-after) ?-) (delete-char 1) (insert "+"))
1058 (forward-line 1))
1059 (let ((half1 (delete-and-extract-region half1s (point))))
1060 (unless (looking-at "^--- \\([0-9]+,-?[0-9]+\\) ----$")
1061 (insert half1)
1062 (error "Can't find matching `--- n1,n2 ----' line"))
1063 (let ((str1 (match-string 1)))
1064 (replace-match lines1 nil nil nil 1)
1065 (forward-line 1)
1066 (let ((half2s (point)))
1067 (while (looking-at "[!+ \\][ \t]\\|#")
1068 (when (= (char-after) ?+) (delete-char 1) (insert "-"))
1069 (forward-line 1))
1070 (let ((half2 (delete-and-extract-region half2s (point))))
1071 (insert (or half1 ""))
1072 (goto-char half1s)
1073 (insert (or half2 ""))))
1074 (goto-char pt-lines1)
1075 (insert str1))))))
1076 ;; a unified-diff hunk header
1077 ((match-beginning 7)
1078 (replace-match "@@ -\\8 +\\7 @@" nil)
1079 (forward-line 1)
1080 (let ((c (char-after)) first last)
1081 (while (case (setq c (char-after))
1082 (?- (setq first (or first (point)))
1083 (delete-char 1) (insert "+") t)
1084 (?+ (setq last (or last (point)))
1085 (delete-char 1) (insert "-") t)
1086 ((?\\ ?#) t)
1087 (t (when (and first last (< first last))
1088 (insert (delete-and-extract-region first last)))
1089 (setq first nil last nil)
1090 (memq c (if diff-valid-unified-empty-line
1091 '(?\s ?\n) '(?\s)))))
1092 (forward-line 1))))))))))
1093
1094 (defun diff-fixup-modifs (start end)
1095 "Fixup the hunk headers (in case the buffer was modified).
1096 START and END are either taken from the region (if a prefix arg is given) or
1097 else cover the whole buffer."
1098 (interactive (if (or current-prefix-arg (and transient-mark-mode mark-active))
1099 (list (region-beginning) (region-end))
1100 (list (point-min) (point-max))))
1101 (let ((inhibit-read-only t))
1102 (save-excursion
1103 (goto-char end) (diff-end-of-hunk nil 'donttrustheader)
1104 (let ((plus 0) (minus 0) (space 0) (bang 0))
1105 (while (and (= (forward-line -1) 0) (<= start (point)))
1106 (if (not (looking-at
1107 (concat diff-hunk-header-re-unified
1108 "\\|[-*][-*][-*] [0-9,]+ [-*][-*][-*][-*]$"
1109 "\\|--- .+\n\\+\\+\\+ ")))
1110 (case (char-after)
1111 (?\s (incf space))
1112 (?+ (incf plus))
1113 (?- (incf minus))
1114 (?! (incf bang))
1115 ((?\\ ?#) nil)
1116 (t (setq space 0 plus 0 minus 0 bang 0)))
1117 (cond
1118 ((looking-at diff-hunk-header-re-unified)
1119 (let* ((old1 (match-string 2))
1120 (old2 (match-string 4))
1121 (new1 (number-to-string (+ space minus)))
1122 (new2 (number-to-string (+ space plus))))
1123 (if old2
1124 (unless (string= new2 old2) (replace-match new2 t t nil 4))
1125 (goto-char (match-end 4)) (insert "," new2))
1126 (if old1
1127 (unless (string= new1 old1) (replace-match new1 t t nil 2))
1128 (goto-char (match-end 2)) (insert "," new1))))
1129 ((looking-at "--- \\([0-9]+\\),\\([0-9]*\\) ----$")
1130 (when (> (+ space bang plus) 0)
1131 (let* ((old1 (match-string 1))
1132 (old2 (match-string 2))
1133 (new (number-to-string
1134 (+ space bang plus -1 (string-to-number old1)))))
1135 (unless (string= new old2) (replace-match new t t nil 2)))))
1136 ((looking-at "\\*\\*\\* \\([0-9]+\\),\\(-?[0-9]*\\) \\*\\*\\*\\*$")
1137 (when (> (+ space bang minus) 0)
1138 (let* ((old (match-string 1))
1139 (new (format
1140 (concat "%0" (number-to-string (length old)) "d")
1141 (+ space bang minus -1 (string-to-number old)))))
1142 (unless (string= new old) (replace-match new t t nil 2))))))
1143 (setq space 0 plus 0 minus 0 bang 0)))))))
1144
1145 ;;;;
1146 ;;;; Hooks
1147 ;;;;
1148
1149 (defun diff-write-contents-hooks ()
1150 "Fixup hunk headers if necessary."
1151 (if (buffer-modified-p) (diff-fixup-modifs (point-min) (point-max)))
1152 nil)
1153
1154 ;; It turns out that making changes in the buffer from within an
1155 ;; *-change-function is asking for trouble, whereas making them
1156 ;; from a post-command-hook doesn't pose much problems
1157 (defvar diff-unhandled-changes nil)
1158 (defun diff-after-change-function (beg end len)
1159 "Remember to fixup the hunk header.
1160 See `after-change-functions' for the meaning of BEG, END and LEN."
1161 ;; Ignoring changes when inhibit-read-only is set is strictly speaking
1162 ;; incorrect, but it turns out that inhibit-read-only is normally not set
1163 ;; inside editing commands, while it tends to be set when the buffer gets
1164 ;; updated by an async process or by a conversion function, both of which
1165 ;; would rather not be uselessly slowed down by this hook.
1166 (when (and (not undo-in-progress) (not inhibit-read-only))
1167 (if diff-unhandled-changes
1168 (setq diff-unhandled-changes
1169 (cons (min beg (car diff-unhandled-changes))
1170 (max end (cdr diff-unhandled-changes))))
1171 (setq diff-unhandled-changes (cons beg end)))))
1172
1173 (defun diff-post-command-hook ()
1174 "Fixup hunk headers if necessary."
1175 (when (consp diff-unhandled-changes)
1176 (ignore-errors
1177 (save-excursion
1178 (goto-char (car diff-unhandled-changes))
1179 ;; Maybe we've cut the end of the hunk before point.
1180 (if (and (bolp) (not (bobp))) (backward-char 1))
1181 ;; We used to fixup modifs on all the changes, but it turns out
1182 ;; that it's safer not to do it on big changes, for example
1183 ;; when yanking a big diff, since we might then screw up perfectly
1184 ;; correct values. -stef
1185 ;; (unless (ignore-errors
1186 ;; (diff-beginning-of-hunk)
1187 ;; (save-excursion
1188 ;; (diff-end-of-hunk)
1189 ;; (> (point) (car diff-unhandled-changes))))
1190 ;; (goto-char (car diff-unhandled-changes))
1191 ;; (re-search-forward diff-hunk-header-re (cdr diff-unhandled-changes))
1192 ;; (diff-beginning-of-hunk))
1193 ;; (diff-fixup-modifs (point) (cdr diff-unhandled-changes))
1194 (diff-beginning-of-hunk)
1195 (when (save-excursion
1196 (diff-end-of-hunk nil 'donttrustheader)
1197 (>= (point) (cdr diff-unhandled-changes)))
1198 (diff-fixup-modifs (point) (cdr diff-unhandled-changes)))))
1199 (setq diff-unhandled-changes nil)))
1200
1201 (defun diff-next-error (arg reset)
1202 ;; Select a window that displays the current buffer so that point
1203 ;; movements are reflected in that window. Otherwise, the user might
1204 ;; never see the hunk corresponding to the source she's jumping to.
1205 (pop-to-buffer (current-buffer))
1206 (if reset (goto-char (point-min)))
1207 (diff-hunk-next arg)
1208 (diff-goto-source))
1209
1210 ;;;###autoload
1211 (define-derived-mode diff-mode fundamental-mode "Diff"
1212 "Major mode for viewing/editing context diffs.
1213 Supports unified and context diffs as well as (to a lesser extent)
1214 normal diffs.
1215
1216 When the buffer is read-only, the ESC prefix is not necessary.
1217 If you edit the buffer manually, diff-mode will try to update the hunk
1218 headers for you on-the-fly.
1219
1220 You can also switch between context diff and unified diff with \\[diff-context->unified],
1221 or vice versa with \\[diff-unified->context] and you can also reverse the direction of
1222 a diff with \\[diff-reverse-direction].
1223
1224 \\{diff-mode-map}"
1225
1226 (set (make-local-variable 'font-lock-defaults) diff-font-lock-defaults)
1227 (set (make-local-variable 'outline-regexp) diff-outline-regexp)
1228 (set (make-local-variable 'imenu-generic-expression)
1229 diff-imenu-generic-expression)
1230 ;; These are not perfect. They would be better done separately for
1231 ;; context diffs and unidiffs.
1232 ;; (set (make-local-variable 'paragraph-start)
1233 ;; (concat "@@ " ; unidiff hunk
1234 ;; "\\|\\*\\*\\* " ; context diff hunk or file start
1235 ;; "\\|--- [^\t]+\t")) ; context or unidiff file
1236 ;; ; start (first or second line)
1237 ;; (set (make-local-variable 'paragraph-separate) paragraph-start)
1238 ;; (set (make-local-variable 'page-delimiter) "--- [^\t]+\t")
1239 ;; compile support
1240 (set (make-local-variable 'next-error-function) 'diff-next-error)
1241
1242 (set (make-local-variable 'beginning-of-defun-function)
1243 'diff-beginning-of-file-and-junk)
1244 (set (make-local-variable 'end-of-defun-function)
1245 'diff-end-of-file)
1246
1247 (setq buffer-read-only diff-default-read-only)
1248 ;; setup change hooks
1249 (if (not diff-update-on-the-fly)
1250 (add-hook 'write-contents-functions 'diff-write-contents-hooks nil t)
1251 (make-local-variable 'diff-unhandled-changes)
1252 (add-hook 'after-change-functions 'diff-after-change-function nil t)
1253 (add-hook 'post-command-hook 'diff-post-command-hook nil t))
1254 ;; Neat trick from Dave Love to add more bindings in read-only mode:
1255 (lexical-let ((ro-bind (cons 'buffer-read-only diff-mode-shared-map)))
1256 (add-to-list 'minor-mode-overriding-map-alist ro-bind)
1257 ;; Turn off this little trick in case the buffer is put in view-mode.
1258 (add-hook 'view-mode-hook
1259 (lambda ()
1260 (setq minor-mode-overriding-map-alist
1261 (delq ro-bind minor-mode-overriding-map-alist)))
1262 nil t))
1263 ;; add-log support
1264 (set (make-local-variable 'add-log-current-defun-function)
1265 'diff-current-defun)
1266 (set (make-local-variable 'add-log-buffer-file-name-function)
1267 'diff-find-file-name))
1268
1269 ;;;###autoload
1270 (define-minor-mode diff-minor-mode
1271 "Minor mode for viewing/editing context diffs.
1272 \\{diff-minor-mode-map}"
1273 :group 'diff-mode :lighter " Diff"
1274 ;; FIXME: setup font-lock
1275 ;; setup change hooks
1276 (if (not diff-update-on-the-fly)
1277 (add-hook 'write-contents-functions 'diff-write-contents-hooks nil t)
1278 (make-local-variable 'diff-unhandled-changes)
1279 (add-hook 'after-change-functions 'diff-after-change-function nil t)
1280 (add-hook 'post-command-hook 'diff-post-command-hook nil t)))
1281
1282 ;;; Handy hook functions ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1283
1284 (defun diff-delete-if-empty ()
1285 ;; An empty diff file means there's no more diffs to integrate, so we
1286 ;; can just remove the file altogether. Very handy for .rej files if we
1287 ;; remove hunks as we apply them.
1288 (when (and buffer-file-name
1289 (eq 0 (nth 7 (file-attributes buffer-file-name))))
1290 (delete-file buffer-file-name)))
1291
1292 (defun diff-delete-empty-files ()
1293 "Arrange for empty diff files to be removed."
1294 (add-hook 'after-save-hook 'diff-delete-if-empty nil t))
1295
1296 (defun diff-make-unified ()
1297 "Turn context diffs into unified diffs if applicable."
1298 (if (save-excursion
1299 (goto-char (point-min))
1300 (and (looking-at diff-hunk-header-re) (eq (char-after) ?*)))
1301 (let ((mod (buffer-modified-p)))
1302 (unwind-protect
1303 (diff-context->unified (point-min) (point-max))
1304 (restore-buffer-modified-p mod)))))
1305
1306 ;;;
1307 ;;; Misc operations that have proved useful at some point.
1308 ;;;
1309
1310 (defun diff-next-complex-hunk ()
1311 "Jump to the next \"complex\" hunk.
1312 \"Complex\" is approximated by \"the hunk changes the number of lines\".
1313 Only works for unified diffs."
1314 (interactive)
1315 (while
1316 (and (re-search-forward diff-hunk-header-re-unified nil t)
1317 (equal (match-string 2) (match-string 4)))))
1318
1319 (defun diff-sanity-check-context-hunk-half (lines)
1320 (let ((count lines))
1321 (while
1322 (cond
1323 ((and (memq (char-after) '(?\s ?! ?+ ?-))
1324 (memq (char-after (1+ (point))) '(?\s ?\t)))
1325 (decf count) t)
1326 ((or (zerop count) (= count lines)) nil)
1327 ((memq (char-after) '(?! ?+ ?-))
1328 (if (not (and (eq (char-after (1+ (point))) ?\n)
1329 (y-or-n-p "Try to auto-fix whitespace loss damage? ")))
1330 (error "End of hunk ambiguously marked")
1331 (forward-char 1) (insert " ") (forward-line -1) t))
1332 ((< lines 0)
1333 (error "End of hunk ambiguously marked"))
1334 ((not (y-or-n-p "Try to auto-fix whitespace loss and word-wrap damage? "))
1335 (error "Abort!"))
1336 ((eolp) (insert " ") (forward-line -1) t)
1337 (t (insert " ") (delete-region (- (point) 2) (- (point) 1)) t))
1338 (forward-line))))
1339
1340 (defun diff-sanity-check-hunk ()
1341 (let (;; Every modification is protected by a y-or-n-p, so it's probably
1342 ;; OK to override a read-only setting.
1343 (inhibit-read-only t))
1344 (save-excursion
1345 (cond
1346 ((not (looking-at diff-hunk-header-re))
1347 (error "Not recognizable hunk header"))
1348
1349 ;; A context diff.
1350 ((eq (char-after) ?*)
1351 (if (not (looking-at "\\*\\{15\\}\\(?: .*\\)?\n\\*\\*\\* \\([0-9]+\\)\\(?:,\\([0-9]+\\)\\)? \\*\\*\\*\\*"))
1352 (error "Unrecognized context diff first hunk header format")
1353 (forward-line 2)
1354 (diff-sanity-check-context-hunk-half
1355 (if (match-end 2)
1356 (1+ (- (string-to-number (match-string 2))
1357 (string-to-number (match-string 1))))
1358 1))
1359 (if (not (looking-at "--- \\([0-9]+\\)\\(?:,\\([0-9]+\\)\\)? ----$"))
1360 (error "Unrecognized context diff second hunk header format")
1361 (forward-line)
1362 (diff-sanity-check-context-hunk-half
1363 (if (match-end 2)
1364 (1+ (- (string-to-number (match-string 2))
1365 (string-to-number (match-string 1))))
1366 1)))))
1367
1368 ;; A unified diff.
1369 ((eq (char-after) ?@)
1370 (if (not (looking-at diff-hunk-header-re-unified))
1371 (error "Unrecognized unified diff hunk header format")
1372 (let ((before (if (match-end 2)
1373 (string-to-number (match-string 2)) 1))
1374 (after (if (match-end 4)
1375 (string-to-number (match-string 4)) 1)))
1376 (forward-line)
1377 (while
1378 (case (char-after)
1379 (?\s (decf before) (decf after) t)
1380 (?-
1381 (if (and (looking-at diff-file-header-re)
1382 (zerop before) (zerop after))
1383 ;; No need to query: this is a case where two patches
1384 ;; are concatenated and only counting the lines will
1385 ;; give the right result. Let's just add an empty
1386 ;; line so that our code which doesn't count lines
1387 ;; will not get confused.
1388 (progn (save-excursion (insert "\n")) nil)
1389 (decf before) t))
1390 (?+ (decf after) t)
1391 (t
1392 (cond
1393 ((and diff-valid-unified-empty-line
1394 ;; Not just (eolp) so we don't infloop at eob.
1395 (eq (char-after) ?\n)
1396 (> before 0) (> after 0))
1397 (decf before) (decf after) t)
1398 ((and (zerop before) (zerop after)) nil)
1399 ((or (< before 0) (< after 0))
1400 (error (if (or (zerop before) (zerop after))
1401 "End of hunk ambiguously marked"
1402 "Hunk seriously messed up")))
1403 ((not (y-or-n-p (concat "Try to auto-fix " (if (eolp) "whitespace loss" "word-wrap damage") "? ")))
1404 (error "Abort!"))
1405 ((eolp) (insert " ") (forward-line -1) t)
1406 (t (insert " ")
1407 (delete-region (- (point) 2) (- (point) 1)) t))))
1408 (forward-line)))))
1409
1410 ;; A plain diff.
1411 (t
1412 ;; TODO.
1413 )))))
1414
1415 (defun diff-hunk-text (hunk destp char-offset)
1416 "Return the literal source text from HUNK as (TEXT . OFFSET).
1417 If DESTP is nil, TEXT is the source, otherwise the destination text.
1418 CHAR-OFFSET is a char-offset in HUNK, and OFFSET is the corresponding
1419 char-offset in TEXT."
1420 (with-temp-buffer
1421 (insert hunk)
1422 (goto-char (point-min))
1423 (let ((src-pos nil)
1424 (dst-pos nil)
1425 (divider-pos nil)
1426 (num-pfx-chars 2))
1427 ;; Set the following variables:
1428 ;; SRC-POS buffer pos of the source part of the hunk or nil if none
1429 ;; DST-POS buffer pos of the destination part of the hunk or nil
1430 ;; DIVIDER-POS buffer pos of any divider line separating the src & dst
1431 ;; NUM-PFX-CHARS number of line-prefix characters used by this format"
1432 (cond ((looking-at "^@@")
1433 ;; unified diff
1434 (setq num-pfx-chars 1)
1435 (forward-line 1)
1436 (setq src-pos (point) dst-pos (point)))
1437 ((looking-at "^\\*\\*")
1438 ;; context diff
1439 (forward-line 2)
1440 (setq src-pos (point))
1441 (re-search-forward "^--- " nil t)
1442 (forward-line 0)
1443 (setq divider-pos (point))
1444 (forward-line 1)
1445 (setq dst-pos (point)))
1446 ((looking-at "^[0-9]+a[0-9,]+$")
1447 ;; normal diff, insert
1448 (forward-line 1)
1449 (setq dst-pos (point)))
1450 ((looking-at "^[0-9,]+d[0-9]+$")
1451 ;; normal diff, delete
1452 (forward-line 1)
1453 (setq src-pos (point)))
1454 ((looking-at "^[0-9,]+c[0-9,]+$")
1455 ;; normal diff, change
1456 (forward-line 1)
1457 (setq src-pos (point))
1458 (re-search-forward "^---$" nil t)
1459 (forward-line 0)
1460 (setq divider-pos (point))
1461 (forward-line 1)
1462 (setq dst-pos (point)))
1463 (t
1464 (error "Unknown diff hunk type")))
1465
1466 (if (if destp (null dst-pos) (null src-pos))
1467 ;; Implied empty text
1468 (if char-offset '("" . 0) "")
1469
1470 ;; For context diffs, either side can be empty, (if there's only
1471 ;; added or only removed text). We should then use the other side.
1472 (cond ((equal src-pos divider-pos) (setq src-pos dst-pos))
1473 ((equal dst-pos (point-max)) (setq dst-pos src-pos)))
1474
1475 (when char-offset (goto-char (+ (point-min) char-offset)))
1476
1477 ;; Get rid of anything except the desired text.
1478 (save-excursion
1479 ;; Delete unused text region
1480 (let ((keep (if destp dst-pos src-pos)))
1481 (when (and divider-pos (> divider-pos keep))
1482 (delete-region divider-pos (point-max)))
1483 (delete-region (point-min) keep))
1484 ;; Remove line-prefix characters, and unneeded lines (unified diffs).
1485 (let ((kill-char (if destp ?- ?+)))
1486 (goto-char (point-min))
1487 (while (not (eobp))
1488 (if (eq (char-after) kill-char)
1489 (delete-region (point) (progn (forward-line 1) (point)))
1490 (delete-char num-pfx-chars)
1491 (forward-line 1)))))
1492
1493 (let ((text (buffer-substring-no-properties (point-min) (point-max))))
1494 (if char-offset (cons text (- (point) (point-min))) text))))))
1495
1496
1497 (defun diff-find-text (text)
1498 "Return the buffer position (BEG . END) of the nearest occurrence of TEXT.
1499 If TEXT isn't found, nil is returned."
1500 (let* ((orig (point))
1501 (forw (and (search-forward text nil t)
1502 (cons (match-beginning 0) (match-end 0))))
1503 (back (and (goto-char (+ orig (length text)))
1504 (search-backward text nil t)
1505 (cons (match-beginning 0) (match-end 0)))))
1506 ;; Choose the closest match.
1507 (if (and forw back)
1508 (if (> (- (car forw) orig) (- orig (car back))) back forw)
1509 (or back forw))))
1510
1511 (defun diff-find-approx-text (text)
1512 "Return the buffer position (BEG . END) of the nearest occurrence of TEXT.
1513 Whitespace differences are ignored."
1514 (let* ((orig (point))
1515 (re (concat "^[ \t\n\f]*"
1516 (mapconcat 'regexp-quote (split-string text) "[ \t\n\f]+")
1517 "[ \t\n\f]*\n"))
1518 (forw (and (re-search-forward re nil t)
1519 (cons (match-beginning 0) (match-end 0))))
1520 (back (and (goto-char (+ orig (length text)))
1521 (re-search-backward re nil t)
1522 (cons (match-beginning 0) (match-end 0)))))
1523 ;; Choose the closest match.
1524 (if (and forw back)
1525 (if (> (- (car forw) orig) (- orig (car back))) back forw)
1526 (or back forw))))
1527
1528 (defsubst diff-xor (a b) (if a (if (not b) a) b))
1529
1530 (defun diff-find-source-location (&optional other-file reverse)
1531 "Find out (BUF LINE-OFFSET POS SRC DST SWITCHED).
1532 BUF is the buffer corresponding to the source file.
1533 LINE-OFFSET is the offset between the expected and actual positions
1534 of the text of the hunk or nil if the text was not found.
1535 POS is a pair (BEG . END) indicating the position of the text in the buffer.
1536 SRC and DST are the two variants of text as returned by `diff-hunk-text'.
1537 SRC is the variant that was found in the buffer.
1538 SWITCHED is non-nil if the patch is already applied."
1539 (save-excursion
1540 (let* ((other (diff-xor other-file diff-jump-to-old-file))
1541 (char-offset (- (point) (progn (diff-beginning-of-hunk 'try-harder)
1542 (point))))
1543 ;; Check that the hunk is well-formed. Otherwise diff-mode and
1544 ;; the user may disagree on what constitutes the hunk
1545 ;; (e.g. because an empty line truncates the hunk mid-course),
1546 ;; leading to potentially nasty surprises for the user.
1547 (_ (diff-sanity-check-hunk))
1548 (hunk (buffer-substring (point)
1549 (save-excursion (diff-end-of-hunk) (point))))
1550 (old (diff-hunk-text hunk reverse char-offset))
1551 (new (diff-hunk-text hunk (not reverse) char-offset))
1552 ;; Find the location specification.
1553 (line (if (not (looking-at "\\(?:\\*\\{15\\}.*\n\\)?[-@* ]*\\([0-9,]+\\)\\([ acd+]+\\([0-9,]+\\)\\)?"))
1554 (error "Can't find the hunk header")
1555 (if other (match-string 1)
1556 (if (match-end 3) (match-string 3)
1557 (unless (re-search-forward "^--- \\([0-9,]+\\)" nil t)
1558 (error "Can't find the hunk separator"))
1559 (match-string 1)))))
1560 (file (or (diff-find-file-name other) (error "Can't find the file")))
1561 (buf (find-file-noselect file)))
1562 ;; Update the user preference if he so wished.
1563 (when (> (prefix-numeric-value other-file) 8)
1564 (setq diff-jump-to-old-file other))
1565 (with-current-buffer buf
1566 (goto-line (string-to-number line))
1567 (let* ((orig-pos (point))
1568 (switched nil)
1569 ;; FIXME: Check for case where both OLD and NEW are found.
1570 (pos (or (diff-find-text (car old))
1571 (progn (setq switched t) (diff-find-text (car new)))
1572 (progn (setq switched nil)
1573 (condition-case nil
1574 (diff-find-approx-text (car old))
1575 (invalid-regexp nil))) ;Regex too big.
1576 (progn (setq switched t)
1577 (condition-case nil
1578 (diff-find-approx-text (car new))
1579 (invalid-regexp nil))) ;Regex too big.
1580 (progn (setq switched nil) nil))))
1581 (nconc
1582 (list buf)
1583 (if pos
1584 (list (count-lines orig-pos (car pos)) pos)
1585 (list nil (cons orig-pos (+ orig-pos (length (car old))))))
1586 (if switched (list new old t) (list old new))))))))
1587
1588
1589 (defun diff-hunk-status-msg (line-offset reversed dry-run)
1590 (let ((msg (if dry-run
1591 (if reversed "already applied" "not yet applied")
1592 (if reversed "undone" "applied"))))
1593 (message (cond ((null line-offset) "Hunk text not found")
1594 ((= line-offset 0) "Hunk %s")
1595 ((= line-offset 1) "Hunk %s at offset %d line")
1596 (t "Hunk %s at offset %d lines"))
1597 msg line-offset)))
1598
1599 (defvar diff-apply-hunk-to-backup-file nil)
1600
1601 (defun diff-apply-hunk (&optional reverse)
1602 "Apply the current hunk to the source file and go to the next.
1603 By default, the new source file is patched, but if the variable
1604 `diff-jump-to-old-file' is non-nil, then the old source file is
1605 patched instead (some commands, such as `diff-goto-source' can change
1606 the value of this variable when given an appropriate prefix argument).
1607
1608 With a prefix argument, REVERSE the hunk."
1609 (interactive "P")
1610 (destructuring-bind (buf line-offset pos old new &optional switched)
1611 ;; Sometimes we'd like to have the following behavior: if REVERSE go
1612 ;; to the new file, otherwise go to the old. But that means that by
1613 ;; default we use the old file, which is the opposite of the default
1614 ;; for diff-goto-source, and is thus confusing. Also when you don't
1615 ;; know about it it's pretty surprising.
1616 ;; TODO: make it possible to ask explicitly for this behavior.
1617 ;;
1618 ;; This is duplicated in diff-test-hunk.
1619 (diff-find-source-location nil reverse)
1620 (cond
1621 ((null line-offset)
1622 (error "Can't find the text to patch"))
1623 ((with-current-buffer buf
1624 (and buffer-file-name
1625 (backup-file-name-p buffer-file-name)
1626 (not diff-apply-hunk-to-backup-file)
1627 (not (set (make-local-variable 'diff-apply-hunk-to-backup-file)
1628 (yes-or-no-p (format "Really apply this hunk to %s? "
1629 (file-name-nondirectory
1630 buffer-file-name)))))))
1631 (error "%s"
1632 (substitute-command-keys
1633 (format "Use %s\\[diff-apply-hunk] to apply it to the other file"
1634 (if (not reverse) "\\[universal-argument] ")))))
1635 ((and switched
1636 ;; A reversed patch was detected, perhaps apply it in reverse.
1637 (not (save-window-excursion
1638 (pop-to-buffer buf)
1639 (goto-char (+ (car pos) (cdr old)))
1640 (y-or-n-p
1641 (if reverse
1642 "Hunk hasn't been applied yet; apply it now? "
1643 "Hunk has already been applied; undo it? ")))))
1644 (message "(Nothing done)"))
1645 (t
1646 ;; Apply the hunk
1647 (with-current-buffer buf
1648 (goto-char (car pos))
1649 (delete-region (car pos) (cdr pos))
1650 (insert (car new)))
1651 ;; Display BUF in a window
1652 (set-window-point (display-buffer buf) (+ (car pos) (cdr new)))
1653 (diff-hunk-status-msg line-offset (diff-xor switched reverse) nil)
1654 (when diff-advance-after-apply-hunk
1655 (diff-hunk-next))))))
1656
1657
1658 (defun diff-test-hunk (&optional reverse)
1659 "See whether it's possible to apply the current hunk.
1660 With a prefix argument, try to REVERSE the hunk."
1661 (interactive "P")
1662 (destructuring-bind (buf line-offset pos src dst &optional switched)
1663 (diff-find-source-location nil reverse)
1664 (set-window-point (display-buffer buf) (+ (car pos) (cdr src)))
1665 (diff-hunk-status-msg line-offset (diff-xor reverse switched) t)))
1666
1667
1668 (defalias 'diff-mouse-goto-source 'diff-goto-source)
1669
1670 (defun diff-goto-source (&optional other-file event)
1671 "Jump to the corresponding source line.
1672 `diff-jump-to-old-file' (or its opposite if the OTHER-FILE prefix arg
1673 is given) determines whether to jump to the old or the new file.
1674 If the prefix arg is bigger than 8 (for example with \\[universal-argument] \\[universal-argument])
1675 then `diff-jump-to-old-file' is also set, for the next invocations."
1676 (interactive (list current-prefix-arg last-input-event))
1677 ;; When pointing at a removal line, we probably want to jump to
1678 ;; the old location, and else to the new (i.e. as if reverting).
1679 ;; This is a convenient detail when using smerge-diff.
1680 (if event (posn-set-point (event-end event)))
1681 (let ((rev (not (save-excursion (beginning-of-line) (looking-at "[-<]")))))
1682 (destructuring-bind (buf line-offset pos src dst &optional switched)
1683 (diff-find-source-location other-file rev)
1684 (pop-to-buffer buf)
1685 (goto-char (+ (car pos) (cdr src)))
1686 (diff-hunk-status-msg line-offset (diff-xor rev switched) t))))
1687
1688
1689 (defun diff-current-defun ()
1690 "Find the name of function at point.
1691 For use in `add-log-current-defun-function'."
1692 ;; Kill change-log-default-name so it gets recomputed each time, since
1693 ;; each hunk may belong to another file which may belong to another
1694 ;; directory and hence have a different ChangeLog file.
1695 (kill-local-variable 'change-log-default-name)
1696 (save-excursion
1697 (when (looking-at diff-hunk-header-re)
1698 (forward-line 1)
1699 (re-search-forward "^[^ ]" nil t))
1700 (destructuring-bind (buf line-offset pos src dst &optional switched)
1701 (diff-find-source-location)
1702 (beginning-of-line)
1703 (or (when (memq (char-after) '(?< ?-))
1704 ;; Cursor is pointing at removed text. This could be a removed
1705 ;; function, in which case, going to the source buffer will
1706 ;; not help since the function is now removed. Instead,
1707 ;; try to figure out the function name just from the code-fragment.
1708 (let ((old (if switched dst src)))
1709 (with-temp-buffer
1710 (insert (car old))
1711 (funcall (with-current-buffer buf major-mode))
1712 (goto-char (+ (point-min) (cdr old)))
1713 (add-log-current-defun))))
1714 (with-current-buffer buf
1715 (goto-char (+ (car pos) (cdr src)))
1716 (add-log-current-defun))))))
1717
1718 (defun diff-ignore-whitespace-hunk ()
1719 "Re-diff the current hunk, ignoring whitespace differences."
1720 (interactive)
1721 (let* ((char-offset (- (point) (progn (diff-beginning-of-hunk 'try-harder)
1722 (point))))
1723 (opts (case (char-after) (?@ "-bu") (?* "-bc") (t "-b")))
1724 (line-nb (and (or (looking-at "[^0-9]+\\([0-9]+\\)")
1725 (error "Can't find line number"))
1726 (string-to-number (match-string 1))))
1727 (inhibit-read-only t)
1728 (hunk (delete-and-extract-region
1729 (point) (save-excursion (diff-end-of-hunk) (point))))
1730 (lead (make-string (1- line-nb) ?\n)) ;Line nums start at 1.
1731 (file1 (make-temp-file "diff1"))
1732 (file2 (make-temp-file "diff2"))
1733 (coding-system-for-read buffer-file-coding-system)
1734 old new)
1735 (unwind-protect
1736 (save-excursion
1737 (setq old (diff-hunk-text hunk nil char-offset))
1738 (setq new (diff-hunk-text hunk t char-offset))
1739 (write-region (concat lead (car old)) nil file1 nil 'nomessage)
1740 (write-region (concat lead (car new)) nil file2 nil 'nomessage)
1741 (with-temp-buffer
1742 (let ((status
1743 (call-process diff-command nil t nil
1744 opts file1 file2)))
1745 (case status
1746 (0 nil) ;Nothing to reformat.
1747 (1 (goto-char (point-min))
1748 ;; Remove the file-header.
1749 (when (re-search-forward diff-hunk-header-re nil t)
1750 (delete-region (point-min) (match-beginning 0))))
1751 (t (goto-char (point-max))
1752 (unless (bolp) (insert "\n"))
1753 (insert hunk)))
1754 (setq hunk (buffer-string))
1755 (unless (memq status '(0 1))
1756 (error "Diff returned: %s" status)))))
1757 ;; Whatever happens, put back some equivalent text: either the new
1758 ;; one or the original one in case some error happened.
1759 (insert hunk)
1760 (delete-file file1)
1761 (delete-file file2))))
1762
1763 ;;; Fine change highlighting.
1764
1765 (defface diff-refine-change
1766 '((((class color) (min-colors 88) (background light))
1767 :background "grey85")
1768 (((class color) (min-colors 88) (background dark))
1769 :background "grey60")
1770 (((class color) (background light))
1771 :background "yellow")
1772 (((class color) (background dark))
1773 :background "green")
1774 (t :weight bold))
1775 "Face used for char-based changes shown by `diff-refine-hunk'."
1776 :group 'diff-mode)
1777
1778 (defun diff-refine-preproc ()
1779 (while (re-search-forward "^[+>]" nil t)
1780 ;; Remove spurious changes due to the fact that one side of the hunk is
1781 ;; marked with leading + or > and the other with leading - or <.
1782 ;; We used to replace all the prefix chars with " " but this only worked
1783 ;; when we did char-based refinement (or when using
1784 ;; smerge-refine-weight-hack) since otherwise, the `forward' motion done
1785 ;; in chopup do not necessarily do the same as the ones in highlight
1786 ;; since the "_" is not treated the same as " ".
1787 (replace-match (cdr (assq (char-before) '((?+ . "-") (?> . "<"))))))
1788 )
1789
1790 (defun diff-refine-hunk ()
1791 "Highlight changes of hunk at point at a finer granularity."
1792 (interactive)
1793 (eval-and-compile (require 'smerge-mode))
1794 (save-excursion
1795 (diff-beginning-of-hunk 'try-harder)
1796 (let* ((style (diff-hunk-style)) ;Skips the hunk header as well.
1797 (beg (point))
1798 (props '((diff-mode . fine) (face diff-refine-change)))
1799 (end (progn (diff-end-of-hunk) (point))))
1800
1801 (remove-overlays beg end 'diff-mode 'fine)
1802
1803 (goto-char beg)
1804 (case style
1805 (unified
1806 (while (re-search-forward "^\\(?:-.*\n\\)+\\(\\)\\(?:\\+.*\n\\)+"
1807 end t)
1808 (smerge-refine-subst (match-beginning 0) (match-end 1)
1809 (match-end 1) (match-end 0)
1810 props 'diff-refine-preproc)))
1811 (context
1812 (let* ((middle (save-excursion (re-search-forward "^---")))
1813 (other middle))
1814 (while (re-search-forward "^\\(?:!.*\n\\)+" middle t)
1815 (smerge-refine-subst (match-beginning 0) (match-end 0)
1816 (save-excursion
1817 (goto-char other)
1818 (re-search-forward "^\\(?:!.*\n\\)+" end)
1819 (setq other (match-end 0))
1820 (match-beginning 0))
1821 other
1822 props 'diff-refine-preproc))))
1823 (t ;; Normal diffs.
1824 (let ((beg1 (1+ (point))))
1825 (when (re-search-forward "^---.*\n" end t)
1826 ;; It's a combined add&remove, so there's something to do.
1827 (smerge-refine-subst beg1 (match-beginning 0)
1828 (match-end 0) end
1829 props 'diff-refine-preproc))))))))
1830
1831
1832 (defun diff-add-change-log-entries-other-window ()
1833 "Iterate through the current diff and create ChangeLog entries.
1834 I.e. like `add-change-log-entry-other-window' but applied to all hunks."
1835 (interactive)
1836 ;; XXX: Currently add-change-log-entry-other-window is only called
1837 ;; once per hunk. Some hunks have multiple changes, it would be
1838 ;; good to call it for each change.
1839 (save-excursion
1840 (goto-char (point-min))
1841 (let ((orig-buffer (current-buffer)))
1842 (condition-case nil
1843 ;; Call add-change-log-entry-other-window for each hunk in
1844 ;; the diff buffer.
1845 (while (progn
1846 (diff-hunk-next)
1847 ;; Move to where the changes are,
1848 ;; `add-change-log-entry-other-window' works better in
1849 ;; that case.
1850 (re-search-forward
1851 (concat "\n[!+-<>]"
1852 ;; If the hunk is a context hunk with an empty first
1853 ;; half, recognize the "--- NNN,MMM ----" line
1854 "\\(-- [0-9]+\\(,[0-9]+\\)? ----\n"
1855 ;; and skip to the next non-context line.
1856 "\\( .*\n\\)*[+]\\)?")
1857 nil t))
1858 (save-excursion
1859 (add-change-log-entry nil nil t t)))
1860 ;; When there's no more hunks, diff-hunk-next signals an error.
1861 (error nil)))))
1862
1863 ;; provide the package
1864 (provide 'diff-mode)
1865
1866 ;;; Old Change Log from when diff-mode wasn't part of Emacs:
1867 ;; Revision 1.11 1999/10/09 23:38:29 monnier
1868 ;; (diff-mode-load-hook): dropped.
1869 ;; (auto-mode-alist): also catch *.diffs.
1870 ;; (diff-find-file-name, diff-mode): add smarts to find the right file
1871 ;; for *.rej files (that lack any file name indication).
1872 ;;
1873 ;; Revision 1.10 1999/09/30 15:32:11 monnier
1874 ;; added support for "\ No newline at end of file".
1875 ;;
1876 ;; Revision 1.9 1999/09/15 00:01:13 monnier
1877 ;; - added basic `compile' support.
1878 ;; - have diff-kill-hunk call diff-kill-file if it's the only hunk.
1879 ;; - diff-kill-file now tries to kill the leading garbage as well.
1880 ;;
1881 ;; Revision 1.8 1999/09/13 21:10:09 monnier
1882 ;; - don't use CL in the autoloaded code
1883 ;; - accept diffs using -T
1884 ;;
1885 ;; Revision 1.7 1999/09/05 20:53:03 monnier
1886 ;; interface to ediff-patch
1887 ;;
1888 ;; Revision 1.6 1999/09/01 20:55:13 monnier
1889 ;; (ediff=patch-file): add bindings to call ediff-patch.
1890 ;; (diff-find-file-name): taken out of diff-goto-source.
1891 ;; (diff-unified->context, diff-context->unified, diff-reverse-direction,
1892 ;; diff-fixup-modifs): only use the region if a prefix arg is given.
1893 ;;
1894 ;; Revision 1.5 1999/08/31 19:18:52 monnier
1895 ;; (diff-beginning-of-file, diff-prev-file): fixed wrong parenthesis.
1896 ;;
1897 ;; Revision 1.4 1999/08/31 13:01:44 monnier
1898 ;; use `combine-after-change-calls' to minimize the slowdown of font-lock.
1899 ;;
1900
1901 ;; arch-tag: 2571d7ff-bc28-4cf9-8585-42e21890be66
1902 ;;; diff-mode.el ends here