[Refdb-cvs] CVS: refdb/src refdbdref.c,1.65.2.19,1.65.2.20
Status: Beta
Brought to you by:
mhoenicka
From: Markus H. <mho...@us...> - 2005-10-22 20:43:06
|
Update of /cvsroot/refdb/refdb/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9278 Modified Files: Tag: Release_0_9_5_stable refdbdref.c Log Message: updatejo(): added JA as a synonym for JO Index: refdbdref.c =================================================================== RCS file: /cvsroot/refdb/refdb/src/refdbdref.c,v retrieving revision 1.65.2.19 retrieving revision 1.65.2.20 diff -u -U2 -r1.65.2.19 -r1.65.2.20 --- refdbdref.c 13 Oct 2005 21:17:00 -0000 1.65.2.19 +++ refdbdref.c 22 Oct 2005 20:42:58 -0000 1.65.2.20 @@ -2159,4 +2159,5 @@ if (strncmp(token, ":JF:", 4) == 0 || /* journal full */ strncmp(token, ":JO:", 4) == 0 || /* journal abbrev */ + strncmp(token, ":JA:", 4) == 0 || /* journal abbrev */ strncmp(token, ":J1:", 4) == 0 || /* journal custabbrev1 */ strncmp(token, ":J2:", 4) == 0) { /* journal custabbrev2 */ @@ -2198,5 +2199,6 @@ strcpy(journal_field, "periodical_name"); } - else if (!strcmp(field_buffer, ":JO:")) { + else if (!strcmp(field_buffer, ":JO:") + || !strcmp(field_buffer, ":JA:")) { strcpy(journal_field, "periodical_abbrev"); } |