Changeset 1438 for trunk/dll/grep2.c
- Timestamp:
- Jun 28, 2009, 10:47:00 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/grep2.c
r1400 r1438 367 367 strcpy(simple, p); 368 368 else if (*s) { 369 strcpy(simple, "\\");369 strcpy(simple, PCSZ_BACKSLASH); 370 370 strcat(simple, s); 371 371 *s = 0; … … 590 590 if (s[strlen(s) - 1] != '\\') { 591 591 lLen++; 592 strcat(s, "\\");592 strcat(s, PCSZ_BACKSLASH); 593 593 } 594 594 rstrip(s); … … 647 647 if (s[strlen(s) - 1] != '\\') { 648 648 lLen++; 649 strcat(s, "\\");649 strcat(s, PCSZ_BACKSLASH); 650 650 } 651 651 rstrip(s);
Note:
See TracChangeset
for help on using the changeset viewer.