fix(frontends/lean/info_manager): user provided options override saved options, fixes #119
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
50465a2d06
commit
87926b774f
1 changed files with 1 additions and 1 deletions
|
@ -454,7 +454,7 @@ struct info_manager::imp {
|
|||
auto next = it;
|
||||
++next;
|
||||
if (next == end || next->m_line > line) {
|
||||
display_core(it->m_env, it->m_options, ios, line);
|
||||
display_core(it->m_env, join(it->m_options, ios.get_options()), ios, line);
|
||||
return;
|
||||
}
|
||||
it = next;
|
||||
|
|
Loading…
Reference in a new issue