aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/vc-svn.el
diff options
context:
space:
mode:
authorKarl Fogel <[email protected]>2004-06-04 04:37:10 +0000
committerKarl Fogel <[email protected]>2004-06-04 04:37:10 +0000
commit5129f10c94db38789a92f396f568f993d726e7bd (patch)
treea249aaf3a7f662896eead6591f5c27a134efac62 /lisp/vc-svn.el
parent7e07a66d8514df69a4061e6c6fa6dfd8650c12fc (diff)
2004-06-03 Karl Fogel <[email protected]>
* vc-svn.el (vc-svn-checkin): Use 'nconc' instead of 'list*', because the latter is a CL-ism. This fixes the bug reported by Shawn Boyette <[email protected]> in http://lists.gnu.org/archive/html/emacs-devel/2004-05/msg00442.html.
Diffstat (limited to 'lisp/vc-svn.el')
-rw-r--r--lisp/vc-svn.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/vc-svn.el b/lisp/vc-svn.el
index 4db9788cc3..82c09cbd43 100644
--- a/lisp/vc-svn.el
+++ b/lisp/vc-svn.el
@@ -195,8 +195,9 @@ This is only possible if SVN is responsible for FILE's directory.")
(defun vc-svn-checkin (file rev comment)
"SVN-specific version of `vc-backend-checkin'."
- (let ((status (apply 'vc-svn-command nil 1 file
- "ci" (list* "-m" comment (vc-switches 'SVN 'checkin)))))
+ (let ((status (apply
+ 'vc-svn-command nil 1 file "ci"
+ (nconc (list "-m" comment) (vc-switches 'SVN 'checkin)))))
(set-buffer "*vc*")
(goto-char (point-min))
(unless (equal status 0)