Add required vc function
‘vc-p4-revision-granularity’ is a required function that should be implemented by all vc backends. Perforce has per-file revisions.
This commit is contained in:
parent
e7a25a4fda
commit
47eb5350df
1 changed files with 5 additions and 0 deletions
5
vc-p4.el
5
vc-p4.el
|
@ -99,6 +99,11 @@ specify a starting date when you run C-u C-x v g."
|
||||||
:type 'string
|
:type 'string
|
||||||
:group 'vc)
|
:group 'vc)
|
||||||
|
|
||||||
|
(defun vc-p4-revision-granularity ()
|
||||||
|
"Return file.
|
||||||
|
Perforce has per-file revisions."
|
||||||
|
'file)
|
||||||
|
|
||||||
(defun vc-p4-create-repo ()
|
(defun vc-p4-create-repo ()
|
||||||
(error "create-repo not supported yet for P4"))
|
(error "create-repo not supported yet for P4"))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue