summaryrefslogtreecommitdiff
path: root/contrib/emacs
diff options
context:
space:
mode:
authorKarl Hasselström <kha@yoghurt.hemma.treskal.com>2006-10-23 00:02:42 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-10-23 08:13:49 (GMT)
commitb4aee09e610567529dc619d7324dc2fe85a11db5 (patch)
treee854ca441e9483f42e342977fee76cbbd0fcb552 /contrib/emacs
parent1d6a003a42b3c23ad7883b0bbe6a034728e51836 (diff)
downloadgit-b4aee09e610567529dc619d7324dc2fe85a11db5.zip
git-b4aee09e610567529dc619d7324dc2fe85a11db5.tar.gz
git-b4aee09e610567529dc619d7324dc2fe85a11db5.tar.bz2
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/emacs')
-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 80e7675..8b636192 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.")