Update of /cvsroot/mahogany/M/src/util
In directory usw-pr-cvs1:/tmp/cvs-serv32479/src/util

Modified Files:
        matchurl.cpp 
Log Message:
Add '#' to the set of URL chars

Index: matchurl.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/util/matchurl.cpp,v
retrieving revision 1.11
retrieving revision 1.12
diff -b -u -2 -r1.11 -r1.12
--- matchurl.cpp        30 Apr 2002 13:24:03 -0000      1.11
+++ matchurl.cpp        2 May 2002 07:00:34 -0000       1.12
@@ -379,5 +379,5 @@
 inline bool IsURLChar(char c)
 {
-   return IsAlnum(c) || IsURLMark(c) || IsURLReserved(c) || c == '%';
+   return IsAlnum(c) || IsURLMark(c) || IsURLReserved(c) || c == '%' || c == '#';
 }
 


_______________________________________________________________

Have big pipes? SourceForge.net is looking for download mirrors. We supply
the hardware. You get the recognition. Email Us: [EMAIL PROTECTED]
_______________________________________________
Mahogany-cvsupdates mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/mahogany-cvsupdates

Reply via email to