Function: emerge-find-difference-merge
emerge-find-difference-merge is an interactive and byte-compiled
function defined in emerge.el.gz.
Signature
(emerge-find-difference-merge ARG)
Documentation
Find the difference containing point, in the merge buffer.
If there is no containing difference and the prefix argument ARG is positive, find the nearest following difference. With negative prefix argument, find the nearest previous difference.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/vc/emerge.el.gz
(defun emerge-find-difference-merge (arg)
"Find the difference containing point, in the merge buffer.
If there is no containing difference and the prefix argument ARG
is positive, find the nearest following difference. With
negative prefix argument, find the nearest previous difference."
(interactive "P")
;; search for the point in the merge buffer, using the markers
;; for the beginning and end of the differences in the merge buffer
(emerge-find-difference1 arg (point) 4 5))