Ignore:
Timestamp:
Aug 31, 2005, 12:57:56 AM (20 years ago)
Author:
darin
Message:

Reviewed, tweaked, and landed by Darin.

  • kjs/config.h: Added a WIN32 case in here, with suitable defines. (To be tweaked as necessary.)
  • kjs/function.cpp: Took out APPLE_CHANGES around use of ICU.
  • kjs/operations.cpp: Removed some bogus code that always set HAVE_FLOAT_H.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/function.cpp

    r10399 r10412  
    3939#include <assert.h>
    4040#include <string.h>
    41 
    42 #if APPLE_CHANGES
     41#include <ctype.h>
     42
    4343#include <unicode/uchar.h>
    44 #endif
    4544
    4645using namespace KXMLCore;
     
    661660            return true;
    662661        default:
    663 #if APPLE_CHANGES
    664662            return u_charType(c) == U_SPACE_SEPARATOR;
    665 #else
    666             // ### properly support other Unicode Zs characters
    667             return false;
    668 #endif
    669663    }
    670664}
Note: See TracChangeset for help on using the changeset viewer.