From: Karl Hasselström Date: Mon, 23 Oct 2006 00:02:42 +0000 (-0700) Subject: ignore-errors requires cl X-Git-Tag: v1.4.4-rc1~72 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=b4aee09e610567529dc619d7324dc2fe85a11db5;p=git.git 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 Signed-off-by: Junio C Hamano --- diff --git a/contrib/emacs/vc-git.el b/contrib/emacs/vc-git.el index 80e767533..8b6361922 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.")