emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master ea16045: * lisp/vc/vc-git.el: Avoid bootstrap error


From: Glenn Morris
Subject: [Emacs-diffs] master ea16045: * lisp/vc/vc-git.el: Avoid bootstrap errors since recent grep change.
Date: Thu, 22 Feb 2018 20:47:41 -0500 (EST)

branch: master
commit ea1604537ae7ea69c8e1bad9c63024d6727e33fd
Author: Glenn Morris <address@hidden>
Commit: Glenn Morris <address@hidden>

    * 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.
---
 lisp/vc/vc-git.el | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/lisp/vc/vc-git.el b/lisp/vc/vc-git.el
index 163333a..5db02f4 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."



reply via email to

[Prev in Thread] Current Thread [Next in Thread]