Citation commands do not absolutely have to start with "c".

This commit is contained in:
Richard Heck 2016-07-12 19:38:28 -04:00
parent b41300d819
commit c4ef96c030

View File

@ -1145,7 +1145,7 @@ string citationStyleToString(const CitationStyle & cs)
{
string cmd = cs.cmd;
if (cs.forceUpperCase)
cmd[0] = 'C';
cmd[0] = uppercase(cmd[0]);
if (cs.fullAuthorList)
cmd += '*';
return cmd;