Changeset 384

Show
Ignore:
Timestamp:
04/30/07 21:01:48 (18 months ago)
Author:
krobillard
Message:

Orca - Windows read directory now filters "." & "..".

Location:
trunk/orca
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/orca/boot.c

    r297 r384  
    353353  "cross: native [a [vec3!] b [vec3!]]\n" 
    354354  "normalize: native [vec [vec3!]]\n" 
    355   "call: native [\n" 
    356   "    command [string! block!]\n" 
    357   "    /output\n" 
    358   "    out [string! file! none!]\n" 
    359   "    /wait\n" 
    360   "]\n" 
    361355; 
    362356 
  • trunk/orca/config.r

    r136 r384  
    77    compress 
    88    hex_token 
    9     math3d 
    10     os_call 
     9    ;math3d 
     10    ;os_call 
    1111] 
  • trunk/orca/win32/os.c

    r147 r384  
    200200        do 
    201201        { 
     202            const char* cp = fileinfo.name; 
     203            if( cp[0] == '.' && (cp[1] == '.' || cp[1] == '\0') ) 
     204                continue; 
     205 
    202206            orAppendString( blk, orMakeCString(fileinfo.name, -1) ); 
    203207        }