Function: emerge-find-difference-B

emerge-find-difference-B is an interactive and byte-compiled function defined in emerge.el.gz.

Signature

(emerge-find-difference-B ARG)

Documentation

Find the difference containing point, in the B buffer.

This command must be executed 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-B (arg)
  "Find the difference containing point, in the B buffer.
This command must be executed 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 B buffer, using the markers
  ;; for the beginning and end of the differences in the B buffer
  (emerge-find-difference1 arg
			   (with-current-buffer emerge-B-buffer (point))
			   2 3))