From: Glenn Morris Date: Fri, 23 Feb 2018 01:47:26 +0000 (-0500) Subject: * lisp/vc/vc-git.el: Avoid bootstrap errors since recent grep change. X-Git-Tag: emacs-27.0.90~5639 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ea1604537ae7ea69c8e1bad9c63024d6727e33fd;p=emacs.git * lisp/vc/vc-git.el: Avoid bootstrap errors since recent grep change. The introduction of grep-find-hide-properties caused an "invalid read syntax" failure when saving ja-dic.el, when vc-git.el loaded grep.el. Fortunately, vc-git doesn't actually need to load grep when being compiled. --- diff --git a/lisp/vc/vc-git.el b/lisp/vc/vc-git.el index 163333af3ba..5db02f4ce54 100644 --- a/lisp/vc/vc-git.el +++ b/lisp/vc/vc-git.el @@ -102,8 +102,7 @@ (eval-when-compile (require 'cl-lib) (require 'vc) - (require 'vc-dir) - (require 'grep)) + (require 'vc-dir)) (defgroup vc-git nil "VC Git backend."