diff options
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/vc-cvs.el | 4 | ||||
| -rw-r--r-- | lisp/vc-mcvs.el | 4 |
3 files changed, 3 insertions, 8 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 079e14914b3..d91e23da97b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2007-07-20 Stefan Monnier <monnier@iro.umontreal.ca> | 1 | 2007-07-20 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 2 | ||
| 3 | * vc-mcvs.el (vc-mcvs-create-repo): | ||
| 4 | * vc-cvs.el (vc-cvs-create-repo): Remove. | ||
| 5 | |||
| 3 | * vc-hooks.el (vc-find-root): Fix case where `file' is the current | 6 | * vc-hooks.el (vc-find-root): Fix case where `file' is the current |
| 4 | directory and the root as well. | 7 | directory and the root as well. |
| 5 | 8 | ||
diff --git a/lisp/vc-cvs.el b/lisp/vc-cvs.el index 588ff4be6ba..2daf2f72fba 100644 --- a/lisp/vc-cvs.el +++ b/lisp/vc-cvs.el | |||
| @@ -281,10 +281,6 @@ committed and support display of sticky tags." | |||
| 281 | ;;; State-changing functions | 281 | ;;; State-changing functions |
| 282 | ;;; | 282 | ;;; |
| 283 | 283 | ||
| 284 | (defun vc-cvs-create-repo () | ||
| 285 | "Create a new CVS repository." | ||
| 286 | (error "Creation of CVS repositories is not supported.")) | ||
| 287 | |||
| 288 | (defun vc-cvs-register (files &optional rev comment) | 284 | (defun vc-cvs-register (files &optional rev comment) |
| 289 | "Register FILES into the CVS version-control system. | 285 | "Register FILES into the CVS version-control system. |
| 290 | COMMENT can be used to provide an initial description of FILES. | 286 | COMMENT can be used to provide an initial description of FILES. |
diff --git a/lisp/vc-mcvs.el b/lisp/vc-mcvs.el index 928f2978ec1..debdf892183 100644 --- a/lisp/vc-mcvs.el +++ b/lisp/vc-mcvs.el | |||
| @@ -207,10 +207,6 @@ This is only meaningful if you don't use the implicit checkout model | |||
| 207 | ;;; State-changing functions | 207 | ;;; State-changing functions |
| 208 | ;;; | 208 | ;;; |
| 209 | 209 | ||
| 210 | (defun vc-mcvs-create-repo () | ||
| 211 | "Create a new Meta-CVS repository." | ||
| 212 | (error "Creation of Meta-CVS repositories is not supported.")) | ||
| 213 | |||
| 214 | (defun vc-mcvs-register (files &optional rev comment) | 210 | (defun vc-mcvs-register (files &optional rev comment) |
| 215 | "Register FILES into the Meta-CVS version-control system. | 211 | "Register FILES into the Meta-CVS version-control system. |
| 216 | COMMENT can be used to provide an initial description of FILE. | 212 | COMMENT can be used to provide an initial description of FILE. |