mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
Revert last two commits, which we pushed accidentally.
This commit is contained in:
parent
1fb308cd02
commit
a20f3a0d52
@ -569,10 +569,11 @@ void InsetInclude::latex(otexstream & os, OutputParams const & runparams) const
|
||||
from_utf8(masterBuffer->filePath())));
|
||||
}
|
||||
|
||||
string const exppath = runparams.export_folder.empty() ?
|
||||
incfile :
|
||||
makeAbsPath(exppath, runparams.export_folder).realPath();
|
||||
FileName(exppath).onlyPath().createPath();
|
||||
string exppath = incfile;
|
||||
if (!runparams.export_folder.empty()) {
|
||||
exppath = makeAbsPath(exppath, runparams.export_folder).realPath();
|
||||
FileName(exppath).onlyPath().createPath();
|
||||
}
|
||||
|
||||
// write it to a file (so far the complete file)
|
||||
string exportfile;
|
||||
|
Loading…
Reference in New Issue
Block a user