diff options
| author | Juanma Barranquero | 2008-02-20 12:42:35 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2008-02-20 12:42:35 +0000 |
| commit | 4ced8551f649725b523ca7b1b644cc570abddbb8 (patch) | |
| tree | 86c4b238d955ad537f00da7667330d79b150ffd9 | |
| parent | 98723304dbee5546d1b9c28935076de8a1d74492 (diff) | |
| download | emacs-4ced8551f649725b523ca7b1b644cc570abddbb8.tar.gz emacs-4ced8551f649725b523ca7b1b644cc570abddbb8.zip | |
(vc-svn-program): Fix typo in docstring.
(vc-svn-checkin): Fix typo in error message.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/vc-svn.el | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 150edfbc091..839e5f48461 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2008-02-20 Juanma Barranquero <lekktu@gmail.com> | 1 | 2008-02-20 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 2 | ||
| 3 | * vc-svn.el (vc-svn-program): Fix typo in docstring. | ||
| 4 | (vc-svn-checkin): Fix typo in error message. | ||
| 5 | |||
| 3 | * help-mode.el: Require easymenu when compiling. | 6 | * help-mode.el: Require easymenu when compiling. |
| 4 | 7 | ||
| 5 | 2008-02-20 Dan Nicolaescu <dann@ics.uci.edu> | 8 | 2008-02-20 Dan Nicolaescu <dann@ics.uci.edu> |
diff --git a/lisp/vc-svn.el b/lisp/vc-svn.el index b9ad61292ef..52fb1a515e1 100644 --- a/lisp/vc-svn.el +++ b/lisp/vc-svn.el | |||
| @@ -263,7 +263,7 @@ This is only possible if SVN is responsible for FILE's directory.") | |||
| 263 | 263 | ||
| 264 | (defun vc-svn-checkin (files rev comment) | 264 | (defun vc-svn-checkin (files rev comment) |
| 265 | "SVN-specific version of `vc-backend-checkin'." | 265 | "SVN-specific version of `vc-backend-checkin'." |
| 266 | (if rev (error "Committing to a specific revision is unsupported in SVN.")) | 266 | (if rev (error "Committing to a specific revision is unsupported in SVN")) |
| 267 | (let ((status (apply | 267 | (let ((status (apply |
| 268 | 'vc-svn-command nil 1 files "ci" | 268 | 'vc-svn-command nil 1 files "ci" |
| 269 | (nconc (list "-m" comment) (vc-switches 'SVN 'checkin))))) | 269 | (nconc (list "-m" comment) (vc-switches 'SVN 'checkin))))) |
| @@ -528,7 +528,7 @@ NAME is assumed to be a URL." | |||
| 528 | ;;; | 528 | ;;; |
| 529 | 529 | ||
| 530 | (defcustom vc-svn-program "svn" | 530 | (defcustom vc-svn-program "svn" |
| 531 | "Name of the svn executable." | 531 | "Name of the SVN executable." |
| 532 | :type 'string | 532 | :type 'string |
| 533 | :group 'vc) | 533 | :group 'vc) |
| 534 | 534 | ||