Browse Source

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>
maint
Karl Hasselström 18 years ago committed by Junio C Hamano
parent
commit
b4aee09e61
  1. 2
      contrib/emacs/vc-git.el

2
contrib/emacs/vc-git.el

@ -33,6 +33,8 @@
;; - working with revisions other than HEAD ;; - working with revisions other than HEAD
;; ;;


(eval-when-compile (require 'cl))

(defvar git-commits-coding-system 'utf-8 (defvar git-commits-coding-system 'utf-8
"Default coding system for git commits.") "Default coding system for git commits.")



Loading…
Cancel
Save