Function: emerge-select-B

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

Signature

(emerge-select-B &optional FORCE)

Documentation

Select the B variant of this difference.

Refuses to function if this difference has been edited, i.e., if it is neither the A nor the B variant. With prefix argument FORCE, force the variant to be selected even if the difference has been edited.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/vc/emerge.el.gz
(defun emerge-select-B (&optional force)
  "Select the B variant of this difference.
Refuses to function if this difference has been edited, i.e., if it
is neither the A nor the B variant.
With prefix argument FORCE, force the variant to be selected
even if the difference has been edited."
  (interactive "P")
  (let ((operate #'emerge-select-B-edit)
	(operate-no-change
	 (lambda (_diff-vector)
           (if emerge-auto-advance (emerge-next-difference)))))
    (emerge-select-version force operate operate-no-change operate)))