Function: diff-ediff-patch
diff-ediff-patch is an interactive and byte-compiled function defined
in diff-mode.el.gz.
Signature
(diff-ediff-patch)
Documentation
Call ediff-patch-file on the current buffer.
Probably introduced at or before Emacs version 22.1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/vc/diff-mode.el.gz
(defun diff-ediff-patch ()
"Call `ediff-patch-file' on the current buffer."
(interactive)
(condition-case nil
(ediff-patch-file nil (current-buffer))
(wrong-number-of-arguments (ediff-patch-file))))