[sword-cvs] sword/src/modules/filters thmlfootnotes.cpp,1.8,1.9 thmlmorph.cpp,1.9,1.10 thmlscripref.cpp,1.8,1.9
sword@www.crosswire.org
sword@www.crosswire.org
Thu, 12 Jun 2003 08:30:24 -0700
Update of /usr/local/cvsroot/sword/src/modules/filters
In directory www:/tmp/cvs-serv30373
Modified Files:
thmlfootnotes.cpp thmlmorph.cpp thmlscripref.cpp
Log Message:
fixed bug committed by me
Index: thmlfootnotes.cpp
===================================================================
RCS file: /usr/local/cvsroot/sword/src/modules/filters/thmlfootnotes.cpp,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** thmlfootnotes.cpp 6 Jun 2003 18:25:56 -0000 1.8
--- thmlfootnotes.cpp 12 Jun 2003 15:30:21 -0000 1.9
***************
*** 70,74 ****
// if not a footnote token, keep token in text
if (!hide) {
! text += '<' + token + '>';
}
continue;
--- 70,76 ----
// if not a footnote token, keep token in text
if (!hide) {
! text += '<';
! text += token;
! text += '>';
}
continue;
Index: thmlmorph.cpp
===================================================================
RCS file: /usr/local/cvsroot/sword/src/modules/filters/thmlmorph.cpp,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** thmlmorph.cpp 6 Jun 2003 20:42:58 -0000 1.9
--- thmlmorph.cpp 12 Jun 2003 15:30:21 -0000 1.10
***************
*** 63,67 ****
// if not a morph tag token, keep token in text
! text += '<' + token + '>';
continue;
}
--- 63,69 ----
// if not a morph tag token, keep token in text
! text += '<';
! token += token;
! text += '>';
continue;
}
Index: thmlscripref.cpp
===================================================================
RCS file: /usr/local/cvsroot/sword/src/modules/filters/thmlscripref.cpp,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** thmlscripref.cpp 6 Jun 2003 18:25:56 -0000 1.8
--- thmlscripref.cpp 12 Jun 2003 15:30:21 -0000 1.9
***************
*** 70,74 ****
// if not a scripref token, keep token in text
if (!hide) {
! text += '<' + token + '>';
}
continue;
--- 70,76 ----
// if not a scripref token, keep token in text
if (!hide) {
! text += '<';
! text += token;
! text += '>';
}
continue;