aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
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
parent98723304dbee5546d1b9c28935076de8a1d74492 (diff)
(vc-svn-program): Fix typo in docstring.
(vc-svn-checkin): Fix typo in error message.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/vc-svn.el4
2 files changed, 5 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 150edfbc09..839e5f4846 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
2008-02-20 Juanma Barranquero <[email protected]>
+ * vc-svn.el (vc-svn-program): Fix typo in docstring.
+ (vc-svn-checkin): Fix typo in error message.
+
* help-mode.el: Require easymenu when compiling.
2008-02-20 Dan Nicolaescu <[email protected]>
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)