From 86f320f6e0a38ca23f586ea0adbd869290686460 Mon Sep 17 00:00:00 2001 From: Georg Baum Date: Fri, 17 Dec 2010 21:35:27 +0000 Subject: [PATCH] fix halfway converted bibtex inset git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@36928 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/tex2lyx/text.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/tex2lyx/text.cpp b/src/tex2lyx/text.cpp index 3899601e98..6401561729 100644 --- a/src/tex2lyx/text.cpp +++ b/src/tex2lyx/text.cpp @@ -2545,8 +2545,7 @@ void parse_text(Parser & p, ostream & os, unsigned flags, bool outer, else if (t.cs() == "bibliography") { context.check_layout(os); - begin_command_inset(os, "bibliography", "bibliography"); - os << "bibtex" << "\n"; + begin_command_inset(os, "bibtex", "bibtex"); os << "bibfiles " << '"' << p.verbatim_item() << '"' << "\n"; // Do we have a bibliographystyle set? if (!bibliographystyle.empty()) -- 2.39.5