Code

ignore-errors requires cl
authorKarl Hasselström <kha@yoghurt.hemma.treskal.com>
Mon, 23 Oct 2006 00:02:42 +0000 (17:02 -0700)
committerJunio C Hamano <junkio@cox.net>
Mon, 23 Oct 2006 08:13:49 +0000 (01:13 -0700)
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>
contrib/emacs/vc-git.el

index 80e767533a2f3c0c288f64533f3c73dd80c0d738..8b6361922fd6e6a2fcd9acb20fd54f5b645b36f0 100644 (file)
@@ -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.")