From 4ced8551f649725b523ca7b1b644cc570abddbb8 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Wed, 20 Feb 2008 12:42:35 +0000 Subject: [PATCH] (vc-svn-program): Fix typo in docstring. (vc-svn-checkin): Fix typo in error message. --- lisp/ChangeLog | 3 +++ 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 @@ 2008-02-20 Juanma Barranquero + * 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 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.") (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) -- 2.39.2