diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2014-12-02 08:01:46 -0500 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2014-12-02 08:01:46 -0500 |
commit | d4767877aca091ee1a04608e2b50b346745661d4 (patch) | |
tree | 189170facf63e6c9b640cdd1cb657a2afe880ad5 /lisp/vc/vc-svn.el | |
parent | e6fe301afe4bbc707d2fde44a5250b84418d2b1b (diff) | |
download | emacs-d4767877aca091ee1a04608e2b50b346745661d4.tar.gz emacs-d4767877aca091ee1a04608e2b50b346745661d4.tar.bz2 emacs-d4767877aca091ee1a04608e2b50b346745661d4.zip |
Eliminate an unuted function argument.
* vc.el, all backends: API simplification: Remove 4th 'default-state'
argument from vc-dir-status files and its backend methods - no backend
method ever set it. It was used only in the fallback method to to set
a default of 'up-to-date, though a convoluted call chain obscured
this.
Diffstat (limited to 'lisp/vc/vc-svn.el')
-rw-r--r-- | lisp/vc/vc-svn.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc/vc-svn.el b/lisp/vc/vc-svn.el index 55b8f111e01..8ca8a0978e3 100644 --- a/lisp/vc/vc-svn.el +++ b/lisp/vc/vc-svn.el @@ -206,7 +206,7 @@ RESULT is a list of conses (FILE . STATE) for directory DIR." (vc-svn-command (current-buffer) 'async nil "status" "-u") (vc-run-delayed (vc-svn-after-dir-status callback))) -(defun vc-svn-dir-status-files (_dir files _default-state callback) +(defun vc-svn-dir-status-files (_dir files callback) (apply 'vc-svn-command (current-buffer) 'async nil "status" files) (vc-run-delayed (vc-svn-after-dir-status callback))) |