diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2014-12-01 08:24:27 -0500 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2014-12-01 08:24:27 -0500 |
commit | f82f3f1f177c1a9cc2c2236f51acd1be1809ae1f (patch) | |
tree | 76163b25a84c8416f7f529b9331778020cb7dc8b /lisp/vc/vc.el | |
parent | 2532d74a5fb5168955aa900f597bf7efc14efb12 (diff) | |
download | emacs-f82f3f1f177c1a9cc2c2236f51acd1be1809ae1f.tar.gz emacs-f82f3f1f177c1a9cc2c2236f51acd1be1809ae1f.tar.bz2 emacs-f82f3f1f177c1a9cc2c2236f51acd1be1809ae1f.zip |
API simplification: remove vc-workfile-unchanged-p from pubic methods.
* vc/vc.el, vc-hooks.el, and all backends: API simplification;
vc-workfile-unchanged-p is no longer a public method (but the RCS and
SCCS back ends retain it as a private method used in state
computation). This method was redundant with vc-state and usually
implemented as a trivial call to same. Fixes the failure mode
described in bug#694.
Diffstat (limited to 'lisp/vc/vc.el')
-rw-r--r-- | lisp/vc/vc.el | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/lisp/vc/vc.el b/lisp/vc/vc.el index 62e68e221ee..1ae334683c1 100644 --- a/lisp/vc/vc.el +++ b/lisp/vc/vc.el @@ -200,17 +200,6 @@ ;; Indicate whether FILES need to be "checked out" before they can be ;; edited. See `vc-checkout-model' for a list of possible values. ;; -;; - workfile-unchanged-p (file) -;; -;; Return non-nil if FILE is unchanged from the working revision. -;; This function should do a brief comparison of FILE's contents -;; with those of the repository copy of the working revision. If -;; the backend does not have such a brief-comparison feature, the -;; default implementation of this function can be used, which -;; delegates to a full vc-BACKEND-diff. (Note that vc-BACKEND-diff -;; must not run asynchronously in this case, see variable -;; `vc-disable-async-diff'.) -;; ;; - mode-line-string (file) ;; ;; If provided, this function should return the VC-specific mode @@ -609,6 +598,11 @@ ;; take a first optional revision argument, since on no system since ;; RCS has setting the initial revision been even possible, let alone ;; sane. +;; +;; workfile-unchanged-p is no longer a public back-end method. It +;; was redundant with vc-state and usually implemented with a trivial +;; call to it. A few older back ends retain versions for internal use in +;; their vc-state functions. ;;; Todo: @@ -1186,7 +1180,7 @@ For old-style locking-based version control systems, like RCS: ;; For files with locking, if the file does not contain ;; any changes, just let go of the lock, i.e. revert. (when (and (not (eq model 'implicit)) - (vc-workfile-unchanged-p file) + (eq state 'up-to-date) ;; If buffer is modified, that means the user just ;; said no to saving it; in that case, don't revert, ;; because the user might intend to save after |