diff options
author | Simon Leinen <simon.leinen@switch.ch> | 2014-11-26 13:10:26 -0500 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2014-11-26 13:10:26 -0500 |
commit | 181b12e7fd604f59faba0aaa9d0b453dc06eab4d (patch) | |
tree | da5f6ca2d6a08d009d8cc63c370d2b36dc357129 /lisp/vc/vc-rcs.el | |
parent | 7e24ac11d4f458c6524c92caf8117db8f5fc0542 (diff) | |
download | emacs-181b12e7fd604f59faba0aaa9d0b453dc06eab4d.tar.gz emacs-181b12e7fd604f59faba0aaa9d0b453dc06eab4d.tar.bz2 emacs-181b12e7fd604f59faba0aaa9d0b453dc06eab4d.zip |
Fix up autoloads in vc-rcs.el and vc-sccs.el.
Diffstat (limited to 'lisp/vc/vc-rcs.el')
-rw-r--r-- | lisp/vc/vc-rcs.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/vc/vc-rcs.el b/lisp/vc/vc-rcs.el index 0b839a622e1..341a1d4fd7e 100644 --- a/lisp/vc/vc-rcs.el +++ b/lisp/vc/vc-rcs.el @@ -229,6 +229,8 @@ For a description of possible values, see `vc-check-master-templates'." (vc-rcs-fetch-master-state file) (vc-file-getprop file 'vc-working-revision)))) +(autoload 'vc-master-name "vc-filewise") + (defun vc-rcs-latest-on-branch-p (file &optional version) "Return non-nil if workfile version of FILE is the latest on its branch. When VERSION is given, perform check for that version." @@ -974,7 +976,7 @@ Uses `rcs2log' which only works for RCS and CVS." nil t) (replace-match "$\\1$")))) -(autoload 'vc-rename-master "vc") +(autoload 'vc-rename-master "vc-filewise") (defun vc-rcs-rename-file (old new) ;; Just move the master file (using vc-rcs-master-templates). |