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:
Tom Willemse 2017-06-07 00:05:59 -07:00
parent e7a25a4fda
commit 47eb5350df

View file

@ -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"))