1 ;;; smerge-mode.el --- Minor mode to resolve diff3 conflicts
3 ;; Copyright (C) 1999, 2000, 2001, 2002, 2003,
4 ;; 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
6 ;; Author: Stefan Monnier <monnier@iro.umontreal.ca>
7 ;; Keywords: tools revision-control merge diff3 cvs conflict
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., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02110-1301, USA.
28 ;; Provides a lightweight alternative to emerge/ediff.
29 ;; To use it, simply add to your .emacs the following lines:
31 ;; (autoload 'smerge-mode "smerge-mode" nil t)
33 ;; you can even have it turned on automatically with the following
34 ;; piece of code in your .emacs:
36 ;; (defun sm-try-smerge ()
38 ;; (goto-char (point-min))
39 ;; (when (re-search-forward "^<<<<<<< " nil t)
41 ;; (add-hook 'find-file-hook 'sm-try-smerge t)
45 ;; - if requested, ask the user whether he wants to call ediff right away
49 (eval-when-compile (require 'cl
))
52 ;;; The real definition comes later.
56 "Minor mode to highlight and resolve diff3 conflicts."
60 (defcustom smerge-diff-buffer-name
"*vc-diff*"
61 "Buffer name to use for displaying diffs."
66 (const "*smerge-diff*")
69 (defcustom smerge-diff-switches
71 (if (listp diff-switches
) diff-switches
(list diff-switches
)))
72 "A list of strings specifying switches to be passed to diff.
73 Used in `smerge-diff-base-mine' and related functions."
75 :type
'(repeat string
))
77 (defcustom smerge-auto-leave t
78 "Non-nil means to leave `smerge-mode' when the last conflict is resolved."
83 '((((min-colors 88) (background light
))
84 (:foreground
"blue1"))
87 (((min-colors 88) (background dark
))
88 (:foreground
"cyan1"))
90 (:foreground
"cyan")))
93 ;; backward-compatibility alias
94 (put 'smerge-mine-face
'face-alias
'smerge-mine
)
95 (defvar smerge-mine-face
'smerge-mine
)
98 '((((background light
))
99 (:foreground
"darkgreen"))
101 (:foreground
"lightgreen")))
102 "Face for the other code."
104 ;; backward-compatibility alias
105 (put 'smerge-other-face
'face-alias
'smerge-other
)
106 (defvar smerge-other-face
'smerge-other
)
109 '((((min-colors 88) (background light
))
110 (:foreground
"red1"))
111 (((background light
))
114 (:foreground
"orange")))
115 "Face for the base code."
117 ;; backward-compatibility alias
118 (put 'smerge-base-face
'face-alias
'smerge-base
)
119 (defvar smerge-base-face
'smerge-base
)
121 (defface smerge-markers
122 '((((background light
))
123 (:background
"grey85"))
125 (:background
"grey30")))
126 "Face for the conflict markers."
128 ;; backward-compatibility alias
129 (put 'smerge-markers-face
'face-alias
'smerge-markers
)
130 (defvar smerge-markers-face
'smerge-markers
)
132 (defface smerge-refined-change
133 '((t :background
"yellow"))
134 "Face used for char-based changes shown by `smerge-refine'."
137 (easy-mmode-defmap smerge-basic-map
138 `(("n" . smerge-next
)
140 ("r" . smerge-resolve
)
141 ("a" . smerge-keep-all
)
142 ("b" . smerge-keep-base
)
143 ("o" . smerge-keep-other
)
144 ("m" . smerge-keep-mine
)
146 ("C" . smerge-combine-with-next
)
147 ("R" . smerge-refine
)
148 ("\C-m" . smerge-keep-current
)
149 ("=" .
,(make-sparse-keymap "Diff"))
150 ("=<" "base-mine" . smerge-diff-base-mine
)
151 ("=>" "base-other" . smerge-diff-base-other
)
152 ("==" "mine-other" . smerge-diff-mine-other
))
153 "The base keymap for `smerge-mode'.")
155 (defcustom smerge-command-prefix
"\C-c^"
156 "Prefix for `smerge-mode' commands."
158 :type
'(choice (string "\e") (string "\C-c^") (string "") string
))
160 (easy-mmode-defmap smerge-mode-map
161 `((,smerge-command-prefix .
,smerge-basic-map
))
162 "Keymap for `smerge-mode'.")
164 (defvar smerge-check-cache nil
)
165 (make-variable-buffer-local 'smerge-check-cache
)
166 (defun smerge-check (n)
168 (let ((state (cons (point) (buffer-modified-tick))))
169 (unless (equal (cdr smerge-check-cache
) state
)
170 (smerge-match-conflict)
171 (setq smerge-check-cache
(cons (match-data) state
)))
172 (nth (* 2 n
) (car smerge-check-cache
)))
175 (easy-menu-define smerge-mode-menu smerge-mode-map
176 "Menu for `smerge-mode'."
178 ["Next" smerge-next
:help
"Go to next conflict"]
179 ["Previous" smerge-prev
:help
"Go to previous conflict"]
181 ["Keep All" smerge-keep-all
:help
"Keep all three versions"
182 :active
(smerge-check 1)]
183 ["Keep Current" smerge-keep-current
:help
"Use current (at point) version"
184 :active
(and (smerge-check 1) (> (smerge-get-current) 0))]
186 ["Revert to Base" smerge-keep-base
:help
"Revert to base version"
187 :active
(smerge-check 2)]
188 ["Keep Other" smerge-keep-other
:help
"Keep `other' version"
189 :active
(smerge-check 3)]
190 ["Keep Yours" smerge-keep-mine
:help
"Keep your version"
191 :active
(smerge-check 1)]
193 ["Diff Base/Mine" smerge-diff-base-mine
194 :help
"Diff `base' and `mine' for current conflict"
195 :active
(smerge-check 2)]
196 ["Diff Base/Other" smerge-diff-base-other
197 :help
"Diff `base' and `other' for current conflict"
198 :active
(smerge-check 2)]
199 ["Diff Mine/Other" smerge-diff-mine-other
200 :help
"Diff `mine' and `other' for current conflict"
201 :active
(smerge-check 1)]
203 ["Invoke Ediff" smerge-ediff
204 :help
"Use Ediff to resolve the conflicts"
205 :active
(smerge-check 1)]
206 ["Auto Resolve" smerge-resolve
207 :help
"Try auto-resolution heuristics"
208 :active
(smerge-check 1)]
209 ["Combine" smerge-combine-with-next
210 :help
"Combine current conflict with next"
211 :active
(smerge-check 1)]
214 (easy-menu-define smerge-context-menu nil
215 "Context menu for mine area in `smerge-mode'."
217 ["Keep Current" smerge-keep-current
:help
"Use current (at point) version"]
218 ["Kill Current" smerge-kill-current
:help
"Remove current (at point) version"]
219 ["Keep All" smerge-keep-all
:help
"Keep all three versions"]
221 ["More..." (popup-menu smerge-mode-menu
) :help
"Show full SMerge mode menu"]
224 (defconst smerge-font-lock-keywords
225 '((smerge-find-conflict
226 (1 smerge-mine-face prepend t
)
227 (2 smerge-base-face prepend t
)
228 (3 smerge-other-face prepend t
)
229 ;; FIXME: `keep' doesn't work right with syntactic fontification.
230 (0 smerge-markers-face keep
)
233 "Font lock patterns for `smerge-mode'.")
235 (defconst smerge-begin-re
"^<<<<<<< \\(.*\\)\n")
236 (defconst smerge-end-re
"^>>>>>>> .*\n")
237 (defconst smerge-base-re
"^||||||| .*\n")
238 (defconst smerge-other-re
"^=======\n")
240 (defvar smerge-conflict-style nil
241 "Keep track of which style of conflict is in use.
242 Can be nil if the style is undecided, or else:
246 ;; Compiler pacifiers
247 (defvar font-lock-mode
)
248 (defvar font-lock-keywords
)
254 ;; Define smerge-next and smerge-prev
255 (easy-mmode-define-navigation smerge smerge-begin-re
"conflict")
257 (defconst smerge-match-names
["conflict" "mine" "base" "other"])
259 (defun smerge-ensure-match (n)
260 (unless (match-end n
)
261 (error "No `%s'" (aref smerge-match-names n
))))
263 (defun smerge-auto-leave ()
264 (when (and smerge-auto-leave
265 (save-excursion (goto-char (point-min))
266 (not (re-search-forward smerge-begin-re nil t
))))
267 (when (and (listp buffer-undo-list
) smerge-mode
)
268 (push (list 'apply
'smerge-mode
1) buffer-undo-list
))
272 (defun smerge-keep-all ()
273 "Concatenate all versions."
275 (smerge-match-conflict)
276 (let ((mb2 (or (match-beginning 2) (point-max)))
277 (me2 (or (match-end 2) (point-min))))
278 (delete-region (match-end 3) (match-end 0))
279 (delete-region (max me2
(match-end 1)) (match-beginning 3))
280 (if (and (match-end 2) (/= (match-end 1) (match-end 3)))
281 (delete-region (match-end 1) (match-beginning 2)))
282 (delete-region (match-beginning 0) (min (match-beginning 1) mb2
))
283 (smerge-auto-leave)))
285 (defun smerge-keep-n (n)
286 (smerge-remove-props (match-beginning 0) (match-end 0))
287 ;; We used to use replace-match, but that did not preserve markers so well.
288 (delete-region (match-end n
) (match-end 0))
289 (delete-region (match-beginning 0) (match-beginning n
)))
291 (defun smerge-combine-with-next ()
292 "Combine the current conflict with the next one."
294 (smerge-match-conflict)
296 (dolist (i '(3 2 1 0))
297 (push (if (match-end i
) (copy-marker (match-end i
) t
)) ends
))
298 (setq ends
(apply 'vector ends
))
299 (goto-char (aref ends
0))
300 (if (not (re-search-forward smerge-begin-re nil t
))
301 (error "No next conflict")
302 (smerge-match-conflict)
303 (let ((match-data (mapcar (lambda (m) (if m
(copy-marker m
)))
305 ;; First copy the in-between text in each alternative.
308 (goto-char (aref ends i
))
309 (insert-buffer-substring (current-buffer)
310 (aref ends
0) (car match-data
))))
311 (delete-region (aref ends
0) (car match-data
))
312 ;; Then move the second conflict's alternatives into the first.
314 (set-match-data match-data
)
315 (when (and (aref ends i
) (match-end i
))
316 (goto-char (aref ends i
))
317 (insert-buffer-substring (current-buffer)
318 (match-beginning i
) (match-end i
))))
319 (delete-region (car match-data
) (cadr match-data
))
321 (dolist (m match-data
) (if m
(move-marker m nil
)))
322 (mapc (lambda (m) (if m
(move-marker m nil
))) ends
)))))
324 (defvar smerge-resolve-function
325 (lambda () (error "Don't know how to resolve"))
326 "Mode-specific merge function.
327 The function is called with no argument and with the match data set
328 according to `smerge-match-conflict'.")
329 (add-to-list 'debug-ignored-errors
"Don't know how to resolve")
331 (defvar smerge-text-properties
332 `(help-echo "merge conflict: mouse-3 shows a menu"
333 ;; mouse-face highlight
334 keymap
(keymap (down-mouse-3 . smerge-popup-context-menu
))))
336 (defun smerge-remove-props (beg end
)
337 (remove-overlays beg end
'smerge
'refine
)
338 (remove-overlays beg end
'smerge
'conflict
)
339 ;; Now that we use overlays rather than text-properties, this function
340 ;; does not cause refontification any more. It can be seen very clearly
341 ;; in buffers where jit-lock-contextually is not t, in which case deleting
342 ;; the "<<<<<<< foobar" leading line leaves the rest of the conflict
343 ;; highlighted as if it were still a valid conflict. Note that in many
344 ;; important cases (such as the previous example) we're actually called
345 ;; during font-locking so inhibit-modification-hooks is non-nil, so we
346 ;; can't just modify the buffer and expect font-lock to be triggered as in:
347 ;; (put-text-property beg end 'smerge-force-highlighting nil)
348 (let ((modified (buffer-modified-p)))
349 (remove-text-properties beg end
'(fontified nil
))
350 (restore-buffer-modified-p modified
)))
352 (defun smerge-popup-context-menu (event)
353 "Pop up the Smerge mode context menu under mouse."
356 (save-excursion (posn-set-point (event-end event
)) (smerge-check 1)))
358 (posn-set-point (event-end event
))
359 (smerge-match-conflict)
360 (let ((i (smerge-get-current))
364 (popup-menu smerge-mode-menu
)
366 (setq o
(make-overlay (match-beginning i
) (match-end i
)))
369 (overlay-put o
'face
'highlight
)
370 (sit-for 0) ;Display the new highlighting.
371 (popup-menu smerge-context-menu
))
373 (delete-overlay o
)))))
374 ;; There's no conflict at point, the text-props are just obsolete.
376 (let ((beg (re-search-backward smerge-end-re nil t
))
377 (end (re-search-forward smerge-begin-re nil t
)))
378 (smerge-remove-props (or beg
(point-min)) (or end
(point-max)))
379 (push event unread-command-events
)))))
381 (defun smerge-resolve ()
382 "Resolve the conflict at point intelligently.
383 This relies on mode-specific knowledge and thus only works in
384 some major modes. Uses `smerge-resolve-function' to do the actual work."
386 (smerge-match-conflict)
387 (smerge-remove-props (match-beginning 0) (match-end 0))
389 ;; Trivial diff3 -A non-conflicts.
390 ((and (eq (match-end 1) (match-end 3))
391 (eq (match-beginning 1) (match-beginning 3)))
393 ;; Mode-specific conflict resolution.
396 (funcall smerge-resolve-function
)
399 ;; Nothing to do: the resolution function has done it already.
401 ;; FIXME: Add "if [ diff -b MINE OTHER ]; then select OTHER; fi"
403 ;; FIXME: Add "diff -b BASE MINE | patch OTHER".
404 ;; FIXME: Add "diff -b BASE OTHER | patch MINE".
407 ((and (not (match-end 2))
408 ;; FIXME: Add "diff -b"-based refinement.
412 (error "Don't know how to resolve")))
415 (defun smerge-keep-base ()
416 "Revert to the base version."
418 (smerge-match-conflict)
419 (smerge-ensure-match 2)
423 (defun smerge-keep-other ()
424 "Use \"other\" version."
426 (smerge-match-conflict)
427 ;;(smerge-ensure-match 3)
431 (defun smerge-keep-mine ()
434 (smerge-match-conflict)
435 ;;(smerge-ensure-match 1)
439 (defun smerge-get-current ()
441 (while (or (not (match-end i
))
442 (< (point) (match-beginning i
))
443 (>= (point) (match-end i
)))
447 (defun smerge-keep-current ()
448 "Use the current (under the cursor) version."
450 (smerge-match-conflict)
451 (let ((i (smerge-get-current)))
452 (if (<= i
0) (error "Not inside a version")
454 (smerge-auto-leave))))
456 (defun smerge-kill-current ()
457 "Remove the current (under the cursor) version."
459 (smerge-match-conflict)
460 (let ((i (smerge-get-current)))
461 (if (<= i
0) (error "Not inside a version")
464 (if (and (match-end n
) (/= (match-end n
) (match-end i
)))
467 (/= (match-end (car left
)) (match-end (cadr left
))))
468 (ding) ;We don't know how to do that.
469 (smerge-keep-n (car left
))
470 (smerge-auto-leave))))))
472 (defun smerge-diff-base-mine ()
473 "Diff 'base' and 'mine' version in current conflict region."
477 (defun smerge-diff-base-other ()
478 "Diff 'base' and 'other' version in current conflict region."
482 (defun smerge-diff-mine-other ()
483 "Diff 'mine' and 'other' version in current conflict region."
487 (defun smerge-match-conflict ()
488 "Get info about the conflict. Puts the info in the `match-data'.
489 The submatches contain:
490 0: the whole conflict.
494 An error is raised if not inside a conflict."
497 (let* ((orig-point (point))
500 (_ (re-search-backward smerge-begin-re
))
502 (start (match-beginning 0))
503 (mine-start (match-end 0))
504 (filename (or (match-string 1) ""))
506 (_ (re-search-forward smerge-end-re
))
507 (_ (assert (< orig-point
(match-end 0))))
509 (other-end (match-beginning 0))
512 (_ (re-search-backward smerge-other-re start
))
514 (mine-end (match-beginning 0))
515 (other-start (match-end 0))
519 ;; handle the various conflict styles
522 (goto-char mine-start
)
523 (re-search-forward smerge-begin-re end t
))
524 ;; There's a nested conflict and we're after the the beginning
525 ;; of the outer one but before the beginning of the inner one.
526 ;; Of course, maybe this is not a nested conflict but in that
527 ;; case it can only be something nastier that we don't know how
528 ;; to handle, so may as well arbitrarily decide to treat it as
529 ;; a nested conflict. --Stef
530 (error "There is a nested conflict"))
532 ((re-search-backward smerge-base-re start t
)
533 ;; a 3-parts conflict
534 (set (make-local-variable 'smerge-conflict-style
) 'diff3-A
)
535 (setq base-end mine-end
)
536 (setq mine-end
(match-beginning 0))
537 (setq base-start
(match-end 0)))
539 ((string= filename
(file-name-nondirectory
540 (or buffer-file-name
"")))
541 ;; a 2-parts conflict
542 (set (make-local-variable 'smerge-conflict-style
) 'diff3-E
))
544 ((and (not base-start
)
545 (or (eq smerge-conflict-style
'diff3-A
)
546 (equal filename
"ANCESTOR")
547 (string-match "\\`[.0-9]+\\'" filename
)))
548 ;; a same-diff conflict
549 (setq base-start mine-start
)
550 (setq base-end mine-end
)
551 (setq mine-start other-start
)
552 (setq mine-end other-end
)))
554 (store-match-data (list start end
557 other-start other-end
558 (when base-start
(1- base-start
)) base-start
559 (1- other-start
) other-start
))
561 (search-failed (error "Point not in conflict region")))))
563 (add-to-list 'debug-ignored-errors
"Point not in conflict region")
565 (defun smerge-conflict-overlay (pos)
566 "Return the conflict overlay at POS if any."
567 (let ((ols (overlays-at pos
))
570 (if (and (eq (overlay-get ol
'smerge
) 'conflict
)
571 (> (overlay-end ol
) pos
))
575 (defun smerge-find-conflict (&optional limit
)
576 "Find and match a conflict region. Intended as a font-lock MATCHER.
577 The submatches are the same as in `smerge-match-conflict'.
578 Returns non-nil if a match is found between point and LIMIT.
579 Point is moved to the end of the conflict."
583 ;; First check to see if point is already inside a conflict, using
584 ;; the conflict overlays.
585 (while (and (not found
) (setq conflict
(smerge-conflict-overlay pos
)))
586 ;; Check the overlay's validity and kill it if it's out of date.
589 (goto-char (overlay-start conflict
))
590 (smerge-match-conflict)
591 (goto-char (match-end 0))
593 (error "Matching backward!")
595 (error (smerge-remove-props
596 (overlay-start conflict
) (overlay-end conflict
))
598 ;; If we're not already inside a conflict, look for the next conflict
599 ;; and add/update its overlay.
600 (while (and (not found
) (re-search-forward smerge-begin-re limit t
))
603 (smerge-match-conflict)
604 (goto-char (match-end 0))
605 (let ((conflict (smerge-conflict-overlay (1- (point)))))
607 ;; Update its location, just in case it got messed up.
608 (move-overlay conflict
(match-beginning 0) (match-end 0))
609 (setq conflict
(make-overlay (match-beginning 0) (match-end 0)
610 nil
'front-advance nil
))
611 (overlay-put conflict
'evaporate t
)
612 (overlay-put conflict
'smerge
'conflict
)
613 (let ((props smerge-text-properties
))
615 (overlay-put conflict
(pop props
) (pop props
))))))
620 (defun smerge-refine-chopup-region (beg end file
)
621 "Chopup the region into small elements, one per line."
622 ;; ediff chops up into words, where the definition of a word is
623 ;; customizable. Instead we here keep only one char per line.
624 ;; The advantages are that there's nothing to configure, that we get very
625 ;; fine results, and that it's trivial to map the line numbers in the
626 ;; output of diff back into buffer positions. The disadvantage is that it
627 ;; can take more time to compute the diff and that the result is sometimes
628 ;; too fine. I'm not too concerned about the slowdown because conflicts
629 ;; are usually significantly smaller than the whole file. As for the
630 ;; problem of too-fine-refinement, I have found it to be unimportant
631 ;; especially when you consider the cases where the fine-grain is just
633 (let ((buf (current-buffer)))
635 (insert-buffer-substring buf beg end
)
636 (goto-char (point-min))
639 (unless (eq (char-before) ?
\n) (insert ?
\n)))
640 (let ((coding-system-for-write 'emacs-mule
))
641 (write-region (point-min) (point-max) file nil
'nomessage
)))))
643 (defun smerge-refine-highlight-change (buf beg match-num1 match-num2
)
644 (let* ((startline (string-to-number (match-string match-num1
)))
647 (+ beg
(if (match-end match-num2
)
648 (string-to-number (match-string match-num2
))
651 'front-advance nil
)))
652 (overlay-put ol
'smerge
'refine
)
653 (overlay-put ol
'evaporate t
)
654 (overlay-put ol
'face
'smerge-refined-change
)))
657 (defun smerge-refine ()
658 "Highlight the parts of the conflict that are different."
660 ;; FIXME: make it work with 3-way conflicts.
661 (smerge-match-conflict)
662 (remove-overlays (match-beginning 0) (match-end 0) 'smerge
'refine
)
663 (smerge-ensure-match 1)
664 (smerge-ensure-match 3)
665 (let ((buf (current-buffer))
666 ;; Read them before the match-data gets clobbered.
667 (beg1 (match-beginning 1)) (end1 (match-end 1))
668 (beg2 (match-beginning 3)) (end2 (match-end 3))
669 (file1 (make-temp-file "smerge1"))
670 (file2 (make-temp-file "smerge2")))
672 ;; Chop up regions into smaller elements and save into files.
673 (smerge-refine-chopup-region beg1 end1 file1
)
674 (smerge-refine-chopup-region beg2 end2 file2
)
676 ;; Call diff on those files.
679 (let ((coding-system-for-read 'emacs-mule
))
680 (call-process diff-command nil t nil file1 file2
))
681 ;; Process diff's output.
682 (goto-char (point-min))
684 (if (not (looking-at "\\([0-9]+\\)\\(?:,\\([0-9]+\\)\\)?\\([acd]\\)\\([0-9]+\\)\\(?:,\\([0-9]+\\)\\)?$"))
685 (error "Unexpected patch hunk header: %s"
686 (buffer-substring (point) (line-end-position)))
687 (let ((op (char-after (match-beginning 3))))
688 (when (memq op
'(?d ?c
))
689 (smerge-refine-highlight-change buf beg1
1 2))
690 (when (memq op
'(?a ?c
))
691 (smerge-refine-highlight-change buf beg2
4 5)))
692 (forward-line 1) ;Skip hunk header.
693 (and (re-search-forward "^[0-9]" nil
'move
) ;Skip hunk body.
694 (goto-char (match-beginning 0))))))
696 (delete-file file2
))))
698 (defun smerge-diff (n1 n2
)
699 (smerge-match-conflict)
700 (smerge-ensure-match n1
)
701 (smerge-ensure-match n2
)
702 (let ((name1 (aref smerge-match-names n1
))
703 (name2 (aref smerge-match-names n2
))
704 ;; Read them before the match-data gets clobbered.
705 (beg1 (match-beginning n1
))
706 (end1 (match-end n1
))
707 (beg2 (match-beginning n2
))
708 (end2 (match-end n2
))
709 (file1 (make-temp-file "smerge1"))
710 (file2 (make-temp-file "smerge2"))
711 (dir default-directory
)
712 (file (if buffer-file-name
(file-relative-name buffer-file-name
)))
713 ;; We would want to use `emacs-mule-unix' for read&write, but we
714 ;; bump into problems with the coding-system used by diff to write
715 ;; the file names and the time stamps in the header.
716 ;; `buffer-file-coding-system' is not always correct either, but if
717 ;; the OS/user uses only one coding-system, then it works.
718 (coding-system-for-read buffer-file-coding-system
))
719 (write-region beg1 end1 file1 nil
'nomessage
)
720 (write-region beg2 end2 file2 nil
'nomessage
)
722 (with-current-buffer (get-buffer-create smerge-diff-buffer-name
)
723 (setq default-directory dir
)
724 (let ((inhibit-read-only t
))
727 (apply 'call-process diff-command nil t nil
728 (append smerge-diff-switches
729 (list "-L" (concat name1
"/" file
)
730 "-L" (concat name2
"/" file
)
732 (if (eq status
0) (insert "No differences found.\n"))))
733 (goto-char (point-min))
735 (display-buffer (current-buffer) t
))
737 (delete-file file2
))))
739 ;; compiler pacifiers
740 (defvar smerge-ediff-windows
)
741 (defvar smerge-ediff-buf
)
742 (defvar ediff-buffer-A
)
743 (defvar ediff-buffer-B
)
744 (defvar ediff-buffer-C
)
745 (defvar ediff-ancestor-buffer
)
746 (defvar ediff-quit-hook
)
749 (defun smerge-ediff (&optional name-mine name-other name-base
)
750 "Invoke ediff to resolve the conflicts.
751 NAME-MINE, NAME-OTHER, and NAME-BASE, if non-nil, are used for the
754 (let* ((buf (current-buffer))
756 ;;(ediff-default-variant 'default-B)
757 (config (current-window-configuration))
758 (filename (file-name-nondirectory buffer-file-name
))
759 (mine (generate-new-buffer
760 (or name-mine
(concat "*" filename
" MINE*"))))
761 (other (generate-new-buffer
762 (or name-other
(concat "*" filename
" OTHER*"))))
764 (with-current-buffer mine
765 (buffer-disable-undo)
766 (insert-buffer-substring buf
)
767 (goto-char (point-min))
768 (while (smerge-find-conflict)
769 (when (match-beginning 2) (setq base t
))
772 (set-buffer-modified-p nil
)
775 (with-current-buffer other
776 (buffer-disable-undo)
777 (insert-buffer-substring buf
)
778 (goto-char (point-min))
779 (while (smerge-find-conflict)
782 (set-buffer-modified-p nil
)
786 (setq base
(generate-new-buffer
787 (or name-base
(concat "*" filename
" BASE*"))))
788 (with-current-buffer base
789 (buffer-disable-undo)
790 (insert-buffer-substring buf
)
791 (goto-char (point-min))
792 (while (smerge-find-conflict)
795 (delete-region (match-beginning 0) (match-end 0))))
797 (set-buffer-modified-p nil
)
800 ;; the rest of the code is inspired from vc.el
804 (ediff-merge-buffers-with-ancestor mine other base
)
805 ;; nil 'ediff-merge-revisions-with-ancestor buffer-file-name)
806 (ediff-merge-buffers mine other
)))
807 ;; nil 'ediff-merge-revisions buffer-file-name)))
809 ;; Ediff is now set up, and we are in the control buffer.
810 ;; Do a few further adjustments and take precautions for exit.
811 (set (make-local-variable 'smerge-ediff-windows
) config
)
812 (set (make-local-variable 'smerge-ediff-buf
) buf
)
813 (set (make-local-variable 'ediff-quit-hook
)
815 (let ((buffer-A ediff-buffer-A
)
816 (buffer-B ediff-buffer-B
)
817 (buffer-C ediff-buffer-C
)
818 (buffer-Ancestor ediff-ancestor-buffer
)
819 (buf smerge-ediff-buf
)
820 (windows smerge-ediff-windows
))
822 (with-current-buffer buf
824 (insert-buffer-substring buffer-C
)
825 (kill-buffer buffer-A
)
826 (kill-buffer buffer-B
)
827 (kill-buffer buffer-C
)
828 (when (bufferp buffer-Ancestor
) (kill-buffer buffer-Ancestor
))
829 (set-window-configuration windows
)
830 (message "Conflict resolution finished; you may save the buffer")))))
831 (message "Please resolve conflicts now; exit ediff when done")))
835 (define-minor-mode smerge-mode
836 "Minor mode to simplify editing output from the diff3 program.
838 :group
'smerge
:lighter
" SMerge"
839 (when (and (boundp 'font-lock-mode
) font-lock-mode
)
842 (font-lock-add-keywords nil smerge-font-lock-keywords
'append
)
843 (font-lock-remove-keywords nil smerge-font-lock-keywords
))
844 (goto-char (point-min))
845 (while (smerge-find-conflict)
847 (font-lock-fontify-region (match-beginning 0) (match-end 0) nil
)))))
849 (smerge-remove-props (point-min) (point-max))))
852 (provide 'smerge-mode
)
854 ;; arch-tag: 605c8d1e-e43d-4943-a6f3-1bcc4333e690
855 ;;; smerge-mode.el ends here