1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-05 20:43:08 +00:00

(vc-svn-program): Fix typo in docstring.

(vc-svn-checkin): Fix typo in error message.
This commit is contained in:
Juanma Barranquero 2008-02-20 12:42:35 +00:00
parent 98723304db
commit 4ced8551f6
2 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,8 @@
2008-02-20 Juanma Barranquero <lekktu@gmail.com> 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. * help-mode.el: Require easymenu when compiling.
2008-02-20 Dan Nicolaescu <dann@ics.uci.edu> 2008-02-20 Dan Nicolaescu <dann@ics.uci.edu>

View File

@ -263,7 +263,7 @@ This is only possible if SVN is responsible for FILE's directory.")
(defun vc-svn-checkin (files rev comment) (defun vc-svn-checkin (files rev comment)
"SVN-specific version of `vc-backend-checkin'." "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 (let ((status (apply
'vc-svn-command nil 1 files "ci" 'vc-svn-command nil 1 files "ci"
(nconc (list "-m" comment) (vc-switches 'SVN 'checkin))))) (nconc (list "-m" comment) (vc-switches 'SVN 'checkin)))))
@ -528,7 +528,7 @@ NAME is assumed to be a URL."
;;; ;;;
(defcustom vc-svn-program "svn" (defcustom vc-svn-program "svn"
"Name of the svn executable." "Name of the SVN executable."
:type 'string :type 'string
:group 'vc) :group 'vc)