Account for shadowed system macros

Part of #10694.
This commit is contained in:
Enrico Forestieri 2017-10-22 23:09:37 +02:00
parent 70b0df85c8
commit d58d3f6774

View File

@ -1451,9 +1451,10 @@ bool Cursor::macroModeClose()
MathWordList const & words = mathedWordList();
MathWordList::const_iterator it = words.find(name);
bool keep_mathmode = it != words.end() && (it->second.inset == "font"
|| it->second.inset == "oldfont"
|| it->second.inset == "mbox");
bool keep_mathmode = user_macro
|| (it != words.end() && (it->second.inset == "font"
|| it->second.inset == "oldfont"
|| it->second.inset == "mbox"));
bool ert_macro = !user_macro && it == words.end() && atomAsMacro;
if (in && in->currentMode() == Inset::TEXT_MODE