Function: ediff-copy-A-to-B

ediff-copy-A-to-B is an interactive and byte-compiled function defined in ediff-util.el.gz.

Signature

(ediff-copy-A-to-B ARG)

Documentation

Copy ARGth difference region from buffer A to B.

ARG is a prefix argument. If nil, copy the current difference region.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/vc/ediff-util.el.gz
(defun ediff-copy-A-to-B (arg)
  "Copy ARGth difference region from buffer A to B.
ARG is a prefix argument.  If nil, copy the current difference region."
  (interactive "P")
  (ediff-diff-to-diff arg "ab"))