mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
Fix thinko
Actually use the replaced path string :-/
This commit is contained in:
parent
0c05432284
commit
a5004a394a
@ -159,7 +159,7 @@ set<string> getTexFileList(string const & filename)
|
||||
for (auto doc : doclist) {
|
||||
subst(doc, from_ascii("\r"), docstring());
|
||||
while (contains(doc, from_ascii("//")))
|
||||
subst(doc, from_ascii("//"), from_ascii("/"));
|
||||
doc = subst(doc, from_ascii("//"), from_ascii("/"));
|
||||
if (!doc.empty())
|
||||
list.insert(removeExtension(onlyFileName(to_utf8(doc))));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user