mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
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:
parent
75c5c8c9e5
commit
e77bf3710e
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user