1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-28 10:56:36 +00:00

(vc-default-latest-on-branch-p): New function, replaces constant

implementations in backends.
This commit is contained in:
André Spiegel 2001-01-08 16:23:33 +00:00
parent b7812d3050
commit 38d88d32ef

View File

@ -5,7 +5,7 @@
;; Author: FSF (see below for full credits)
;; Maintainer: Andre Spiegel <spiegel@gnu.org>
;; $Id: vc.el,v 1.290 2000/11/16 18:28:11 monnier Exp $
;; $Id: vc.el,v 1.292 2000/11/20 14:01:35 spiegel Exp $
;; This file is part of GNU Emacs.
@ -839,6 +839,11 @@ NOT-URGENT means it is ok to continue if the user says not to save."
"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)
"Default check whether the current workfile version of FILE is the
latest on its branch."
t)
(defun vc-recompute-state (file)
"Force a recomputation of the version control state of FILE.
The state is computed using the exact, and possibly expensive