aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2018-02-22 20:47:26 -0500
committerGlenn Morris2018-02-22 20:47:26 -0500
commitea1604537ae7ea69c8e1bad9c63024d6727e33fd (patch)
treed090a828c65f74f7cc2e4ec311ff51c030b092dd
parent9793a4616833a26157b4c60278ec17a9be233d8f (diff)
downloademacs-ea1604537ae7ea69c8e1bad9c63024d6727e33fd.tar.gz
emacs-ea1604537ae7ea69c8e1bad9c63024d6727e33fd.zip
* 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.
-rw-r--r--lisp/vc/vc-git.el3
1 files changed, 1 insertions, 2 deletions
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 @@
102(eval-when-compile 102(eval-when-compile
103 (require 'cl-lib) 103 (require 'cl-lib)
104 (require 'vc) 104 (require 'vc)
105 (require 'vc-dir) 105 (require 'vc-dir))
106 (require 'grep))
107 106
108(defgroup vc-git nil 107(defgroup vc-git nil
109 "VC Git backend." 108 "VC Git backend."