aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2003-05-31 16:47:57 +0000
committerStefan Monnier2003-05-31 16:47:57 +0000
commit1cca5da4fa13081699e03898f106c2bcd1a1a093 (patch)
treef91a6d542047812a3c012ebb6dd393484521da96
parent9fe89a26bf222e0ff1b711d3b4a3e0040218bdfc (diff)
downloademacs-1cca5da4fa13081699e03898f106c2bcd1a1a093.tar.gz
emacs-1cca5da4fa13081699e03898f106c2bcd1a1a093.zip
(vc-directory-exclusion-list): Add MCVS and .svn.
(vc-checkin-hook): Adjust option to new name.
-rw-r--r--lisp/vc.el12
1 files changed, 7 insertions, 5 deletions
diff --git a/lisp/vc.el b/lisp/vc.el
index e2f27bb8e33..425f91ca4cd 100644
--- a/lisp/vc.el
+++ b/lisp/vc.el
@@ -7,7 +7,7 @@
7;; Maintainer: Andre Spiegel <spiegel@gnu.org> 7;; Maintainer: Andre Spiegel <spiegel@gnu.org>
8;; Keywords: tools 8;; Keywords: tools
9 9
10;; $Id: vc.el,v 1.353 2003/05/18 02:53:24 monnier Exp $ 10;; $Id: vc.el,v 1.354 2003/05/26 10:33:00 spiegel Exp $
11 11
12;; This file is part of GNU Emacs. 12;; This file is part of GNU Emacs.
13 13
@@ -62,7 +62,9 @@
62;; to be installed somewhere on Emacs's path for executables. 62;; to be installed somewhere on Emacs's path for executables.
63;; 63;;
64;; If your site uses the ChangeLog convention supported by Emacs, the 64;; If your site uses the ChangeLog convention supported by Emacs, the
65;; function vc-comment-to-change-log should prove a useful checkin hook. 65;; function log-edit-comment-to-change-log could prove a useful checkin hook,
66;; although you might prefer to use C-c C-a (i.e. log-edit-insert-changelog)
67;; from the commit buffer instead or to set `log-edit-setup-invert'.
66;; 68;;
67;; The vc code maintains some internal state in order to reduce expensive 69;; The vc code maintains some internal state in order to reduce expensive
68;; version-control operations to a minimum. Some names are only computed 70;; version-control operations to a minimum. Some names are only computed
@@ -518,7 +520,7 @@ These are passed to the checkin program by \\[vc-register]."
518 :group 'vc 520 :group 'vc
519 :version "20.3") 521 :version "20.3")
520 522
521(defcustom vc-directory-exclusion-list '("SCCS" "RCS" "CVS") 523(defcustom vc-directory-exclusion-list '("SCCS" "RCS" "CVS" "MCVS" ".svn")
522 "*List of directory names to be ignored when walking directory trees." 524 "*List of directory names to be ignored when walking directory trees."
523 :type '(repeat string) 525 :type '(repeat string)
524 :group 'vc) 526 :group 'vc)
@@ -558,9 +560,9 @@ See `run-hooks'."
558;;;###autoload 560;;;###autoload
559(defcustom vc-checkin-hook nil 561(defcustom vc-checkin-hook nil
560 "*Normal hook (list of functions) run after a checkin is done. 562 "*Normal hook (list of functions) run after a checkin is done.
561See `run-hooks'." 563See also `log-edit-done-hook'."
562 :type 'hook 564 :type 'hook
563 :options '(vc-comment-to-change-log) 565 :options '(log-edit-comment-to-change-log)
564 :group 'vc) 566 :group 'vc)
565 567
566;;;###autoload 568;;;###autoload