Function: ediff3-files-command

ediff3-files-command is an autoloaded and byte-compiled function defined in ediff.el.gz.

Signature

(ediff3-files-command)

Documentation

Call ediff3-files with the next three command line arguments.

Source Code

;; Defined in /usr/src/emacs/lisp/vc/ediff.el.gz
;;;###autoload
(defun ediff3-files-command ()
  "Call `ediff3-files' with the next three command line arguments."
  (let ((file-a (nth 0 command-line-args-left))
	(file-b (nth 1 command-line-args-left))
	(file-c (nth 2 command-line-args-left)))
    (setq command-line-args-left (nthcdr 3 command-line-args-left))
    (ediff3 file-a file-b file-c)))