aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2015-09-19 20:57:59 +0300
committerEli Zaretskii2015-09-19 20:57:59 +0300
commit2ebcda4da0683f0c9102779bde13843795d6db78 (patch)
tree2db81b45e64a12c1512834e4a1b398d9ead0b50e
parentd9d2e376581c10c0e52e54bbf13a3cbcc7d5fdba (diff)
downloademacs-2ebcda4da0683f0c9102779bde13843795d6db78.tar.gz
emacs-2ebcda4da0683f0c9102779bde13843795d6db78.zip
Adapt vc-src to the old-new vc-checkin API
* lisp/vc/vc-src.el (vc-src-checkin): Accept and ignore an additional optional parameter.
-rw-r--r--lisp/vc/vc-src.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc/vc-src.el b/lisp/vc/vc-src.el
index d9aa1b13e88..69e403668b1 100644
--- a/lisp/vc/vc-src.el
+++ b/lisp/vc/vc-src.el
@@ -227,7 +227,7 @@ This function differs from vc-do-command in that it invokes `vc-src-program'."
227 file 227 file
228 (file-name-directory file))))) 228 (file-name-directory file)))))
229 229
230(defun vc-src-checkin (files comment) 230(defun vc-src-checkin (files comment &optional _rev)
231 "SRC-specific version of `vc-backend-checkin'. 231 "SRC-specific version of `vc-backend-checkin'.
232REV is ignored." 232REV is ignored."
233 (vc-src-command nil files "commit" "-m" comment)) 233 (vc-src-command nil files "commit" "-m" comment))