]> git.eshelyaron.com Git - emacs.git/commitdiff
(vc-svn-program): Fix typo in docstring.
authorJuanma Barranquero <lekktu@gmail.com>
Wed, 20 Feb 2008 12:42:35 +0000 (12:42 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Wed, 20 Feb 2008 12:42:35 +0000 (12:42 +0000)
(vc-svn-checkin): Fix typo in error message.

lisp/ChangeLog
lisp/vc-svn.el

index 150edfbc09141374a839f9529f079de4cc8e8aaa..839e5f4846111387b280a3207d3ae8a5baff87c0 100644 (file)
@@ -1,5 +1,8 @@
 2008-02-20  Juanma Barranquero  <lekktu@gmail.com>
 
+       * 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  <dann@ics.uci.edu>
index b9ad61292ef5ebeb6a45b3207dce4e5d2c8659ba..52fb1a515e1b88c5030ebc78779d75016ec2ad67 100644 (file)
@@ -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)