Update of /cvsroot/mahogany/M/src/util
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31952/src/util

Modified Files:
        matchurl.cpp 
Log Message:
fixed bug in code detecting whether an URL starts at the start of line -- this 
resulted in many URLs not being detected as wrapped

Index: matchurl.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/util/matchurl.cpp,v
retrieving revision 1.30
retrieving revision 1.31
diff -b -u -2 -r1.30 -r1.31
--- matchurl.cpp        16 Mar 2004 00:01:01 -0000      1.30
+++ matchurl.cpp        21 Mar 2004 21:37:25 -0000      1.31
@@ -735,5 +735,7 @@
          while ( q >= text && *q != '\n' )
          {
-            if ( !wxIsspace(*q--) )
+            q--;
+
+            if ( !wxIsspace(*q) )
                break;
          }



-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
_______________________________________________
Mahogany-cvsupdates mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/mahogany-cvsupdates

Reply via email to