mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
Do not put space between multiple keys.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1753 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
6096d824aa
commit
01e9bd2f39
@ -1,3 +1,7 @@
|
||||
2001-03-13 Dekel Tsur <dekelts@tau.ac.il>
|
||||
|
||||
* FormCitation.C (apply): Do not put space between multiple keys.
|
||||
|
||||
2001-03-12 Dekel Tsur <dekelts@tau.ac.il>
|
||||
|
||||
* Menubar_pimpl.C (add_toc): Remove debug message.
|
||||
|
@ -413,7 +413,7 @@ void FormCitation::apply()
|
||||
|
||||
string contents;
|
||||
for (unsigned int i = 0; i < citekeys.size(); ++i) {
|
||||
if (i > 0) contents += ", ";
|
||||
if (i > 0) contents += ",";
|
||||
contents += citekeys[i];
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user