(vc-svn-checkin): Fix typo in error message.
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>
(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)))))
;;;
(defcustom vc-svn-program "svn"
- "Name of the svn executable."
+ "Name of the SVN executable."
:type 'string
:group 'vc)