Variable: ediff-match-diff-line

ediff-match-diff-line is a variable defined in ediff-diff.el.gz.

Value

"^\\([0-9]+\\)\\(\\|,\\([0-9]+\\)\\)\\([acd]\\)\\([0-9]+\\)\\(\\|,\\([0-9]+\\)\\)
?$"

Documentation

Pattern to match lines produced by diff that describe differences.

Source Code

;; Defined in /usr/src/emacs/lisp/vc/ediff-diff.el.gz
(defvar ediff-match-diff-line
  (let ((x "\\([0-9]+\\)\\(\\|,\\([0-9]+\\)\\)"))
    (concat "^" x "\\([acd]\\)" x "\C-m?$"))
  "Pattern to match lines produced by diff that describe differences.")