# HG changeset patch # User Richard M. Stallman # Date 831424643 0 # Node ID bd6c4ed55f9c134e2d9477cd42ef9e57f6340b1d # Parent 08937f70419e177fc8c3e13e13260acacd3a82c3 (ediff-setup-fine-diff-regions): Use ediff-diff3-options or ediff-diff-options. diff -r 08937f70419e -r bd6c4ed55f9c lisp/ediff-diff.el --- a/lisp/ediff-diff.el Mon May 06 10:21:23 1996 +0000 +++ b/lisp/ediff-diff.el Mon May 06 23:17:23 1996 +0000 @@ -160,15 +160,17 @@ (get-buffer-create (ediff-unique-buffer-name "*ediff-fine-diff" "*")))) - (let (diff3-job diff-program ok-regexp diff-list) + (let (diff3-job diff-program diff-options ok-regexp diff-list) (setq diff3-job ediff-3way-job diff-program (if diff3-job ediff-diff3-program ediff-diff-program) + diff-options (if diff3-job ediff-diff3-options ediff-diff-options) ok-regexp (if diff3-job ediff-diff3-ok-lines-regexp ediff-diff-ok-lines-regexp)) (ediff-message-if-verbose "Refining difference region %d ..." (1+ reg-num)) (ediff-exec-process diff-program ediff-fine-diff-buffer 'synchronize + diff-options ;; The shuffle below is because we can compare 3-way ;; or in several 2-way fashions, like fA fC, fA fB, ;; or fB fC.