Skip to content

Commit

Permalink
Merge pull request #12 from cadadr/master
Browse files Browse the repository at this point in the history
Add support for the good old RCS.
  • Loading branch information
purcell committed Jul 14, 2015
2 parents b2bac7a + 1fe4f8b commit 63eb800
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ibuffer-vc.el
Expand Up @@ -126,6 +126,8 @@ If the file is not under version control, nil is returned instead."
((fboundp root-fn-name) (funcall root-fn-name file-name)) ; git, svn, hg, bzr (at least)
((memq backend '(darcs DARCS)) (vc-darcs-find-root file-name))
((memq backend '(cvs CVS)) (vc-find-root file-name "CVS"))
((memq backend '(rcs RCS)) (or (vc-find-root file-name "RCS")
(concat file-name ",v")))
(t (error "ibuffer-vc: don't know how to find root for vc backend '%s' - please submit a bug report or patch" backend)))))
(cons backend root-dir)))))))

Expand Down

0 comments on commit 63eb800

Please sign in to comment.