Hi, A small patch with following changes: Automatically add GIT as a VC backend Remove byte-compiler warning with an eval of vc --- contrib/emacs/vc-git.el | 13 +++++++------ 1 files changed, 7 insertions(+), 6 deletions(-) diff --git a/contrib/emacs/vc-git.el b/contrib/emacs/vc-git.el index e456ab9..a2d3932 100644 --- a/contrib/emacs/vc-git.el +++ b/contrib/emacs/vc-git.el @@ -22,18 +22,19 @@ ;; This file contains a VC backend for the git version control ;; system. ;; -;; To install: put this file on the load-path and add GIT to the list -;; of supported backends in `vc-handled-backends'; the following line, -;; placed in your ~/.emacs, will accomplish this: -;; -;; (add-to-list 'vc-handled-backends 'GIT) +;; To install: put this file on the load-path. ;; ;; TODO ;; - changelog generation ;; - working with revisions other than HEAD ;; -(eval-when-compile (require 'cl)) +(eval-when-compile + (require 'cl) + (require 'vc)) + +;; Add it automatically +(add-to-list 'vc-handled-backends 'GIT) (defvar git-commits-coding-system 'utf-8 "Default coding system for git commits.") -- Xavier - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html