changeset 91989:582312e95923

(vc-svn-program): Fix typo in docstring. (vc-svn-checkin): Fix typo in error message.
author Juanma Barranquero <lekktu@gmail.com>
date Wed, 20 Feb 2008 12:41:59 +0000
parents 9e5b3adb3c0e
children 0362a8d1871c
files lisp/vc-svn.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/vc-svn.el	Wed Feb 20 12:22:11 2008 +0000
+++ b/lisp/vc-svn.el	Wed Feb 20 12:41:59 2008 +0000
@@ -263,7 +263,7 @@
 
 (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 @@
 ;;;
 
 (defcustom vc-svn-program "svn"
-  "Name of the svn executable."
+  "Name of the SVN executable."
   :type 'string
   :group 'vc)