diff options
| author | Simon Leinen | 2014-11-26 13:10:26 -0500 |
|---|---|---|
| committer | Eric S. Raymond | 2014-11-26 13:10:26 -0500 |
| commit | 181b12e7fd604f59faba0aaa9d0b453dc06eab4d (patch) | |
| tree | da5f6ca2d6a08d009d8cc63c370d2b36dc357129 | |
| parent | 7e24ac11d4f458c6524c92caf8117db8f5fc0542 (diff) | |
| download | emacs-181b12e7fd604f59faba0aaa9d0b453dc06eab4d.tar.gz emacs-181b12e7fd604f59faba0aaa9d0b453dc06eab4d.zip | |
Fix up autoloads in vc-rcs.el and vc-sccs.el.
| -rw-r--r-- | lisp/vc/vc-rcs.el | 4 | ||||
| -rw-r--r-- | lisp/vc/vc-sccs.el | 4 |
2 files changed, 6 insertions, 2 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'." | |||
| 229 | (vc-rcs-fetch-master-state file) | 229 | (vc-rcs-fetch-master-state file) |
| 230 | (vc-file-getprop file 'vc-working-revision)))) | 230 | (vc-file-getprop file 'vc-working-revision)))) |
| 231 | 231 | ||
| 232 | (autoload 'vc-master-name "vc-filewise") | ||
| 233 | |||
| 232 | (defun vc-rcs-latest-on-branch-p (file &optional version) | 234 | (defun vc-rcs-latest-on-branch-p (file &optional version) |
| 233 | "Return non-nil if workfile version of FILE is the latest on its branch. | 235 | "Return non-nil if workfile version of FILE is the latest on its branch. |
| 234 | When VERSION is given, perform check for that version." | 236 | When VERSION is given, perform check for that version." |
| @@ -974,7 +976,7 @@ Uses `rcs2log' which only works for RCS and CVS." | |||
| 974 | nil t) | 976 | nil t) |
| 975 | (replace-match "$\\1$")))) | 977 | (replace-match "$\\1$")))) |
| 976 | 978 | ||
| 977 | (autoload 'vc-rename-master "vc") | 979 | (autoload 'vc-rename-master "vc-filewise") |
| 978 | 980 | ||
| 979 | (defun vc-rcs-rename-file (old new) | 981 | (defun vc-rcs-rename-file (old new) |
| 980 | ;; Just move the master file (using vc-rcs-master-templates). | 982 | ;; Just move the master file (using vc-rcs-master-templates). |
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'." | |||
| 174 | (push (list frel state) result)))) | 174 | (push (list frel state) result)))) |
| 175 | (funcall update-function result))) | 175 | (funcall update-function result))) |
| 176 | 176 | ||
| 177 | (autoload 'vc-master-name "vc-filewise") | ||
| 178 | |||
| 177 | (defun vc-sccs-working-revision (file) | 179 | (defun vc-sccs-working-revision (file) |
| 178 | "SCCS-specific version of `vc-working-revision'." | 180 | "SCCS-specific version of `vc-working-revision'." |
| 179 | (with-temp-buffer | 181 | (with-temp-buffer |
| @@ -471,7 +473,7 @@ Remaining arguments are ignored." | |||
| 471 | (goto-char (point-min)) | 473 | (goto-char (point-min)) |
| 472 | (re-search-forward "%[A-Z]%" nil t))) | 474 | (re-search-forward "%[A-Z]%" nil t))) |
| 473 | 475 | ||
| 474 | (autoload 'vc-rename-master "vc") | 476 | (autoload 'vc-rename-master "vc-filewise") |
| 475 | 477 | ||
| 476 | (defun vc-sccs-rename-file (old new) | 478 | (defun vc-sccs-rename-file (old new) |
| 477 | ;; Move the master file (using vc-rcs-master-templates). | 479 | ;; Move the master file (using vc-rcs-master-templates). |