comparison dmd/root/root.c @ 1587:def7a1d494fd

Merge DMD 1.051
author Christian Kamm <kamm incasoftware de>
date Fri, 06 Nov 2009 23:58:01 +0100
parents 17268b0a3ab0
children 9bf06e02070b
comparison
equal deleted inserted replaced
1586:7f728c52e63c 1587:def7a1d494fd
413 goto Ldefault; 413 goto Ldefault;
414 buf.writestring(getenv("HOME")); 414 buf.writestring(getenv("HOME"));
415 continue; 415 continue;
416 #endif 416 #endif
417 417
418 #if 0
418 case ' ': 419 case ' ':
419 case '\t': // tabs in filenames? 420 case '\t': // tabs in filenames?
420 if (!instring) // if not in string 421 if (!instring) // if not in string
421 break; // treat as end of path 422 break; // treat as end of path
423 #endif
422 default: 424 default:
423 Ldefault: 425 Ldefault:
424 buf.writeByte(c); 426 buf.writeByte(c);
425 continue; 427 continue;
426 } 428 }