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:
Leonardo de Moura 2014-09-01 18:42:46 -07:00
parent 50465a2d06
commit 87926b774f

View file

@ -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;