# HG changeset patch # User Eric S. Raymond # Date 734988922 0 # Node ID 09e58f572f197d883550277ea87190e9a0673ee0 # Parent 0c20256f752d6a17d364791a6f9cabad55852e7e (diff-parse-differences): Small robustification --- don't lose if we call this with compilation-parsing-end nil diff -r 0c20256f752d -r 09e58f572f19 lisp/diff.el --- a/lisp/diff.el Fri Apr 16 19:23:21 1993 +0000 +++ b/lisp/diff.el Fri Apr 16 19:35:22 1993 +0000 @@ -74,7 +74,7 @@ (message "Parsing differences...") ;; Don't reparse diffs already seen at last parse. - (goto-char compilation-parsing-end) + (if compilation-parsing-end (goto-char compilation-parsing-end)) ;; Construct in REGEXP a regexp composed of all those in dired-regexp-alist. (let ((regexp (mapconcat (lambda (elt) @@ -267,4 +267,6 @@ (> (backup-extract-version fn1) (backup-extract-version fn2)))))))))) +(provide 'diff) + ;;; diff.el ends here