Skip missing optional argument insets in tex2lyx

Optional arguments are optional, so if one is missing, do not stop the parsing,
but continue with the next argument (it might be a required one).
This commit is contained in:
Georg Baum 2015-01-03 17:59:20 +01:00
parent 53b3b2cf5a
commit 88cdd6dc60

View File

@ -644,7 +644,7 @@ void output_arguments(ostream & os, Parser & p, bool outer, Context & context,
} else {
if (p.next_token().cat() == catEscape ||
p.next_token().character() != '[')
break;
continue;
p.get_token(); // eat '['
begin_inset(os, "Argument ");
os << i << "\nstatus collapsed\n\n";