Changeset 4123

Show
Ignore:
Timestamp:
2006年07月27日 00時08分31秒 (2 years ago)
Author:
miyoshi
Message:

* regex.c (regex_compile): Undo the last change.

* nmake.mw32.defs (ARCH_CFLAGS): Sync up with Emacs CVS HEAD.
Refer to 7410.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/nt/ChangeLog.Meadow

    r4117 r4123  
     12006-07-27  MIYOSHI Masanori  <miyoshi@meadowy.org> 
     2 
     3        * nmake.mw32.defs (ARCH_CFLAGS): Sync up with Emacs CVS HEAD. 
     4        Refer to [meadow-develop: 7410]. 
     5 
    162006-07-22  Masayuki FUJII  <boochang@m4.kcn.ne.jp> 
    27 
  • trunk/nt/nmake.mw32.defs

    r4117 r4123  
    196196!if "$(ARCH)" == "i386" 
    197197!ifdef NOOPT 
    198 ARCH_CFLAGS     = -nologo -D_X86_=1 -c -Zel -W2 -H63 -Od -G3d -Zi -Zp8 $(DEBUG_FLAG) 
    199 !else 
    200 ARCH_CFLAGS     = -nologo -D_X86_=1 -c -Zel -W2 -H63 -O2 -Ob2 -GBdF -Zi -Zp8 $(DEBUG_FLAG) 
     198ARCH_CFLAGS     = -nologo -D_X86_=1 -c -Zel -W2 -H63 -Od -G3d -Zp8 $(DEBUG_FLAG) 
     199!else 
     200ARCH_CFLAGS     = -nologo -D_X86_=1 -c -Zel -W2 -H63 -Oxsb2 -Oy- -G6dF -Zp8 $(DEBUG_FLAG) 
    201201!endif 
    202202ARCH_LDFLAGS    = -align:0x1000 $(SYS_LDFLAGS) 
  • trunk/src/ChangeLog.Meadow

    r4122 r4123  
     12006-07-27  MIYOSHI Masanori  <miyoshi@meadowy.org> 
     2 
     3        * regex.c (regex_compile): Undo the last change. 
     4 
    152006-07-26  MIYOSHI Masanori  <miyoshi@meadowy.org> 
    26 
  • trunk/src/regex.c

    r4122 r4123  
    24292429  } while (0) 
    24302430 
    2431 #if defined(MEADOW) 
    2432 /* Don't optimize on VC 6.  Refer to [meadow-develop: 7410]. */ 
    2433 #if defined(WINDOWSNT) && _MSC_VER == 1200 
    2434 #pragma optimize("", off) 
    2435 #endif 
    2436 #endif 
    2437  
    24382431static reg_errcode_t 
    24392432regex_compile (pattern, size, syntax, bufp) 
     
    36763669  FREE_STACK_RETURN (REG_NOERROR); 
    36773670} /* regex_compile */ 
    3678 #if defined(MEADOW) 
    3679 #if defined(WINDOWSNT) && _MSC_VER == 1200 
    3680 #pragma optimize("", on) 
    3681 #endif 
    3682 #endif 
    36833671  
    36843672/* Subroutines for `regex_compile'.  */