diff options
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 |