* [PATCH 5/7] Try to do things in the right order
@ 2007-03-03 10:19 Xavier Maillard
2007-03-03 10:32 ` Alexandre Julliard
0 siblings, 1 reply; 3+ messages in thread
From: Xavier Maillard @ 2007-03-03 10:19 UTC (permalink / raw)
To: git; +Cc: julliard
* emacs/vc-git.el: Added an ugly hack to properly reload vc-git. Only
add GIT to vc-backends list after loading vc. Do not walk .git
directory (add it to the exclusion-list).
Changed installation instructions as discussed on Git mailing list
Signed-off-by: Xavier Maillard <zedek@gnu.org>
---
contrib/emacs/vc-git.el | 17 ++++++++++++++---
1 files changed, 14 insertions(+), 3 deletions(-)
diff --git a/contrib/emacs/vc-git.el b/contrib/emacs/vc-git.el
index 748cb60..3f37e6d 100644
--- a/contrib/emacs/vc-git.el
+++ b/contrib/emacs/vc-git.el
@@ -22,7 +22,8 @@
;; This file contains a VC backend for the git version control
;; system.
;;
-;; To install: put this file on the load-path.
+;; To install: put this file on the load-path then add this line into
+;; your .emacs: (require 'vc-git)
;;
;; TODO
;; - changelog generation
@@ -35,8 +36,14 @@
(require 'vc)
(require 'cl))
-;; Add it automatically
-(add-to-list 'vc-handled-backends 'GIT)
+;; HACK: clear up the cache to force vc-call to check again and
+;; discover new functions when we reload this file.
+(put 'GIT 'vc-functions nil)
+
+;; Add it automatically when loading vc
+;; FIXME: should be directly put into vc.el
+(eval-after-load "vc"
+ '(add-to-list 'vc-handled-backends 'GIT))
(defgroup vc-git nil
"*This is GIT backend for vc."
@@ -188,4 +195,8 @@ COMMENT is the new comment."
;;;###autoload
(add-to-list 'completion-ignored-extensions ".git/")
+(eval-after-load "vc"
+ '(add-to-list 'vc-directory-exclusion-list ".git" t))
+
(provide 'vc-git)
+;;; vc-git.el ends here
\ No newline at end of file
--
1.5.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 5/7] Try to do things in the right order
2007-03-03 10:19 [PATCH 5/7] Try to do things in the right order Xavier Maillard
@ 2007-03-03 10:32 ` Alexandre Julliard
2007-03-05 7:27 ` Xavier Maillard
0 siblings, 1 reply; 3+ messages in thread
From: Alexandre Julliard @ 2007-03-03 10:32 UTC (permalink / raw)
To: Xavier Maillard; +Cc: git
Xavier Maillard <zedek@gnu.org> writes:
> @@ -35,8 +36,14 @@
> (require 'vc)
> (require 'cl))
>
> -;; Add it automatically
> -(add-to-list 'vc-handled-backends 'GIT)
> +;; HACK: clear up the cache to force vc-call to check again and
> +;; discover new functions when we reload this file.
> +(put 'GIT 'vc-functions nil)
> +
> +;; Add it automatically when loading vc
> +;; FIXME: should be directly put into vc.el
> +(eval-after-load "vc"
> + '(add-to-list 'vc-handled-backends 'GIT))
That's ugly. Simply recommending that users set vc-handled-backends in
their .emacs is easier and cleaner, I still don't see why you want to
change it.
--
Alexandre Julliard
julliard@winehq.org
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 5/7] Try to do things in the right order
2007-03-03 10:32 ` Alexandre Julliard
@ 2007-03-05 7:27 ` Xavier Maillard
0 siblings, 0 replies; 3+ messages in thread
From: Xavier Maillard @ 2007-03-05 7:27 UTC (permalink / raw)
To: Alexandre Julliard; +Cc: git
From: Alexandre Julliard <julliard@winehq.org>
Xavier Maillard <zedek@gnu.org> writes:
> @@ -35,8 +36,14 @@
> (require 'vc)
> (require 'cl))
>
> -;; Add it automatically
> -(add-to-list 'vc-handled-backends 'GIT)
> +;; HACK: clear up the cache to force vc-call to check again and
> +;; discover new functions when we reload this file.
> +(put 'GIT 'vc-functions nil)
> +
> +;; Add it automatically when loading vc
> +;; FIXME: should be directly put into vc.el
> +(eval-after-load "vc"
> + '(add-to-list 'vc-handled-backends 'GIT))
That's ugly. Simply recommending that users set vc-handled-backends in
their .emacs is easier and cleaner, I still don't see why you want to
change it.
I'd rather want to just require or load vc-git (and that should
not be the way to go too since it should be automatically handled
by vc.el when vc-git will become part of GNU Emacs ).
By the way, do you plan to ask for inclusion into emacs ?
That's just a matter of taste, nothing more.
--
Xavier
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2007-03-05 7:31 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-03-03 10:19 [PATCH 5/7] Try to do things in the right order Xavier Maillard
2007-03-03 10:32 ` Alexandre Julliard
2007-03-05 7:27 ` Xavier Maillard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).