Function: ediff-files-command

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

Signature

(ediff-files-command)

Documentation

Call ediff-files with the next two command line arguments.

Source Code

;; Defined in /usr/src/emacs/lisp/vc/ediff.el.gz
;;; Command line interface

;;;###autoload
(defun ediff-files-command ()
  "Call `ediff-files' with the next two command line arguments."
  (let ((file-a (nth 0 command-line-args-left))
	(file-b (nth 1 command-line-args-left)))
    (setq command-line-args-left (nthcdr 2 command-line-args-left))
    (ediff file-a file-b)))