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-src.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-src.el')
-rw-r--r-- | lisp/vc/vc-src.el | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lisp/vc/vc-src.el b/lisp/vc/vc-src.el index 186f73f9890..931dc5a2a93 100644 --- a/lisp/vc/vc-src.el +++ b/lisp/vc/vc-src.el @@ -39,7 +39,6 @@ ;; * working-revision (file) OK ;; - latest-on-branch-p (file) ?? ;; * checkout-model (files) OK -;; * workfile-unchanged-p (file) OK ;; - mode-line-string (file) NOT NEEDED ;; STATE-CHANGING FUNCTIONS ;; * register (files &optional rev comment) OK @@ -213,9 +212,6 @@ This function differs from vc-do-command in that it invokes `vc-src-program'." (vc-src-command standard-output file "list" "-f{1}" "@"))) "0")) -(defun vc-src-workfile-unchanged-p (file) - (eq 'up-to-date (vc-src-state file))) - ;;; ;;; State-changing functions ;;; |