aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorAndrĂ© Spiegel <[email protected]>2001-02-26 13:45:06 +0000
committerAndrĂ© Spiegel <[email protected]>2001-02-26 13:45:06 +0000
commit336203a282caaeb78e43b579695cc9a9be79e11a (patch)
treea5cd5693402f8dbdb26cbe14752f85eeffb9f651 /lisp
parentc596c392c82ad7b99f6263e2ef9c7ef913addb77 (diff)
(vc-default-workfile-unchanged-p, vc-default-latest-on-branch-p): Add
missing BACKEND argument.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/vc.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/vc.el b/lisp/vc.el
index df1c445460..b8240e1fac 100644
--- a/lisp/vc.el
+++ b/lisp/vc.el
@@ -5,7 +5,7 @@
;; Author: FSF (see below for full credits)
;; Maintainer: Andre Spiegel <[email protected]>
-;; $Id: vc.el,v 1.295 2001/02/01 15:08:49 spiegel Exp $
+;; $Id: vc.el,v 1.296 2001/02/01 17:41:06 fx Exp $
;; This file is part of GNU Emacs.
@@ -1025,11 +1025,11 @@ NOT-URGENT means it is ok to continue if the user says not to save."
(vc-file-setprop file 'vc-checkout-time (if unchanged lastmod 0))
unchanged))))
-(defun vc-default-workfile-unchanged-p (file)
+(defun vc-default-workfile-unchanged-p (backend file)
"Default check whether FILE is unchanged: diff against master version."
(zerop (vc-call diff file (vc-workfile-version file))))
-(defun vc-default-latest-on-branch-p (file)
+(defun vc-default-latest-on-branch-p (backend file)
"Default check whether the current workfile version of FILE is the
latest on its branch."
t)