bug 1018 fix part 1

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7073 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
John Levon 2003-06-01 00:00:51 +00:00
parent dd7ae72789
commit 5d239b2db0
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2003-06-01 John Levon <levon@movementarian.org>
* factory.C: accept "\bibtex" not "\BibTeX" (bug 1018)
2003-05-30 André Pönitz <poenitz@gmx.net>
* rowpainter.C: unify second drawing phase

View File

@ -308,7 +308,7 @@ Inset * readInset(LyXLex & lex, Buffer const & buf)
} else if (cmdName == "bibitem") {
lex.printError("Wrong place for bibitem");
inset = new InsetBibitem(inscmd);
} else if (cmdName == "BibTeX") {
} else if (cmdName == "bibtex") {
inset = new InsetBibtex(inscmd);
} else if (cmdName == "index") {
inset = new InsetIndex(inscmd);