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