Update of /cvsroot/mahogany/M/src/modules/viewflt
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7447/src/modules/viewflt
Modified Files:
QuoteURL.cpp
Log Message:
last check in broke the check for alphabetic lists -- restored
Index: QuoteURL.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/modules/viewflt/QuoteURL.cpp,v
retrieving revision 1.15
retrieving revision 1.16
diff -b -u -2 -r1.15 -r1.16
--- QuoteURL.cpp 28 Jul 2004 22:19:49 -0000 1.15
+++ QuoteURL.cpp 29 Jul 2004 10:15:44 -0000 1.16
@@ -315,9 +315,11 @@
// last chance: it is possible that the next line is a wrapped part of
// this one, so check the line after it too
- //
- // as this has a lot of potential for false positives, only do it for the
- // most common quoting character
- if ( sameAsNext == Line_Different && nextStart && *c == '>' )
+ if ( sameAsNext == Line_Different )
{
+ // as this has a lot of potential for false positives, only do it for
+ // the most common quoting character
+ if ( !nextStart || *c != '>' )
+ break;
+
const char *nextnext = strchr(nextStart + 1 /* skip '\n' */, '\n');
if ( !nextnext ||
-------------------------------------------------------
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click
_______________________________________________
Mahogany-cvsupdates mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/mahogany-cvsupdates