Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
1cca5da4
Commit
1cca5da4
authored
May 31, 2003
by
Stefan Monnier
Browse files
(vc-directory-exclusion-list): Add MCVS and .svn.
(vc-checkin-hook): Adjust option to new name.
parent
9fe89a26
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
lisp/vc.el
lisp/vc.el
+7
-5
No files found.
lisp/vc.el
View file @
1cca5da4
...
...
@@ -7,7 +7,7 @@
;; Maintainer: Andre Spiegel <spiegel@gnu.org>
;; Keywords: tools
;; $Id: vc.el,v 1.35
3
2003/05/
18 02:53:24 monnier
Exp $
;; $Id: vc.el,v 1.35
4
2003/05/
26 10:33:00 spiegel
Exp $
;; This file is part of GNU Emacs.
...
...
@@ -62,7 +62,9 @@
;; to be installed somewhere on Emacs's path for executables.
;;
;; If your site uses the ChangeLog convention supported by Emacs, the
;; function vc-comment-to-change-log should prove a useful checkin hook.
;; function log-edit-comment-to-change-log could prove a useful checkin hook,
;; although you might prefer to use C-c C-a (i.e. log-edit-insert-changelog)
;; from the commit buffer instead or to set `log-edit-setup-invert'.
;;
;; The vc code maintains some internal state in order to reduce expensive
;; 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]."
:group
'vc
:version
"20.3"
)
(
defcustom
vc-directory-exclusion-list
'
(
"SCCS"
"RCS"
"CVS"
)
(
defcustom
vc-directory-exclusion-list
'
(
"SCCS"
"RCS"
"CVS"
"MCVS"
".svn"
)
"*List of directory names to be ignored when walking directory trees."
:type
'
(
repeat
string
)
:group
'vc
)
...
...
@@ -558,9 +560,9 @@ See `run-hooks'."
;;;###autoload
(
defcustom
vc-checkin-hook
nil
"*Normal hook (list of functions) run after a checkin is done.
See
`run
-hook
s
'."
See
also `log-edit-done
-hook'."
:type
'hook
:options
'
(
vc
-comment-to-change-log
)
:options
'
(
log-edit
-comment-to-change-log
)
:group
'vc
)
;;;###autoload
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment