aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/vc-svn.el
diff options
context:
space:
mode:
authorJuanma Barranquero <[email protected]>2008-02-20 12:42:35 +0000
committerJuanma Barranquero <[email protected]>2008-02-20 12:42:35 +0000
commit4ced8551f649725b523ca7b1b644cc570abddbb8 (patch)
tree86c4b238d955ad537f00da7667330d79b150ffd9 /lisp/vc-svn.el
parent98723304dbee5546d1b9c28935076de8a1d74492 (diff)
(vc-svn-program): Fix typo in docstring.
(vc-svn-checkin): Fix typo in error message.
Diffstat (limited to 'lisp/vc-svn.el')
-rw-r--r--lisp/vc-svn.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/vc-svn.el b/lisp/vc-svn.el
index b9ad61292e..52fb1a515e 100644
--- a/lisp/vc-svn.el
+++ b/lisp/vc-svn.el
@@ -263,7 +263,7 @@ This is only possible if SVN is responsible for FILE's directory.")
(defun vc-svn-checkin (files rev comment)
"SVN-specific version of `vc-backend-checkin'."
- (if rev (error "Committing to a specific revision is unsupported in SVN."))
+ (if rev (error "Committing to a specific revision is unsupported in SVN"))
(let ((status (apply
'vc-svn-command nil 1 files "ci"
(nconc (list "-m" comment) (vc-switches 'SVN 'checkin)))))
@@ -528,7 +528,7 @@ NAME is assumed to be a URL."
;;;
(defcustom vc-svn-program "svn"
- "Name of the svn executable."
+ "Name of the SVN executable."
:type 'string
:group 'vc)