summaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorKarl Hasselström <kha@yoghurt.hemma.treskal.com>2006-10-23 02:02:42 +0200
committerJunio C Hamano <junkio@cox.net>2006-10-23 10:13:49 +0200
commitb4aee09e610567529dc619d7324dc2fe85a11db5 (patch)
treee854ca441e9483f42e342977fee76cbbd0fcb552 /contrib
parentgit-send-email: do not pass custom Date: header (diff)
downloadgit-b4aee09e610567529dc619d7324dc2fe85a11db5.tar.xz
git-b4aee09e610567529dc619d7324dc2fe85a11db5.zip
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.")