fixed typo in LaTeX::runBibTeX

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@355 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Allan Rae 1999-12-07 01:51:27 +00:00
parent 75c5c8c9e5
commit e77bf3710e
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
1999-12-06 Allan Rae <rae@lyx.org>
* src/LaTeX.C (runBibTeX): fix typo in accessing submatch pair.
1999-12-07 Lars Gullik Bjønnes <larsbj@lyx.org>
* src/support/lyxstring.C: added a lot of inline for no good

View File

@ -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;