Changeset 12069 in webkit for trunk/JavaScriptCore/pcre


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.
Location:
trunk/JavaScriptCore/pcre
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/pcre/pcre_compile.c

    r11962 r12069  
    48944894          ++ptr;
    48954895          }
    4896        
     4896
    48974897        {
    4898           int i;
     4898          int i;
    48994899          for (i = 0; i < _pcre_utf8_table1_size; i++)
    49004900            if (c <= _pcre_utf8_table1[i]) break;
    49014901          length += i;
    4902           lastitemlength += i;
    4903         }
     4902          lastitemlength += i;
     4903        }
    49044904      }
    49054905#else
  • trunk/JavaScriptCore/pcre/pcre_exec.c

    r11962 r12069  
    18091809#if PCRE_UTF16
    18101810      {
    1811         int dc;
     1811        int dc;
    18121812        ecode += length;
    18131813        switch (md->end_subject - eptr)
     
    19491949#if PCRE_UTF16
    19501950
    1951           length = 1;
     1951      length = 1;
    19521952      GETUTF8CHARLEN(fc, ecode, length);
    1953           {
     1953      {
    19541954      int utf16Length; // don't initialize on this line as workaround for Win32 compile problem
    19551955      utf16Length = fc > 0xFFFF ? 2 : 1;
     
    20552055        }
    20562056        /* Control never gets here */
    2057           }
     2057        }
    20582058#else
    20592059    if (utf8)
Note: See TracChangeset for help on using the changeset viewer.