mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
Do not let the children's buffer params leak into the master (#5941)
This commit is contained in:
parent
2f7f0c7631
commit
2fa840b771
@ -1922,7 +1922,11 @@ int Buffer::runChktex()
|
||||
|
||||
void Buffer::validate(LaTeXFeatures & features) const
|
||||
{
|
||||
params().validate(features);
|
||||
// Validate the buffer params, but not for included
|
||||
// files, since they also use the parent buffer's
|
||||
// params (# 5941)
|
||||
if (!features.runparams().is_child)
|
||||
params().validate(features);
|
||||
|
||||
for_each(paragraphs().begin(), paragraphs().end(),
|
||||
bind(&Paragraph::validate, _1, ref(features)));
|
||||
|
@ -934,7 +934,9 @@ void InsetInclude::validate(LaTeXFeatures & features) const
|
||||
// otherwise it would always be the master buffer,
|
||||
// and nested includes would not work.
|
||||
features.setBuffer(*tmp);
|
||||
features.runparams().is_child = true;
|
||||
tmp->validate(features);
|
||||
features.runparams().is_child = false;
|
||||
features.setBuffer(buffer());
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user