Function: emerge-files-remote

emerge-files-remote is an autoloaded and byte-compiled function defined in emerge.el.gz.

Signature

(emerge-files-remote FILE-A FILE-B FILE-OUT)

Source Code

;; Defined in /usr/src/emacs/lisp/vc/emerge.el.gz
;;; Functions to start Emerge via remote request

;;;###autoload
(defun emerge-files-remote (file-a file-b file-out)
  (setq emerge-file-out file-out)
  (emerge-files-internal
   file-a file-b nil
   (let ((f emerge-exit-func))
     (list (lambda () (emerge-remote-exit file-out f))))
   file-out)
  (throw 'client-wait nil))