From e77bf3710e3bb1c7c3fc98fc094bf20f77fc0a14 Mon Sep 17 00:00:00 2001 From: Allan Rae Date: Tue, 7 Dec 1999 01:51:27 +0000 Subject: [PATCH] fixed typo in LaTeX::runBibTeX git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@355 a592a061-630c-0410-9148-cb99ea01b6c8 --- ChangeLog | 4 ++++ src/LaTeX.C | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 3a98ad9cc3..f59dfe0cfe 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +1999-12-06 Allan Rae + + * src/LaTeX.C (runBibTeX): fix typo in accessing submatch pair. + 1999-12-07 Lars Gullik Bjønnes * src/support/lyxstring.C: added a lot of inline for no good diff --git a/src/LaTeX.C b/src/LaTeX.C index 5bd72091c8..f2a3c12f33 100644 --- a/src/LaTeX.C +++ b/src/LaTeX.C @@ -386,7 +386,7 @@ bool LaTeX::runBibTeX(string const & file, DepTable & dep) using_bibtex = true; LRegex::SubMatches const & sub = reg1.exec(token); string data = LSubstring(token, sub[1].first, - sub[2].second); + sub[1].second); // data is now all the bib files separated by ',' // get them one by one and pass them to the helper string::size_type b; -- 2.39.5