From: Karl Hasselström <redacted>
vc-git complains that it can't find the definition of ignore-errors
unless I (require 'cl). So I guess the correct place to do that is in
the file itself.
Signed-off-by: Karl Hasselström <redacted>
---
contrib/emacs/vc-git.el | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/contrib/emacs/vc-git.el b/contrib/emacs/vc-git.el
index 4189c4c..1ec228f 100644
--- a/contrib/emacs/vc-git.el
+++ b/contrib/emacs/vc-git.el
@@ -30,6 +30,8 @@
;; - working with revisions other than HEAD
;;
+(require 'cl)
+
(defvar git-commits-coding-system 'utf-8
"Default coding system for git commits.")