# HG changeset patch # User Ludovic Chabant # Date 1407283942 25200 # Node ID bc6003e7159e0b3f73210da9fb81e4aef839be8e # Parent afcd66edd6cc5eca5c4a3f39463160860118ab26 Fix stupid typo, make sure paths are normalized. diff -r afcd66edd6cc -r bc6003e7159e plugin/lawrencium.vim --- a/plugin/lawrencium.vim Tue Aug 05 17:11:03 2014 -0700 +++ b/plugin/lawrencium.vim Tue Aug 05 17:12:22 2014 -0700 @@ -297,9 +297,9 @@ function! s:HgRepo.GetFullPath(path) abort let l:root_dir = self.root_dir if s:isabspath(a:path) - call s:throw("Expected relative path, got absolute path: " . a:path)` + call s:throw("Expected relative path, got absolute path: " . a:path) endif - return l:root_dir . a:path + return s:normalizepath(l:root_dir . a:path) endfunction " Gets a repo-relative path given any path.