mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-23 10:18:50 +00:00
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:
parent
dd7ae72789
commit
5d239b2db0
@ -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
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user