branch: elpa/vc-fossil commit 00ff2030e6e75db2478dbd133952d47e7daa75bd Author: venkat <venkat> Commit: venkat <venkat>
Allow .fslckout in Unix as fossil db name. (for [769989987d]) --- vc/el/vc-fossil.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vc/el/vc-fossil.el b/vc/el/vc-fossil.el index 4ca96da..2a3d2a6 100644 --- a/vc/el/vc-fossil.el +++ b/vc/el/vc-fossil.el @@ -61,7 +61,8 @@ (throw 'bail nil)))))) (defun vc-fossil-root (file) - (vc-find-root file "_FOSSIL_")) + (or (vc-find-root file ".fslckout") + (vc-find-root file "_FOSSIL_"))) (defun vc-fossil-command (buffer okstatus file-or-list &rest flags) "A wrapper around `vc-do-command' for use in vc-fossil.el.