mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-17 17:58:46 +00:00
(vc-svn-program): Fix typo in docstring.
(vc-svn-checkin): Fix typo in error message.
This commit is contained in:
parent
98723304db
commit
4ced8551f6
@ -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>
|
||||
|
@ -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)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user