Changeset 4121
- Timestamp:
- 07/25/06 22:43:34 (2 years ago)
- Files:
-
- trunk/src/ChangeLog.Meadow (modified) (1 diff)
- trunk/src/regex.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/ChangeLog.Meadow
r4120 r4121 1 2006-07-25 MIYOSHI Masanori <miyoshi@meadowy.org> 2 3 * regex.c (regex_compile): Activate the invalidate codes. 4 1 5 2006-07-25 MIYOSHI Masanori <miyoshi@meadowy.org> 2 6 trunk/src/regex.c
r4119 r4121 2571 2571 /* If this is the end of an included regexp, 2572 2572 pop back to the main regexp and try again. */ 2573 #if 0 /* I had invalidated the following codes, because these codes2574 caused some trouble. But I think I don't have to do so2575 now. MIYOSHI. */2576 2573 if (in_subpattern) 2577 2574 { … … 2582 2579 continue; 2583 2580 } 2584 #endif2585 2581 /* If this is the end of the main regexp, we are done. */ 2586 2582 break; … … 2591 2587 switch (c) 2592 2588 { 2593 #if 0 /* I had invalidated the following codes, because these codes2594 caused some trouble. But I think I don't have to do so2595 now. MIYOSHI. */2596 2589 case ' ': 2597 2590 { … … 2626 2619 break; 2627 2620 } 2628 #endif2629 2621 2630 2622 case '^':
