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:
Dekel Tsur 2001-03-13 15:03:54 +00:00
parent 6096d824aa
commit 01e9bd2f39
2 changed files with 5 additions and 1 deletions

View File

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

View File

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