2000-05-25 Michael Kifer <kifer@cs.sunysb.edu>

* ediff-diff.el (ediff-exec-process): delete --binary option from
	non-buffer ediff jobs.
This commit is contained in:
Michael Kifer 2000-05-25 17:21:32 +00:00
parent e7a903e81f
commit 7997f1ca36
2 changed files with 8 additions and 0 deletions

View file

@ -1134,6 +1134,9 @@ delimiter regions"))
args)
(setq args (append (split-string options) files))
(setq args (delete "" (delq nil args))) ; delete nil and "" from arguments
;; the --binary option, if present, should be used only for buffer jobs
(or (string-match "buffer" (symbol-name ediff-job-name))
(setq args (delete "--binary" args)))
(unwind-protect
(let ((directory default-directory)
proc)