The unified diff between revisions [850c20aa..] and [a80e1661..] is displayed below. It can also be downloaded as a raw diff.
This diff has been restricted to the following files: 'win32/fs.cc'
#
#
# patch "win32/fs.cc"
# from [dc98eb08c96cda5ca2e73e8a29dea19cb40b00bf]
# to [bfc8bc3aaa07a3ec97a5d555ee4af563a118546d]
#
============================================================
--- win32/fs.cc dc98eb08c96cda5ca2e73e8a29dea19cb40b00bf
+++ win32/fs.cc bfc8bc3aaa07a3ec97a5d555ee4af563a118546d
@@ -91,7 +91,8 @@ tilde_expand(utf8 const & in)
fs::path res;
if (*i == "~" || i->size() > 1 && i->at(0) == '~')
{
- res /= get_homedir()();
+ fs::path restmp(get_homedir()(), fs::native);
+ res /= restmp;
++i;
}
while (i != tmp.end())