diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2009-08-26 17:54:05 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2009-08-26 17:54:05 +0000 |
commit | 3b64d86b56c392642f204efe4981fd8ec33e7f62 (patch) | |
tree | c312962751902fe286b894b9d5446a4739977a14 /lisp/vc-sccs.el | |
parent | 636a36a0708e8d6dd4849d5265a762a1c64ef3fa (diff) | |
download | emacs-3b64d86b56c392642f204efe4981fd8ec33e7f62.tar.gz |
* vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
(vc-minor-part): Rename to vc-rcs-minor-part and move to vc-rcs.el.
(vc-default-previous-revision): Rename to vc-rcs-previous-revision
and move to vc-rcs.el.
(vc-default-next-revision): Rename to vc-rcs-next-revision and
move to vc-rcs.el.
(vc-cvs-update-changelog): Move to vc-cvs.el, use vc-call-backend.
(vc-rcs-update-changelog): Remove.
(vc-update-changelog-rcs2log): Rename to vc-rcs-update-changelog
and move to vc-rcs.el.
* vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-checkin)
(vc-rcs-checkout, vc-rcs-rollback): Adjust for the vc-rcs-trunk-p
renaming.
(vc-rcs-trunk-p, vc-rcs-minor-part, vc-rcs-previous-revision)
(vc-rcs-next-revision, vc-rcs-update-changelog): Moved here from
vc.el, renamed to be RCS specific.
* vc-cvs.el (vc-cvs-previous-revision, vc-cvs-next-revision): New functions.
(vc-cvs-update-changelog): Moved here from vc.el.
* vc-sccs.el (vc-sccs-previous-revision, vc-sccs-next-revision):
New functions.
Diffstat (limited to 'lisp/vc-sccs.el')
-rw-r--r-- | lisp/vc-sccs.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lisp/vc-sccs.el b/lisp/vc-sccs.el index 9236f604f80..3d9ac3833ad 100644 --- a/lisp/vc-sccs.el +++ b/lisp/vc-sccs.el @@ -370,6 +370,12 @@ revert all subfiles." ;;; Miscellaneous ;;; +(defun vc-sccs-previous-revision (file rev) + (vc-call-backend 'RCS 'previous-revision file rev)) + +(defun vc-sccs-next-revision (file rev) + (vc-call-backend 'RCS 'next-revision file rev)) + (defun vc-sccs-check-headers () "Check if the current file has any headers in it." (save-excursion |