]> code.delx.au - gnu-emacs/blobdiff - lisp/vc-hooks.el
(auto-insert-alist): Add `provide' to elisp skeleton.
[gnu-emacs] / lisp / vc-hooks.el
index 53108653f048f46fb17da4fe68ead2bb0b1eaee2..9f7bab9c1d22e7ab71ab1268aa8f20093dc61eab 100644 (file)
@@ -365,26 +365,14 @@ It simply calls the real state computation function `vc-BACKEND-state'
 and does not employ any heuristic at all."
    (vc-call-backend backend 'state file))
 
-(defun vc-workfile-unchanged-p (file)
-  "Has FILE changed since last checkout?"
-  (let ((checkout-time (vc-file-getprop file 'vc-checkout-time))
-        (lastmod (nth 5 (file-attributes file))))
-    (if checkout-time
-        (equal checkout-time lastmod)
-      (let ((unchanged (vc-call workfile-unchanged-p file)))
-        (vc-file-setprop file 'vc-checkout-time (if unchanged lastmod 0))
-        unchanged))))
-
-(defun vc-default-workfile-unchanged-p (file)
-  "Default check whether FILE is unchanged: diff against master version."
-  (zerop (vc-call diff file (vc-workfile-version file))))
-
 (defun vc-workfile-version (file)
   "Return version level of the current workfile FILE."
   (or (vc-file-getprop file 'vc-workfile-version)
       (vc-file-setprop file 'vc-workfile-version
                        (vc-call workfile-version file))))
 
+;;; actual version-control code starts here
+
 (defun vc-default-registered (backend file)
   "Check if FILE is registered in BACKEND using vc-BACKEND-master-templates."
   (let ((sym (vc-make-backend-sym backend 'master-templates)))