Function: ediff-make-or-kill-fine-diffs

ediff-make-or-kill-fine-diffs is an interactive and byte-compiled function defined in ediff-util.el.gz.

Signature

(ediff-make-or-kill-fine-diffs ARG)

Documentation

Compute fine diffs. With negative prefix ARG, kill fine diffs.

In both cases, operates on the current difference region.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/vc/ediff-util.el.gz
(defun ediff-make-or-kill-fine-diffs (arg)
  "Compute fine diffs.  With negative prefix ARG, kill fine diffs.
In both cases, operates on the current difference region."
  (interactive "P")
  (ediff-barf-if-not-control-buffer)
  (cond ((eq arg '-)
	 (ediff-clear-fine-differences ediff-current-difference))
	((and (numberp arg) (< arg 0))
	 (ediff-clear-fine-differences ediff-current-difference))
	(t (ediff-make-fine-diffs))))