Update of /cvsroot/mahogany/M/src/modules/viewflt
In directory sc8-pr-cvs1:/tmp/cvs-serv3518
Modified Files:
QuoteURL.cpp
Log Message:
removed "* " from quote check, as it gives much more false positives (I don't remember
getting message quoted with *)
Index: QuoteURL.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/modules/viewflt/QuoteURL.cpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -b -u -2 -r1.4 -r1.5
--- QuoteURL.cpp 16 Feb 2003 15:14:35 -0000 1.4
+++ QuoteURL.cpp 22 Aug 2003 15:40:05 -0000 1.5
@@ -180,5 +180,6 @@
// TODO: make the string of "quoting characters" configurable
if ( *c != '>' && *c != '|' && *c != '}' &&
- ((*c != ')' && *c != '*') || c[1] != ' ') )
+ (*c != ')' || c[1] != ' ') )
+// ((*c != ')' && *c != '*') || c[1] != ' ') ) // '* ' still gives too
many false positives
{
// not quoted (according to our heuristics anyhow)
-------------------------------------------------------
This SF.net email is sponsored by: VM Ware
With VMware you can run multiple operating systems on a single machine.
WITHOUT REBOOTING! Mix Linux / Windows / Novell virtual machines
at the same time. Free trial click here:http://www.vmware.com/wl/offer/358/0
_______________________________________________
Mahogany-cvsupdates mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/mahogany-cvsupdates