aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/vc-git.el
diff options
context:
space:
mode:
authorDan Nicolaescu2007-07-26 18:44:39 +0000
committerDan Nicolaescu2007-07-26 18:44:39 +0000
commit625f71cff9f69fb0ca47aedbb69111f22186e628 (patch)
treeae1b10268077f9f911678e59206a629a9f8f11a8 /lisp/vc-git.el
parent108607bc25dcb8d4aac102661e18ca4c19d418c4 (diff)
downloademacs-625f71cff9f69fb0ca47aedbb69111f22186e628.tar.gz
emacs-625f71cff9f69fb0ca47aedbb69111f22186e628.zip
* vc-git.el: Relicense to GPLv3 or later.
(vc-directory-exclusion-list, vc-handled-backends): Remove. * vc-hooks.el (vc-handled-backends): Add GIT. * vc.el (vc-directory-exclusion-list): Add .git. * vc2-xtra.texi (Customizing VC): Add GIT.
Diffstat (limited to 'lisp/vc-git.el')
-rw-r--r--lisp/vc-git.el8
1 files changed, 1 insertions, 7 deletions
diff --git a/lisp/vc-git.el b/lisp/vc-git.el
index 619199fc287..7e358ed0238 100644
--- a/lisp/vc-git.el
+++ b/lisp/vc-git.el
@@ -9,7 +9,7 @@
9 9
10;; GNU Emacs is free software; you can redistribute it and/or modify 10;; GNU Emacs is free software; you can redistribute it and/or modify
11;; it under the terms of the GNU General Public License as published by 11;; it under the terms of the GNU General Public License as published by
12;; the Free Software Foundation; either version 2, or (at your option) 12;; the Free Software Foundation; either version 3, or (at your option)
13;; any later version. 13;; any later version.
14 14
15;; GNU Emacs is distributed in the hope that it will be useful, 15;; GNU Emacs is distributed in the hope that it will be useful,
@@ -114,12 +114,6 @@
114(defvar git-commits-coding-system 'utf-8 114(defvar git-commits-coding-system 'utf-8
115 "Default coding system for git commits.") 115 "Default coding system for git commits.")
116 116
117;; XXX when this backend is considered sufficiently reliable this
118;; should be moved to vc-hooks.el
119(add-to-list 'vc-handled-backends 'GIT)
120(eval-after-load "vc"
121 '(add-to-list 'vc-directory-exclusion-list ".git" t))
122
123;;; BACKEND PROPERTIES 117;;; BACKEND PROPERTIES
124 118
125(defun vc-git-revision-granularity () 119(defun vc-git-revision-granularity ()