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-sccs.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-sccs.el')
-rw-r--r-- | lisp/vc/vc-sccs.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/vc/vc-sccs.el b/lisp/vc/vc-sccs.el index 780efc48e96..26aa49c296f 100644 --- a/lisp/vc/vc-sccs.el +++ b/lisp/vc/vc-sccs.el @@ -174,6 +174,8 @@ For a description of possible values, see `vc-check-master-templates'." (push (list frel state) result)))) (funcall update-function result))) +(autoload 'vc-master-name "vc-filewise") + (defun vc-sccs-working-revision (file) "SCCS-specific version of `vc-working-revision'." (with-temp-buffer @@ -471,7 +473,7 @@ Remaining arguments are ignored." (goto-char (point-min)) (re-search-forward "%[A-Z]%" nil t))) -(autoload 'vc-rename-master "vc") +(autoload 'vc-rename-master "vc-filewise") (defun vc-sccs-rename-file (old new) ;; Move the master file (using vc-rcs-master-templates). |