Author: jberry
Date: Tue Jun  7 15:16:02 2005
New Revision: 189460

URL: http://svn.apache.org/viewcvs?rev=189460&view=rev
Log:
To avoid confusion, call it a 'path delimiter', not a 'path seperater'

Modified:
    xerces/c/branches/jberry/3.0-unstable/src/xercesc/util/PlatformUtils.cpp

Modified: 
xerces/c/branches/jberry/3.0-unstable/src/xercesc/util/PlatformUtils.cpp
URL: 
http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/src/xercesc/util/PlatformUtils.cpp?rev=189460&r1=189459&r2=189460&view=diff
==============================================================================
--- xerces/c/branches/jberry/3.0-unstable/src/xercesc/util/PlatformUtils.cpp 
(original)
+++ xerces/c/branches/jberry/3.0-unstable/src/xercesc/util/PlatformUtils.cpp 
Tue Jun  7 15:16:02 2005
@@ -650,19 +650,19 @@
 {
        // As far as we know, all supported Xerces
        // platforms use at least a forward slash
-       // as a path separator. So we always check for
+       // as a path delimiter. So we always check for
        // that.
        //
-       // If XERCES_PATHSEP_BACKSLASH evaluates to true,
+       // If XERCES_PATH_DELIMITER_BACKSLASH evaluates to true,
        // we also consider that as a slash.
        //
-       // XERCES_PATHSEP_BACKSLASH may be set in config.h
+       // XERCES_PATH_DELIMITER_BACKSLASH may be set in config.h
        // by configure, or elsewhere by platform-specific
        // code.
     return     (
                        false
                 || chForwardSlash == c
-       #if XERCES_PATHSEP_BACKSLASH
+       #if XERCES_PATH_DELIMITER_BACKSLASH
                 || chBackSlash == c
        #endif
                );



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to