Function: ediff-merge-directories-with-ancestor-command

ediff-merge-directories-with-ancestor-command is an autoloaded and byte-compiled function defined in ediff.el.gz.

Signature

(ediff-merge-directories-with-ancestor-command)

Documentation

Call ediff-merge-directories-with-ancestor with the next four command line arguments.

Source Code

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