mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-18 21:45:24 +00:00
Fix bug #9296. The key may be multiple keys.
(cherry picked from commit 080a4d84e295db1f2c2589af46fcfa981a716406)
This commit is contained in:
parent
a0e0e3c170
commit
bdb6abf9b7
@ -929,7 +929,9 @@ docstring const BiblioInfo::getLabel(vector<docstring> keys,
|
||||
|
||||
bool BiblioInfo::isBibtex(docstring const & key) const
|
||||
{
|
||||
BiblioInfo::const_iterator it = find(key);
|
||||
docstring key1;
|
||||
split(key, key1, ',');
|
||||
BiblioInfo::const_iterator it = find(key1);
|
||||
if (it == end())
|
||||
return false;
|
||||
return it->second.isBibTeX();
|
||||
|
@ -62,6 +62,9 @@ What's new
|
||||
|
||||
- Fix export of xfig external insets (bug 9244).
|
||||
|
||||
- Fix incorrect output of ampersands when multiple keys are given for a
|
||||
citation (bug 9296).
|
||||
|
||||
|
||||
* LYX2LYX
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user