tex2lyx/text.cpp: clarify a comment and add a question

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@40857 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Uwe Stöhr 2012-03-05 01:51:19 +00:00
parent 80d0710422
commit 9c5a8b3224

View File

@ -1397,9 +1397,8 @@ void parse_environment(Parser & p, ostream & os, bool outer,
else if (name == "lstlisting") { else if (name == "lstlisting") {
eat_whitespace(p, os, parent_context, false); eat_whitespace(p, os, parent_context, false);
// FIXME handle listings with parameters // FIXME handle the automatic color package loading
// If this is added, don't forgot to handle the // uwestoehr asks: In what case color is loaded?
// automatic color package loading
parse_listings(p, os, parent_context); parse_listings(p, os, parent_context);
p.skip_spaces(); p.skip_spaces();
} }