1 ;;; diff-mode.el --- a mode for viewing/editing context diffs
3 ;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004
4 ;; Free Software Foundation, Inc.
6 ;; Author: Stefan Monnier <monnier@cs.yale.edu>
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 2, or (at your option)
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; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
28 ;; Provides support for font-lock, outline, navigation
29 ;; commands, editing and various conversions as well as jumping
30 ;; to the corresponding source file.
32 ;; Inspired by Pavel Machek's patch-mode.el (<pavel@@atrey.karlin.mff.cuni.cz>)
33 ;; Some efforts were spent to have it somewhat compatible with XEmacs'
34 ;; diff-mode as well as with compilation-minor-mode
38 ;; - Reverse doesn't work with normal diffs.
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.
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".
50 ;; - Refine hunk on a word-by-word basis.
52 ;; - Handle `diff -b' output in context->unified.
56 (eval-when-compile (require 'cl
))
59 (defgroup diff-mode
()
60 "Major mode for viewing/editing diffs"
65 (defcustom diff-default-read-only nil
66 "If non-nil, `diff-mode' buffers default to being read-only."
70 (defcustom diff-jump-to-old-file nil
71 "*Non-nil means `diff-goto-source' jumps to the old file.
72 Else, it jumps to the new file."
75 (defcustom diff-update-on-the-fly t
76 "*Non-nil means hunk headers are kept up-to-date on-the-fly.
77 When editing a diff file, the line numbers in the hunk headers
78 need to be kept consistent with the actual diff. This can
79 either be done on the fly (but this sometimes interacts poorly with the
80 undo mechanism) or whenever the file is written (can be slow
81 when editing big diffs)."
84 (defcustom diff-advance-after-apply-hunk t
85 "*Non-nil means `diff-apply-hunk' will move to the next hunk after applying."
89 (defcustom diff-mode-hook nil
90 "Run after setting up the `diff-mode' major mode."
92 :options
'(diff-delete-empty-files diff-make-unified
))
94 (defvar diff-outline-regexp
95 "\\([*+][*+][*+] [^0-9]\\|@@ ...\\|\\*\\*\\* [0-9].\\|--- [0-9]..\\)")
98 ;;;; keymap, menu, ...
101 (easy-mmode-defmap diff-mode-shared-map
102 '(;; From Pavel Machek's patch-mode.
103 ("n" . diff-hunk-next
)
104 ("N" . diff-file-next
)
105 ("p" . diff-hunk-prev
)
106 ("P" . diff-file-prev
)
107 ("k" . diff-hunk-kill
)
108 ("K" . diff-file-kill
)
109 ;; From compilation-minor-mode.
110 ("}" . diff-file-next
)
111 ("{" . diff-file-prev
)
112 ("\C-m" . diff-goto-source
)
113 ([mouse-2
] . diff-goto-source
)
114 ;; From XEmacs' diff-mode.
116 ;;("." . diff-goto-source) ;display-buffer
117 ;;("f" . diff-goto-source) ;find-file
118 ("o" . diff-goto-source
) ;other-window
119 ;;("w" . diff-goto-source) ;other-frame
120 ;;("N" . diff-narrow)
121 ;;("h" . diff-show-header)
122 ;;("j" . diff-show-difference) ;jump to Nth diff
125 ("\177" . scroll-down
)
126 ;; Our very own bindings.
127 ("A" . diff-ediff-patch
)
128 ("r" . diff-restrict-view
)
129 ("R" . diff-reverse-direction
)
130 ("U" . diff-context-
>unified
)
131 ("C" . diff-unified-
>context
)
133 "Basic keymap for `diff-mode', bound to various prefix keys.")
135 (easy-mmode-defmap diff-mode-map
136 `(("\e" .
,diff-mode-shared-map
)
137 ;; From compilation-minor-mode.
138 ("\C-c\C-c" . diff-goto-source
)
140 ("\C-c\C-r" . diff-refine-hunk
)
141 ("\C-c\C-s" . diff-split-hunk
)
142 ("\C-c\C-a" . diff-apply-hunk
)
143 ("\C-c\C-t" . diff-test-hunk
)
144 ("\C-c\C-f" . next-error-follow-minor-mode
))
145 "Keymap for `diff-mode'. See also `diff-mode-shared-map'.")
147 (easy-menu-define diff-mode-menu diff-mode-map
148 "Menu for `diff-mode'."
150 ["Jump to Source" diff-goto-source t
]
151 ["Apply hunk" diff-apply-hunk t
]
152 ["Apply diff with Ediff" diff-ediff-patch t
]
154 ["Reverse direction" diff-reverse-direction t
]
155 ["Context -> Unified" diff-context-
>unified t
]
156 ["Unified -> Context" diff-unified-
>context t
]
157 ;;["Fixup Headers" diff-fixup-modifs (not buffer-read-only)]
160 (defcustom diff-minor-mode-prefix
"\C-c="
161 "Prefix key for `diff-minor-mode' commands."
162 :type
'(choice (string "\e") (string "C-c=") string
))
164 (easy-mmode-defmap diff-minor-mode-map
165 `((,diff-minor-mode-prefix .
,diff-mode-shared-map
))
166 "Keymap for `diff-minor-mode'. See also `diff-mode-shared-map'.")
170 ;;;; font-lock support
173 (defface diff-header-face
174 '((((class color
) (min-colors 88) (background light
))
175 :background
"grey85")
176 (((class color
) (min-colors 88) (background dark
))
177 :background
"grey45")
178 (((class color
) (background light
))
179 :foreground
"blue1" :weight bold
)
180 (((class color
) (background dark
))
181 :foreground
"green" :weight bold
)
183 "`diff-mode' face inherited by hunk and index header faces.")
184 (defvar diff-header-face
'diff-header-face
)
186 (defface diff-file-header-face
187 '((((class color
) (min-colors 88) (background light
))
188 :background
"grey70" :weight bold
)
189 (((class color
) (min-colors 88) (background dark
))
190 :background
"grey60" :weight bold
)
191 (((class color
) (background light
))
192 :foreground
"yellow" :weight bold
)
193 (((class color
) (background dark
))
194 :foreground
"cyan" :weight bold
)
195 (t :weight bold
)) ; :height 1.3
196 "`diff-mode' face used to highlight file header lines.")
197 (defvar diff-file-header-face
'diff-file-header-face
)
199 (defface diff-index-face
200 '((t :inherit diff-file-header-face
))
201 "`diff-mode' face used to highlight index header lines.")
202 (defvar diff-index-face
'diff-index-face
)
204 (defface diff-hunk-header-face
205 '((t :inherit diff-header-face
))
206 "`diff-mode' face used to highlight hunk header lines.")
207 (defvar diff-hunk-header-face
'diff-hunk-header-face
)
209 (defface diff-removed-face
210 '((t :inherit diff-changed-face
))
211 "`diff-mode' face used to highlight removed lines.")
212 (defvar diff-removed-face
'diff-removed-face
)
214 (defface diff-added-face
215 '((t :inherit diff-changed-face
))
216 "`diff-mode' face used to highlight added lines.")
217 (defvar diff-added-face
'diff-added-face
)
219 (defface diff-changed-face
220 '((((type tty pc
) (class color
) (background light
))
221 :foreground
"magenta" :weight bold
:slant italic
)
222 (((type tty pc
) (class color
) (background dark
))
223 :foreground
"yellow" :weight bold
:slant italic
))
224 "`diff-mode' face used to highlight changed lines.")
225 (defvar diff-changed-face
'diff-changed-face
)
227 (defface diff-function-face
228 '((t :inherit diff-context-face
))
229 "`diff-mode' face used to highlight function names produced by \"diff -p\".")
230 (defvar diff-function-face
'diff-function-face
)
232 (defface diff-context-face
233 '((((class color
) (background light
))
234 :foreground
"grey50")
235 (((class color
) (background dark
))
236 :foreground
"grey70"))
237 "`diff-mode' face used to highlight context and other side-information.")
238 (defvar diff-context-face
'diff-context-face
)
240 (defface diff-nonexistent-face
241 '((t :inherit diff-file-header-face
))
242 "`diff-mode' face used to highlight nonexistent files in recursive diffs.")
243 (defvar diff-nonexistent-face
'diff-nonexistent-face
)
245 (defconst diff-yank-handler
'(diff-yank-function))
246 (defun diff-yank-function (text)
247 ;; FIXME: the yank-handler is now called separately on each piece of text
248 ;; with a yank-handler property, so the next-single-property-change call
249 ;; below will always return nil :-( --stef
250 (let ((mixed (next-single-property-change 0 'yank-handler text
))
252 ;; First insert the text.
254 ;; If the text does not include any diff markers and if we're not
255 ;; yanking back into a diff-mode buffer, get rid of the prefixes.
256 (unless (or mixed
(derived-mode-p 'diff-mode
))
257 (undo-boundary) ; Just in case the user wanted the prefixes.
258 (let ((re (save-excursion
259 (if (re-search-backward "^[><!][ \t]" start t
)
260 (if (eq (char-after) ?
!)
261 "^[!+- ][ \t]" "^[<>][ \t]")
264 (while (re-search-backward re start t
)
265 (replace-match "" t t
)))))))
268 (defvar diff-font-lock-keywords
269 `(("^\\(@@ -[0-9,]+ \\+[0-9,]+ @@\\)\\(.*\\)$" ;unified
270 (1 diff-hunk-header-face
)
271 (2 diff-function-face
))
272 ("^--- .+ ----$" . diff-hunk-header-face
) ;context
273 ("^\\(\\*\\{15\\}\\)\\(.*\\)$" ;context
274 (1 diff-hunk-header-face
)
275 (2 diff-function-face
))
276 ("^\\*\\*\\* .+ \\*\\*\\*\\*". diff-hunk-header-face
) ;context
277 ("^\\(---\\|\\+\\+\\+\\|\\*\\*\\*\\) \\(\\S-+\\)\\(.*[^*-]\\)?\n"
278 (0 diff-header-face
) (2 diff-file-header-face prepend
))
279 ("^[0-9,]+[acd][0-9,]+$" . diff-hunk-header-face
)
280 ("^!.*\n" (0 diff-changed-face
))
281 ("^[+>].*\n" (0 diff-added-face
))
282 ("^[-<].*\n" (0 diff-removed-face
))
283 ("^Index: \\(.+\\).*\n" (0 diff-header-face
) (1 diff-index-face prepend
))
284 ("^Only in .*\n" . diff-nonexistent-face
)
285 ("^#.*" . font-lock-string-face
)
286 ("^[^-=+*!<>].*\n" (0 diff-context-face
))))
288 (defconst diff-font-lock-defaults
289 '(diff-font-lock-keywords t nil nil nil
(font-lock-multiline . nil
)))
291 (defvar diff-imenu-generic-expression
292 ;; Prefer second name as first is most likely to be a backup or
293 ;; version-control name. The [\t\n] at the end of the unidiff pattern
294 ;; catches Debian source diff files (which lack the trailing date).
295 '((nil "\\+\\+\\+\\ \\([^\t\n]+\\)[\t\n]" 1) ; unidiffs
296 (nil "^--- \\([^\t\n]+\\)\t.*\n\\*" 1))) ; context diffs
302 (defconst diff-hunk-header-re
"^\\(@@ -[0-9,]+ \\+[0-9,]+ @@.*\\|\\*\\{15\\}.*\n\\*\\*\\* .+ \\*\\*\\*\\*\\|[0-9]+\\(,[0-9]+\\)?[acd][0-9]+\\(,[0-9]+\\)?\\)$")
303 (defconst diff-file-header-re
(concat "^\\(--- .+\n\\+\\+\\+ \\|\\*\\*\\* .+\n--- \\|[^-+!<>0-9@* ]\\).+\n" (substring diff-hunk-header-re
1)))
304 (defvar diff-narrowed-to nil
)
306 (defun diff-end-of-hunk (&optional style
)
307 (when (looking-at diff-hunk-header-re
)
309 ;; Especially important for unified (because headers are ambiguous).
310 (setq style
(cdr (assq (char-after) '((?
@ . unified
) (?
* . context
))))))
311 (goto-char (match-end 0)))
312 (let ((end (and (re-search-forward (case style
313 ;; A `unified' header is ambiguous.
314 (unified (concat "^[^-+# \\]\\|"
315 diff-file-header-re
))
316 (context "^[^-+#! \\]")
320 (match-beginning 0))))
321 ;; The return value is used by easy-mmode-define-navigation.
322 (goto-char (or end
(point-max)))))
324 (defun diff-beginning-of-hunk ()
326 (unless (looking-at diff-hunk-header-re
)
329 (re-search-backward diff-hunk-header-re
)
330 (error (error "Can't find the beginning of the hunk")))))
332 (defun diff-beginning-of-file ()
334 (unless (looking-at diff-file-header-re
)
337 (re-search-backward diff-file-header-re
)
338 (error (error "Can't find the beginning of the file")))))
340 (defun diff-end-of-file ()
341 (re-search-forward "^[-+#!<>0-9@* \\]" nil t
)
342 (re-search-forward (concat "^[^-+#!<>0-9@* \\]\\|" diff-file-header-re
)
344 (if (match-beginning 1)
345 (goto-char (match-beginning 1))
346 (beginning-of-line)))
348 ;; Define diff-{hunk,file}-{prev,next}
349 (easy-mmode-define-navigation
350 diff-hunk diff-hunk-header-re
"hunk" diff-end-of-hunk diff-restrict-view
)
351 (easy-mmode-define-navigation
352 diff-file diff-file-header-re
"file" diff-end-of-hunk
)
354 (defun diff-restrict-view (&optional arg
)
355 "Restrict the view to the current hunk.
356 If the prefix ARG is given, restrict the view to the current file instead."
359 (if arg
(diff-beginning-of-file) (diff-beginning-of-hunk))
360 (narrow-to-region (point)
361 (progn (if arg
(diff-end-of-file) (diff-end-of-hunk))
363 (set (make-local-variable 'diff-narrowed-to
) (if arg
'file
'hunk
))))
366 (defun diff-hunk-kill ()
369 (diff-beginning-of-hunk)
370 (let* ((start (point))
371 (nexthunk (when (re-search-forward diff-hunk-header-re nil t
)
372 (match-beginning 0)))
373 (firsthunk (ignore-errors
375 (diff-beginning-of-file) (diff-hunk-next) (point)))
376 (nextfile (ignore-errors (diff-file-next) (point))))
378 (if (and firsthunk
(= firsthunk start
)
380 (and nextfile
(> nexthunk nextfile
))))
381 ;; It's the only hunk for this file, so kill the file.
384 (kill-region start
(point)))))
386 (defun diff-file-kill ()
387 "Kill current file's hunks."
389 (diff-beginning-of-file)
390 (let* ((start (point))
391 (prevhunk (save-excursion
393 (diff-hunk-prev) (point))))
394 (index (save-excursion
395 (re-search-backward "^Index: " prevhunk t
))))
396 (when index
(setq start index
))
398 (if (looking-at "^\n") (forward-char 1)) ;`tla' generates such diffs.
399 (kill-region start
(point))))
401 (defun diff-kill-junk ()
402 "Kill spurious empty diffs."
405 (let ((inhibit-read-only t
))
406 (goto-char (point-min))
407 (while (re-search-forward (concat "^\\(Index: .*\n\\)"
408 "\\([^-+!* <>].*\n\\)*?"
409 "\\(\\(Index:\\) \\|"
410 diff-file-header-re
"\\)")
412 (delete-region (if (match-end 4) (match-beginning 0) (match-end 1))
414 (beginning-of-line)))))
416 (defun diff-count-matches (re start end
)
420 (while (re-search-forward re end t
) (incf n
))
423 (defun diff-split-hunk ()
424 "Split the current (unified diff) hunk at point into two hunks."
428 (start (progn (diff-beginning-of-hunk) (point))))
429 (unless (looking-at "@@ -\\([0-9]+\\),[0-9]+ \\+\\([0-9]+\\),[0-9]+ @@")
430 (error "diff-split-hunk only works on unified context diffs"))
432 (let* ((start1 (string-to-number (match-string 1)))
433 (start2 (string-to-number (match-string 2)))
434 (newstart1 (+ start1
(diff-count-matches "^[- \t]" (point) pos
)))
435 (newstart2 (+ start2
(diff-count-matches "^[+ \t]" (point) pos
))))
437 ;; Hopefully the after-change-function will not screw us over.
438 (insert "@@ -" (number-to-string newstart1
) ",1 +"
439 (number-to-string newstart2
) ",1 @@\n")
440 ;; Fix the original hunk-header.
441 (diff-fixup-modifs start pos
))))
445 ;;;; jump to other buffers
448 (defvar diff-remembered-files-alist nil
)
450 (defun diff-filename-drop-dir (file)
451 (when (string-match "/" file
) (substring file
(match-end 0))))
453 (defun diff-merge-strings (ancestor from to
)
454 "Merge the diff between ANCESTOR and FROM into TO.
455 Returns the merged string if successful or nil otherwise.
456 The strings are assumed not to contain any \"\\n\" (i.e. end of line).
457 If ANCESTOR = FROM, returns TO.
458 If ANCESTOR = TO, returns FROM.
459 The heuristic is simplistic and only really works for cases
460 like \(diff-merge-strings \"b/foo\" \"b/bar\" \"/a/c/foo\")."
462 ;; AMB ANB CMD -> CND
463 ;; but that's ambiguous if `foo' or `bar' is empty:
464 ;; a/foo a/foo1 b/foo.c -> b/foo1.c but not 1b/foo.c or b/foo.c1
465 (let ((str (concat ancestor
"\n" from
"\n" to
)))
466 (when (and (string-match (concat
467 "\\`\\(.*?\\)\\(.*\\)\\(.*\\)\n"
469 "\\(.*\\(\\2\\).*\\)\\'") str
)
470 (equal to
(match-string 5 str
)))
471 (concat (substring str
(match-beginning 5) (match-beginning 6))
473 (substring str
(match-end 6) (match-end 5))))))
475 (defun diff-tell-file-name (old name
)
476 "Tell Emacs where the find the source file of the current hunk.
477 If the OLD prefix arg is passed, tell the file NAME of the old file."
479 (let* ((old current-prefix-arg
)
480 (fs (diff-hunk-file-names current-prefix-arg
)))
481 (unless fs
(error "No file name to look for"))
482 (list old
(read-file-name (format "File for %s: " (car fs
))
483 nil
(diff-find-file-name old
) t
))))
484 (let ((fs (diff-hunk-file-names old
)))
485 (unless fs
(error "No file name to look for"))
486 (push (cons fs name
) diff-remembered-files-alist
)))
488 (defun diff-hunk-file-names (&optional old
)
489 "Give the list of file names textually mentioned for the current hunk."
491 (unless (looking-at diff-file-header-re
)
492 (or (ignore-errors (diff-beginning-of-file))
493 (re-search-forward diff-file-header-re nil t
)))
494 (let ((limit (save-excursion
496 (progn (diff-hunk-prev) (point))
497 (error (point-min)))))
499 (if (looking-at "[-*][-*][-*] \\(\\S-+\\)\\(\\s-.*\\)?\n[-+][-+][-+] \\(\\S-+\\)")
500 (list (if old
(match-string 1) (match-string 3))
501 (if old
(match-string 3) (match-string 1)))
502 (forward-line 1) nil
)))
507 (re-search-backward "^Index: \\(.+\\)" limit t
)))
508 (list (match-string 1)))
510 (when (re-search-backward
511 "^diff \\(-\\S-+ +\\)*\\(\\S-+\\)\\( +\\(\\S-+\\)\\)?"
513 (list (if old
(match-string 2) (match-string 4))
514 (if old
(match-string 4) (match-string 2)))))))))
516 (defun diff-find-file-name (&optional old
)
517 "Return the file corresponding to the current patch.
518 Non-nil OLD means that we want the old file."
520 (unless (looking-at diff-file-header-re
)
521 (or (ignore-errors (diff-beginning-of-file))
522 (re-search-forward diff-file-header-re nil t
)))
523 (let ((fs (diff-hunk-file-names old
)))
525 ;; use any previously used preference
526 (cdr (assoc fs diff-remembered-files-alist
))
527 ;; try to be clever and use previous choices as an inspiration
528 (dolist (rf diff-remembered-files-alist
)
529 (let ((newfile (diff-merge-strings (caar rf
) (car fs
) (cdr rf
))))
530 (if (and newfile
(file-exists-p newfile
)) (return newfile
))))
531 ;; look for each file in turn. If none found, try again but
532 ;; ignoring the first level of directory, ...
533 (do* ((files fs
(delq nil
(mapcar 'diff-filename-drop-dir files
)))
536 (setq file
(do* ((files files
(cdr files
))
537 (file (car files
) (car files
)))
538 ((or (null file
) (file-exists-p file
))
541 ;; <foo>.rej patches implicitly apply to <foo>
542 (and (string-match "\\.rej\\'" (or buffer-file-name
""))
543 (let ((file (substring buffer-file-name
0 (match-beginning 0))))
544 (when (file-exists-p file
) file
)))
545 ;; if all else fails, ask the user
546 (let ((file (read-file-name (format "Use file %s: " (or (first fs
) ""))
547 nil
(first fs
) t
(first fs
))))
548 (set (make-local-variable 'diff-remembered-files-alist
)
549 (cons (cons fs file
) diff-remembered-files-alist
))
553 (defun diff-ediff-patch ()
554 "Call `ediff-patch-file' on the current buffer."
557 (ediff-patch-file nil
(current-buffer))
558 (wrong-number-of-arguments (ediff-patch-file))))
561 ;;;; Conversion functions
564 ;;(defvar diff-inhibit-after-change nil
565 ;; "Non-nil means inhibit `diff-mode's after-change functions.")
567 (defun diff-unified->context
(start end
)
568 "Convert unified diffs to context diffs.
569 START and END are either taken from the region (if a prefix arg is given) or
570 else cover the whole bufer."
571 (interactive (if current-prefix-arg
572 (list (mark) (point))
573 (list (point-min) (point-max))))
574 (unless (markerp end
) (setq end
(copy-marker end
)))
575 (let (;;(diff-inhibit-after-change t)
576 (inhibit-read-only t
))
579 (while (and (re-search-forward "^\\(\\(---\\) .+\n\\(\\+\\+\\+\\) .+\\|@@ -\\([0-9]+\\),\\([0-9]+\\) \\+\\([0-9]+\\),\\([0-9]+\\) @@.*\\)$" nil t
)
581 (combine-after-change-calls
582 (if (match-beginning 2)
583 ;; we matched a file header
585 ;; use reverse order to make sure the indices are kept valid
586 (replace-match "---" t t nil
3)
587 (replace-match "***" t t nil
2))
588 ;; we matched a hunk header
589 (let ((line1 (match-string 4))
590 (lines1 (match-string 5))
591 (line2 (match-string 6))
592 (lines2 (match-string 7)))
594 (concat "***************\n*** " line1
","
595 (number-to-string (+ (string-to-number line1
)
596 (string-to-number lines1
)
600 (narrow-to-region (point)
601 (progn (diff-end-of-hunk 'unified
) (point)))
602 (let ((hunk (buffer-string)))
603 (goto-char (point-min))
604 (if (not (save-excursion (re-search-forward "^-" nil t
)))
605 (delete-region (point) (point-max))
606 (goto-char (point-max))
607 (let ((modif nil
) last-pt
)
608 (while (progn (setq last-pt
(point))
609 (= (forward-line -
1) 0))
611 (?
(insert " ") (setq modif nil
) (backward-char 1))
612 (?
+ (delete-region (point) last-pt
) (setq modif t
))
614 (progn (forward-char 1)
619 (?
\\ (when (save-excursion (forward-line -
1)
621 (delete-region (point) last-pt
) (setq modif t
)))
622 (t (setq modif nil
))))))
623 (goto-char (point-max))
625 (insert "--- " line2
","
626 (number-to-string (+ (string-to-number line2
)
627 (string-to-number lines2
)
628 -
1)) " ----\n" hunk
))
629 ;;(goto-char (point-min))
631 (if (not (save-excursion (re-search-forward "^+" nil t
)))
632 (delete-region (point) (point-max))
633 (let ((modif nil
) (delete nil
))
636 (?
(insert " ") (setq modif nil
) (backward-char 1))
637 (?-
(setq delete t
) (setq modif t
))
639 (progn (forward-char 1)
644 (?
\\ (when (save-excursion (forward-line 1)
646 (setq delete t
) (setq modif t
)))
647 (t (setq modif nil
)))
648 (let ((last-pt (point)))
651 (delete-region last-pt
(point))
652 (setq delete nil
)))))))))))))))
654 (defun diff-context->unified
(start end
)
655 "Convert context diffs to unified diffs.
656 START and END are either taken from the region (if a prefix arg is given) or
657 else cover the whole bufer."
658 (interactive (if current-prefix-arg
659 (list (mark) (point))
660 (list (point-min) (point-max))))
661 (unless (markerp end
) (setq end
(copy-marker end
)))
662 (let (;;(diff-inhibit-after-change t)
663 (inhibit-read-only t
))
666 (while (and (re-search-forward "^\\(\\(\\*\\*\\*\\) .+\n\\(---\\) .+\\|\\*\\{15\\}.*\n\\*\\*\\* \\([0-9]+\\),\\(-?[0-9]+\\) \\*\\*\\*\\*\\)$" nil t
)
668 (combine-after-change-calls
669 (if (match-beginning 2)
670 ;; we matched a file header
672 ;; use reverse order to make sure the indices are kept valid
673 (replace-match "+++" t t nil
3)
674 (replace-match "---" t t nil
2))
675 ;; we matched a hunk header
676 (let ((line1s (match-string 4))
677 (line1e (match-string 5))
678 (pt1 (match-beginning 0)))
680 (unless (re-search-forward
681 "^--- \\([0-9]+\\),\\(-?[0-9]+\\) ----$" nil t
)
682 (error "Can't find matching `--- n1,n2 ----' line"))
683 (let ((line2s (match-string 1))
684 (line2e (match-string 2))
686 (delete-region (progn (beginning-of-line) (point))
687 (progn (forward-line 1) (point)))
691 (while (< (point) pt2
)
693 ((?
! ?-
) (delete-char 2) (insert "-") (forward-line 1))
694 (?\
;merge with the other half of the chunk
697 (goto-char pt2
) (forward-line 1) (point)))
698 (c (char-after pt2
)))
702 (prog1 (buffer-substring (+ pt2
2) endline2
)
703 (delete-region pt2 endline2
))))
704 (?\
;FIXME: check consistency
705 (delete-region pt2 endline2
)
708 (?
\\ (forward-line 1))
709 (t (delete-char 1) (forward-line 1)))))
710 (t (forward-line 1))))
711 (while (looking-at "[+! ] ")
712 (if (/= (char-after) ?
!) (forward-char 1)
713 (delete-char 1) (insert "+"))
714 (delete-char 1) (forward-line 1))
717 (insert "@@ -" line1s
","
718 (number-to-string (- (string-to-number line1e
)
719 (string-to-number line1s
)
722 (number-to-string (- (string-to-number line2e
)
723 (string-to-number line2s
)
726 (defun diff-reverse-direction (start end
)
727 "Reverse the direction of the diffs.
728 START and END are either taken from the region (if a prefix arg is given) or
729 else cover the whole bufer."
730 (interactive (if current-prefix-arg
731 (list (mark) (point))
732 (list (point-min) (point-max))))
733 (unless (markerp end
) (setq end
(copy-marker end
)))
734 (let (;;(diff-inhibit-after-change t)
735 (inhibit-read-only t
))
738 (while (and (re-search-forward "^\\(\\([-*][-*][-*] \\)\\(.+\\)\n\\([-+][-+][-+] \\)\\(.+\\)\\|\\*\\{15\\}.*\n\\*\\*\\* \\(.+\\) \\*\\*\\*\\*\\|@@ -\\([0-9,]+\\) \\+\\([0-9,]+\\) @@.*\\)$" nil t
)
740 (combine-after-change-calls
743 ((match-beginning 2) (replace-match "\\2\\5\n\\4\\3" nil
))
744 ;; a context-diff hunk header
746 (let ((pt-lines1 (match-beginning 6))
747 (lines1 (match-string 6)))
748 (replace-match "" nil nil nil
6)
750 (let ((half1s (point)))
751 (while (looking-at "[-! \\][ \t]\\|#")
752 (when (= (char-after) ?-
) (delete-char 1) (insert "+"))
754 (let ((half1 (delete-and-extract-region half1s
(point))))
755 (unless (looking-at "^--- \\([0-9]+,-?[0-9]+\\) ----$")
757 (error "Can't find matching `--- n1,n2 ----' line"))
758 (let ((str1 (match-string 1)))
759 (replace-match lines1 nil nil nil
1)
761 (let ((half2s (point)))
762 (while (looking-at "[!+ \\][ \t]\\|#")
763 (when (= (char-after) ?
+) (delete-char 1) (insert "-"))
765 (let ((half2 (delete-and-extract-region half2s
(point))))
766 (insert (or half1
""))
768 (insert (or half2
""))))
769 (goto-char pt-lines1
)
771 ;; a unified-diff hunk header
773 (replace-match "@@ -\\8 +\\7 @@" nil
)
775 (let ((c (char-after)) first last
)
776 (while (case (setq c
(char-after))
777 (?-
(setq first
(or first
(point)))
778 (delete-char 1) (insert "+") t
)
779 (?
+ (setq last
(or last
(point)))
780 (delete-char 1) (insert "-") t
)
782 (t (when (and first last
(< first last
))
783 (insert (delete-and-extract-region first last
)))
784 (setq first nil last nil
)
786 (forward-line 1))))))))))
788 (defun diff-fixup-modifs (start end
)
789 "Fixup the hunk headers (in case the buffer was modified).
790 START and END are either taken from the region (if a prefix arg is given) or
791 else cover the whole bufer."
792 (interactive (if current-prefix-arg
793 (list (mark) (point))
794 (list (point-min) (point-max))))
795 (let ((inhibit-read-only t
))
797 (goto-char end
) (diff-end-of-hunk)
798 (let ((plus 0) (minus 0) (space 0) (bang 0))
799 (while (and (= (forward-line -
1) 0) (<= start
(point)))
801 (concat "@@ -[0-9,]+ \\+[0-9,]+ @@"
802 "\\|[-*][-*][-*] [0-9,]+ [-*][-*][-*][-*]$"
803 "\\|--- .+\n\\+\\+\\+ ")))
810 (t (setq space
0 plus
0 minus
0 bang
0)))
812 ((looking-at "@@ -[0-9]+,\\([0-9]*\\) \\+[0-9]+,\\([0-9]*\\) @@.*$")
813 (let* ((old1 (match-string 1))
814 (old2 (match-string 2))
815 (new1 (number-to-string (+ space minus
)))
816 (new2 (number-to-string (+ space plus
))))
817 (unless (string= new2 old2
) (replace-match new2 t t nil
2))
818 (unless (string= new1 old1
) (replace-match new1 t t nil
1))))
819 ((looking-at "--- \\([0-9]+\\),\\([0-9]*\\) ----$")
820 (when (> (+ space bang plus
) 0)
821 (let* ((old1 (match-string 1))
822 (old2 (match-string 2))
823 (new (number-to-string
824 (+ space bang plus -
1 (string-to-number old1
)))))
825 (unless (string= new old2
) (replace-match new t t nil
2)))))
826 ((looking-at "\\*\\*\\* \\([0-9]+\\),\\(-?[0-9]*\\) \\*\\*\\*\\*$")
827 (when (> (+ space bang minus
) 0)
828 (let* ((old (match-string 1))
830 (concat "%0" (number-to-string (length old
)) "d")
831 (+ space bang minus -
1 (string-to-number old
)))))
832 (unless (string= new old
) (replace-match new t t nil
2))))))
833 (setq space
0 plus
0 minus
0 bang
0)))))))
839 (defun diff-write-contents-hooks ()
840 "Fixup hunk headers if necessary."
841 (if (buffer-modified-p) (diff-fixup-modifs (point-min) (point-max)))
844 ;; It turns out that making changes in the buffer from within an
845 ;; *-change-function is asking for trouble, whereas making them
846 ;; from a post-command-hook doesn't pose much problems
847 (defvar diff-unhandled-changes nil
)
848 (defun diff-after-change-function (beg end len
)
849 "Remember to fixup the hunk header.
850 See `after-change-functions' for the meaning of BEG, END and LEN."
851 ;; Ignoring changes when inhibit-read-only is set is strictly speaking
852 ;; incorrect, but it turns out that inhibit-read-only is normally not set
853 ;; inside editing commands, while it tends to be set when the buffer gets
854 ;; updated by an async process or by a conversion function, both of which
855 ;; would rather not be uselessly slowed down by this hook.
856 (when (and (not undo-in-progress
) (not inhibit-read-only
))
857 (if diff-unhandled-changes
858 (setq diff-unhandled-changes
859 (cons (min beg
(car diff-unhandled-changes
))
860 (max end
(cdr diff-unhandled-changes
))))
861 (setq diff-unhandled-changes
(cons beg end
)))))
863 (defun diff-post-command-hook ()
864 "Fixup hunk headers if necessary."
865 (when (consp diff-unhandled-changes
)
868 (goto-char (car diff-unhandled-changes
))
869 ;; Maybe we've cut the end of the hunk before point.
870 (if (and (bolp) (not (bobp))) (backward-char 1))
871 ;; We used to fixup modifs on all the changes, but it turns out
872 ;; that it's safer not to do it on big changes, for example
873 ;; when yanking a big diff, since we might then screw up perfectly
874 ;; correct values. -stef
875 ;; (unless (ignore-errors
876 ;; (diff-beginning-of-hunk)
878 ;; (diff-end-of-hunk)
879 ;; (> (point) (car diff-unhandled-changes))))
880 ;; (goto-char (car diff-unhandled-changes))
881 ;; (re-search-forward diff-hunk-header-re (cdr diff-unhandled-changes))
882 ;; (diff-beginning-of-hunk))
883 ;; (diff-fixup-modifs (point) (cdr diff-unhandled-changes))
884 (diff-beginning-of-hunk)
885 (when (save-excursion
887 (>= (point) (cdr diff-unhandled-changes
)))
888 (diff-fixup-modifs (point) (cdr diff-unhandled-changes
)))))
889 (setq diff-unhandled-changes nil
)))
891 (defun diff-next-error (arg reset
)
892 ;; Select a window that displays the current buffer so that point
893 ;; movements are reflected in that window. Otherwise, the user might
894 ;; never see the hunk corresponding to the source she's jumping to.
895 (pop-to-buffer (current-buffer))
896 (if reset
(goto-char (point-min)))
901 (define-derived-mode diff-mode fundamental-mode
"Diff"
902 "Major mode for viewing/editing context diffs.
903 Supports unified and context diffs as well as (to a lesser extent)
905 When the buffer is read-only, the ESC prefix is not necessary.
906 IF you edit the buffer manually, diff-mode will try to update the hunk
907 headers for you on-the-fly.
909 You can also switch between context diff and unified diff with \\[diff-context->unified],
910 or vice versa with \\[diff-unified->context] and you can also revert the direction of
911 a diff with \\[diff-reverse-direction]."
912 (set (make-local-variable 'font-lock-defaults
) diff-font-lock-defaults
)
913 (set (make-local-variable 'outline-regexp
) diff-outline-regexp
)
914 (set (make-local-variable 'imenu-generic-expression
)
915 diff-imenu-generic-expression
)
916 ;; These are not perfect. They would be better done separately for
917 ;; context diffs and unidiffs.
918 ;; (set (make-local-variable 'paragraph-start)
919 ;; (concat "@@ " ; unidiff hunk
920 ;; "\\|\\*\\*\\* " ; context diff hunk or file start
921 ;; "\\|--- [^\t]+\t")) ; context or unidiff file
922 ;; ; start (first or second line)
923 ;; (set (make-local-variable 'paragraph-separate) paragraph-start)
924 ;; (set (make-local-variable 'page-delimiter) "--- [^\t]+\t")
926 (set (make-local-variable 'next-error-function
) 'diff-next-error
)
928 (when (and (> (point-max) (point-min)) diff-default-read-only
)
929 (toggle-read-only t
))
930 ;; setup change hooks
931 (if (not diff-update-on-the-fly
)
932 (add-hook 'write-contents-functions
'diff-write-contents-hooks nil t
)
933 (make-local-variable 'diff-unhandled-changes
)
934 (add-hook 'after-change-functions
'diff-after-change-function nil t
)
935 (add-hook 'post-command-hook
'diff-post-command-hook nil t
))
936 ;; Neat trick from Dave Love to add more bindings in read-only mode:
937 (let ((ro-bind (cons 'buffer-read-only diff-mode-shared-map
)))
938 (add-to-list 'minor-mode-overriding-map-alist ro-bind
)
939 ;; Turn off this little trick in case the buffer is put in view-mode.
940 (add-hook 'view-mode-hook
942 (setq minor-mode-overriding-map-alist
943 (delq ',ro-bind minor-mode-overriding-map-alist
)))
946 (set (make-local-variable 'add-log-current-defun-function
)
948 (set (make-local-variable 'add-log-buffer-file-name-function
)
949 'diff-find-file-name
))
952 (define-minor-mode diff-minor-mode
953 "Minor mode for viewing/editing context diffs.
954 \\{diff-minor-mode-map}"
956 ;; FIXME: setup font-lock
957 ;; setup change hooks
958 (if (not diff-update-on-the-fly
)
959 (add-hook 'write-contents-functions
'diff-write-contents-hooks nil t
)
960 (make-local-variable 'diff-unhandled-changes
)
961 (add-hook 'after-change-functions
'diff-after-change-function nil t
)
962 (add-hook 'post-command-hook
'diff-post-command-hook nil t
)))
964 ;;; Handy hook functions ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
966 (defun diff-delete-if-empty ()
967 ;; An empty diff file means there's no more diffs to integrate, so we
968 ;; can just remove the file altogether. Very handy for .rej files if we
969 ;; remove hunks as we apply them.
970 (when (and buffer-file-name
971 (eq 0 (nth 7 (file-attributes buffer-file-name
))))
972 (delete-file buffer-file-name
)))
974 (defun diff-delete-empty-files ()
975 "Arrange for empty diff files to be removed."
976 (add-hook 'after-save-hook
'diff-delete-if-empty nil t
))
978 (defun diff-make-unified ()
979 "Turn context diffs into unified diffs if applicable."
981 (goto-char (point-min))
982 (and (looking-at diff-hunk-header-re
) (eq (char-after) ?
*)))
983 (let ((mod (buffer-modified-p)))
985 (diff-context->unified
(point-min) (point-max))
986 (restore-buffer-modified-p mod
)))))
989 ;;; Misc operations that have proved useful at some point.
992 (defun diff-next-complex-hunk ()
993 "Jump to the next \"complex\" hunk.
994 \"Complex\" is approximated by \"the hunk changes the number of lines\".
995 Only works for unified diffs."
998 (and (re-search-forward "^@@ [-0-9]+,\\([0-9]+\\) [+0-9]+,\\([0-9]+\\) @@"
1000 (equal (match-string 1) (match-string 2)))))
1002 (defun diff-hunk-text (hunk destp char-offset
)
1003 "Return the literal source text from HUNK as (TEXT . OFFSET).
1004 if DESTP is nil TEXT is the source, otherwise the destination text.
1005 CHAR-OFFSET is a char-offset in HUNK, and OFFSET is the corresponding
1006 char-offset in TEXT."
1009 (goto-char (point-min))
1014 ;; Set the following variables:
1015 ;; SRC-POS buffer pos of the source part of the hunk or nil if none
1016 ;; DST-POS buffer pos of the destination part of the hunk or nil
1017 ;; DIVIDER-POS buffer pos of any divider line separating the src & dst
1018 ;; NUM-PFX-CHARS number of line-prefix characters used by this format"
1019 (cond ((looking-at "^@@")
1021 (setq num-pfx-chars
1)
1023 (setq src-pos
(point) dst-pos
(point)))
1024 ((looking-at "^\\*\\*")
1027 (setq src-pos
(point))
1028 (re-search-forward "^--- " nil t
)
1030 (setq divider-pos
(point))
1032 (setq dst-pos
(point)))
1033 ((looking-at "^[0-9]+a[0-9,]+$")
1034 ;; normal diff, insert
1036 (setq dst-pos
(point)))
1037 ((looking-at "^[0-9,]+d[0-9]+$")
1038 ;; normal diff, delete
1040 (setq src-pos
(point)))
1041 ((looking-at "^[0-9,]+c[0-9,]+$")
1042 ;; normal diff, change
1044 (setq src-pos
(point))
1045 (re-search-forward "^---$" nil t
)
1047 (setq divider-pos
(point))
1049 (setq dst-pos
(point)))
1051 (error "Unknown diff hunk type")))
1053 (if (if destp
(null dst-pos
) (null src-pos
))
1054 ;; Implied empty text
1055 (if char-offset
'("" .
0) "")
1057 ;; For context diffs, either side can be empty, (if there's only
1058 ;; added or only removed text). We should then use the other side.
1059 (cond ((equal src-pos divider-pos
) (setq src-pos dst-pos
))
1060 ((equal dst-pos
(point-max)) (setq dst-pos src-pos
)))
1062 (when char-offset
(goto-char (+ (point-min) char-offset
)))
1064 ;; Get rid of anything except the desired text.
1066 ;; Delete unused text region
1067 (let ((keep (if destp dst-pos src-pos
)))
1068 (when (and divider-pos
(> divider-pos keep
))
1069 (delete-region divider-pos
(point-max)))
1070 (delete-region (point-min) keep
))
1071 ;; Remove line-prefix characters, and unneeded lines (unified diffs).
1072 (let ((kill-char (if destp ?- ?
+)))
1073 (goto-char (point-min))
1075 (if (eq (char-after) kill-char
)
1076 (delete-region (point) (progn (forward-line 1) (point)))
1077 (delete-char num-pfx-chars
)
1078 (forward-line 1)))))
1080 (let ((text (buffer-substring-no-properties (point-min) (point-max))))
1081 (if char-offset
(cons text
(- (point) (point-min))) text
))))))
1084 (defun diff-find-text (text)
1085 "Return the buffer position (BEG . END) of the nearest occurrence of TEXT.
1086 If TEXT isn't found, nil is returned."
1087 (let* ((orig (point))
1088 (forw (and (search-forward text nil t
)
1089 (cons (match-beginning 0) (match-end 0))))
1090 (back (and (goto-char (+ orig
(length text
)))
1091 (search-backward text nil t
)
1092 (cons (match-beginning 0) (match-end 0)))))
1093 ;; Choose the closest match.
1095 (if (> (- (car forw
) orig
) (- orig
(car back
))) back forw
)
1098 (defun diff-find-approx-text (text)
1099 "Return the buffer position (BEG . END) of the nearest occurrence of TEXT.
1100 Whitespace differences are ignored."
1101 (let* ((orig (point))
1102 (re (concat "^[ \t\n\f]*"
1103 (mapconcat 'regexp-quote
(split-string text
) "[ \t\n\f]+")
1105 (forw (and (re-search-forward re nil t
)
1106 (cons (match-beginning 0) (match-end 0))))
1107 (back (and (goto-char (+ orig
(length text
)))
1108 (re-search-backward re nil t
)
1109 (cons (match-beginning 0) (match-end 0)))))
1110 ;; Choose the closest match.
1112 (if (> (- (car forw
) orig
) (- orig
(car back
))) back forw
)
1115 (defsubst diff-xor
(a b
) (if a
(not b
) b
))
1117 (defun diff-find-source-location (&optional other-file reverse
)
1118 "Find out (BUF LINE-OFFSET POS SRC DST SWITCHED).
1119 BUF is the buffer corresponding to the source file.
1120 LINE-OFFSET is the offset between the expected and actual positions
1121 of the text of the hunk or nil if the text was not found.
1122 POS is a pair (BEG . END) indicating the position of the text in the buffer.
1123 SRC and DST are the two variants of text as returned by `diff-hunk-text'.
1124 SRC is the variant that was found in the buffer.
1125 SWITCHED is non-nil if the patch is already applied."
1127 (let* ((other (diff-xor other-file diff-jump-to-old-file
))
1128 (char-offset (- (point) (progn (diff-beginning-of-hunk) (point))))
1129 (hunk (buffer-substring (point)
1130 (save-excursion (diff-end-of-hunk) (point))))
1131 (old (diff-hunk-text hunk reverse char-offset
))
1132 (new (diff-hunk-text hunk
(not reverse
) char-offset
))
1133 ;; Find the location specification.
1134 (line (if (not (looking-at "\\(?:\\*\\{15\\}.*\n\\)?[-@* ]*\\([0-9,]+\\)\\([ acd+]+\\([0-9,]+\\)\\)?"))
1135 (error "Can't find the hunk header")
1136 (if other
(match-string 1)
1137 (if (match-end 3) (match-string 3)
1138 (unless (re-search-forward "^--- \\([0-9,]+\\)" nil t
)
1139 (error "Can't find the hunk separator"))
1140 (match-string 1)))))
1141 (file (or (diff-find-file-name other
) (error "Can't find the file")))
1142 (buf (find-file-noselect file
)))
1143 ;; Update the user preference if he so wished.
1144 (when (> (prefix-numeric-value other-file
) 8)
1145 (setq diff-jump-to-old-file other
))
1146 (with-current-buffer buf
1147 (goto-line (string-to-number line
))
1148 (let* ((orig-pos (point))
1150 ;; FIXME: Check for case where both OLD and NEW are found.
1151 (pos (or (diff-find-text (car old
))
1152 (progn (setq switched t
) (diff-find-text (car new
)))
1153 (progn (setq switched nil
)
1155 (diff-find-approx-text (car old
))
1156 (invalid-regexp nil
))) ;Regex too big.
1157 (progn (setq switched t
)
1159 (diff-find-approx-text (car new
))
1160 (invalid-regexp nil
))) ;Regex too big.
1161 (progn (setq switched nil
) nil
))))
1165 (list (count-lines orig-pos
(car pos
)) pos
)
1166 (list nil
(cons orig-pos
(+ orig-pos
(length (car old
))))))
1167 (if switched
(list new old t
) (list old new
))))))))
1170 (defun diff-hunk-status-msg (line-offset reversed dry-run
)
1171 (let ((msg (if dry-run
1172 (if reversed
"already applied" "not yet applied")
1173 (if reversed
"undone" "applied"))))
1174 (message (cond ((null line-offset
) "Hunk text not found")
1175 ((= line-offset
0) "Hunk %s")
1176 ((= line-offset
1) "Hunk %s at offset %d line")
1177 (t "Hunk %s at offset %d lines"))
1181 (defun diff-apply-hunk (&optional reverse
)
1182 "Apply the current hunk to the source file and go to the next.
1183 By default, the new source file is patched, but if the variable
1184 `diff-jump-to-old-file' is non-nil, then the old source file is
1185 patched instead (some commands, such as `diff-goto-source' can change
1186 the value of this variable when given an appropriate prefix argument).
1188 With a prefix argument, REVERSE the hunk."
1190 (destructuring-bind (buf line-offset pos old new
&optional switched
)
1191 ;; If REVERSE go to the new file, otherwise go to the old.
1192 (diff-find-source-location (not reverse
) reverse
)
1195 (error "Can't find the text to patch"))
1197 ;; A reversed patch was detected, perhaps apply it in reverse.
1198 (not (save-window-excursion
1200 (goto-char (+ (car pos
) (cdr old
)))
1203 "Hunk hasn't been applied yet; apply it now? "
1204 "Hunk has already been applied; undo it? ")))))
1205 (message "(Nothing done)"))
1208 (with-current-buffer buf
1209 (goto-char (car pos
))
1210 (delete-region (car pos
) (cdr pos
))
1212 ;; Display BUF in a window
1213 (set-window-point (display-buffer buf
) (+ (car pos
) (cdr new
)))
1214 (diff-hunk-status-msg line-offset
(diff-xor switched reverse
) nil
)
1215 (when diff-advance-after-apply-hunk
1216 (diff-hunk-next))))))
1219 (defun diff-test-hunk (&optional reverse
)
1220 "See whether it's possible to apply the current hunk.
1221 With a prefix argument, try to REVERSE the hunk."
1223 (destructuring-bind (buf line-offset pos src dst
&optional switched
)
1224 ;; If REVERSE go to the new file, otherwise go to the old.
1225 (diff-find-source-location (not reverse
) reverse
)
1226 (set-window-point (display-buffer buf
) (+ (car pos
) (cdr src
)))
1227 (diff-hunk-status-msg line-offset
(diff-xor reverse switched
) t
)))
1230 (defalias 'diff-mouse-goto-source
'diff-goto-source
)
1232 (defun diff-goto-source (&optional other-file event
)
1233 "Jump to the corresponding source line.
1234 `diff-jump-to-old-file' (or its opposite if the OTHER-FILE prefix arg
1235 is given) determines whether to jump to the old or the new file.
1236 If the prefix arg is bigger than 8 (for example with \\[universal-argument] \\[universal-argument])
1237 then `diff-jump-to-old-file' is also set, for the next invocations."
1238 (interactive (list current-prefix-arg last-input-event
))
1239 ;; When pointing at a removal line, we probably want to jump to
1240 ;; the old location, and else to the new (i.e. as if reverting).
1241 ;; This is a convenient detail when using smerge-diff.
1242 (if event
(posn-set-point (event-end event
)))
1243 (let ((rev (not (save-excursion (beginning-of-line) (looking-at "[-<]")))))
1244 (destructuring-bind (buf line-offset pos src dst
&optional switched
)
1245 (diff-find-source-location other-file rev
)
1247 (goto-char (+ (car pos
) (cdr src
)))
1248 (diff-hunk-status-msg line-offset
(diff-xor rev switched
) t
))))
1251 (defun diff-current-defun ()
1252 "Find the name of function at point.
1253 For use in `add-log-current-defun-function'."
1255 (when (looking-at diff-hunk-header-re
)
1257 (re-search-forward "^[^ ]" nil t
))
1258 (destructuring-bind (buf line-offset pos src dst
&optional switched
)
1259 (diff-find-source-location)
1261 (or (when (memq (char-after) '(?
< ?-
))
1262 ;; Cursor is pointing at removed text. This could be a removed
1263 ;; function, in which case, going to the source buffer will
1264 ;; not help since the function is now removed. Instead,
1265 ;; try to figure out the function name just from the code-fragment.
1266 (let ((old (if switched dst src
)))
1269 (funcall (with-current-buffer buf major-mode
))
1270 (goto-char (+ (point-min) (cdr old
)))
1271 (add-log-current-defun))))
1272 (with-current-buffer buf
1273 (goto-char (+ (car pos
) (cdr src
)))
1274 (add-log-current-defun))))))
1276 (defun diff-refine-hunk ()
1277 "Refine the current hunk by ignoring space differences."
1279 (let* ((char-offset (- (point) (progn (diff-beginning-of-hunk) (point))))
1280 (opts (case (char-after) (?
@ "-bu") (?
* "-bc") (t "-b")))
1281 (line-nb (and (or (looking-at "[^0-9]+\\([0-9]+\\)")
1282 (error "Can't find line number"))
1283 (string-to-number (match-string 1))))
1284 (hunk (delete-and-extract-region
1285 (point) (save-excursion (diff-end-of-hunk) (point))))
1286 (lead (make-string (1- line-nb
) ?
\n)) ;Line nums start at 1.
1287 (file1 (make-temp-file "diff1"))
1288 (file2 (make-temp-file "diff2"))
1289 (coding-system-for-read buffer-file-coding-system
)
1293 (setq old
(diff-hunk-text hunk nil char-offset
))
1294 (setq new
(diff-hunk-text hunk t char-offset
))
1295 (write-region (concat lead
(car old
)) nil file1 nil
'nomessage
)
1296 (write-region (concat lead
(car new
)) nil file2 nil
'nomessage
)
1299 (call-process diff-command nil t nil
1302 (0 nil
) ;Nothing to reformat.
1303 (1 (goto-char (point-min))
1304 ;; Remove the file-header.
1305 (when (re-search-forward diff-hunk-header-re nil t
)
1306 (delete-region (point-min) (match-beginning 0))))
1307 (t (goto-char (point-max))
1308 (unless (bolp) (insert "\n"))
1310 (setq hunk
(buffer-string))
1311 (unless (memq status
'(0 1))
1312 (error "Diff returned: %s" status
)))))
1313 ;; Whatever happens, put back some equivalent text: either the new
1314 ;; one or the original one in case some error happened.
1317 (delete-file file2
))))
1319 ;; provide the package
1320 (provide 'diff-mode
)
1322 ;;; Old Change Log from when diff-mode wasn't part of Emacs:
1323 ;; Revision 1.11 1999/10/09 23:38:29 monnier
1324 ;; (diff-mode-load-hook): dropped.
1325 ;; (auto-mode-alist): also catch *.diffs.
1326 ;; (diff-find-file-name, diff-mode): add smarts to find the right file
1327 ;; for *.rej files (that lack any file name indication).
1329 ;; Revision 1.10 1999/09/30 15:32:11 monnier
1330 ;; added support for "\ No newline at end of file".
1332 ;; Revision 1.9 1999/09/15 00:01:13 monnier
1333 ;; - added basic `compile' support.
1334 ;; - have diff-kill-hunk call diff-kill-file if it's the only hunk.
1335 ;; - diff-kill-file now tries to kill the leading garbage as well.
1337 ;; Revision 1.8 1999/09/13 21:10:09 monnier
1338 ;; - don't use CL in the autoloaded code
1339 ;; - accept diffs using -T
1341 ;; Revision 1.7 1999/09/05 20:53:03 monnier
1342 ;; interface to ediff-patch
1344 ;; Revision 1.6 1999/09/01 20:55:13 monnier
1345 ;; (ediff=patch-file): add bindings to call ediff-patch.
1346 ;; (diff-find-file-name): taken out of diff-goto-source.
1347 ;; (diff-unified->context, diff-context->unified, diff-reverse-direction,
1348 ;; diff-fixup-modifs): only use the region if a prefix arg is given.
1350 ;; Revision 1.5 1999/08/31 19:18:52 monnier
1351 ;; (diff-beginning-of-file, diff-prev-file): fixed wrong parenthesis.
1353 ;; Revision 1.4 1999/08/31 13:01:44 monnier
1354 ;; use `combine-after-change-calls' to minimize the slowdown of font-lock.
1357 ;; arch-tag: 2571d7ff-bc28-4cf9-8585-42e21890be66
1358 ;;; diff-mode.el ends here