Ignore:
Timestamp:
Jan 13, 2006, 1:32:51 AM (19 years ago)
Author:
darin
Message:
  • Replaced tabs with spaces in source files that had less than 10 lines with tabs.
  • Set allow-tabs Subversion property in source files that have more than 10 lines with tabs.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/JavaScriptCorePrefix.h

    r11962 r12069  
    3434#define isalpha(c)      __istype((c), _CTYPE_A)
    3535#define iscntrl(c)      __istype((c), _CTYPE_C)
    36 #define isdigit(c)      __isctype((c), _CTYPE_D)        /* ANSI -- locale independent */
     36#define isdigit(c)      __isctype((c), _CTYPE_D)        /* ANSI -- locale independent */
    3737#define isgraph(c)      __istype((c), _CTYPE_G)
    3838#define islower(c)      __istype((c), _CTYPE_L)
     
    4141#define isspace(c)      __istype((c), _CTYPE_S)
    4242#define isupper(c)      __istype((c), _CTYPE_U)
    43 #define isxdigit(c)     __isctype((c), _CTYPE_X)        /* ANSI -- locale independent */
     43#define isxdigit(c)     __isctype((c), _CTYPE_X)        /* ANSI -- locale independent */
    4444#define tolower(c)      __tolower(c)
    4545#define toupper(c)      __toupper(c)
Note: See TracChangeset for help on using the changeset viewer.