Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Hasselström <kha@yoghurt.hemma.treskal.com>2006-10-23 04:02:42 +0400
committerJunio C Hamano <junkio@cox.net>2006-10-23 12:13:49 +0400
commitb4aee09e610567529dc619d7324dc2fe85a11db5 (patch)
treee854ca441e9483f42e342977fee76cbbd0fcb552 /contrib
parent1d6a003a42b3c23ad7883b0bbe6a034728e51836 (diff)
ignore-errors requires cl
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 <kha@treskal.com> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'contrib')
-rw-r--r--contrib/emacs/vc-git.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/contrib/emacs/vc-git.el b/contrib/emacs/vc-git.el
index 80e767533a..8b6361922f 100644
--- a/contrib/emacs/vc-git.el
+++ b/contrib/emacs/vc-git.el
@@ -33,6 +33,8 @@
;; - working with revisions other than HEAD
;;
+(eval-when-compile (require 'cl))
+
(defvar git-commits-coding-system 'utf-8
"Default coding system for git commits.")