diff options
author | Karl Hasselström <kha@yoghurt.hemma.treskal.com> | 2006-10-22 17:02:42 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-10-23 01:13:49 -0700 |
commit | b4aee09e610567529dc619d7324dc2fe85a11db5 (patch) | |
tree | e854ca441e9483f42e342977fee76cbbd0fcb552 /contrib | |
parent | git-send-email: do not pass custom Date: header (diff) | |
download | tgif-b4aee09e610567529dc619d7324dc2fe85a11db5.tar.xz |
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.el | 2 |
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.") |