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