diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2016-05-10 13:40:17 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2016-05-10 13:40:52 -0700 |
commit | 62d7acae7405732268713006d839a5c3507b9482 (patch) | |
tree | 026be0280f63be0774fdcbccad174f4cec21cad0 /lisp/vc/vc-bzr.el | |
parent | 9e6302cfc8cc438f34a2c9765a7d48db2aec4e1c (diff) | |
download | emacs-62d7acae7405732268713006d839a5c3507b9482.tar.gz emacs-62d7acae7405732268713006d839a5c3507b9482.tar.bz2 emacs-62d7acae7405732268713006d839a5c3507b9482.zip |
Pacify byte-compiler in lisp/vc
* lisp/vc/vc-bzr.el, lisp/vc/vc-cvs.el, lisp/vc/vc-hg.el:
* lisp/vc/vc-rcs.el, lisp/vc/vc-src.el:
Declare functions defined elsewhere, to forestall “might not
be defined at runtime” warnings.
Diffstat (limited to 'lisp/vc/vc-bzr.el')
-rw-r--r-- | lisp/vc/vc-bzr.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/vc/vc-bzr.el b/lisp/vc/vc-bzr.el index 03c134a100e..4bcab66fb52 100644 --- a/lisp/vc/vc-bzr.el +++ b/lisp/vc/vc-bzr.el @@ -50,6 +50,11 @@ (require 'vc-dispatcher) (require 'vc-dir)) ; vc-dir-at-event +(declare-function vc-deduce-fileset "vc" + (&optional observer allow-unregistered + state-model-only-files)) + + ;; Clear up the cache to force vc-call to check again and discover ;; new functions when we reload this file. (put 'Bzr 'vc-functions nil) |