Removed bogus code.

This commit is contained in:
mainzelm 2001-08-08 11:53:10 +00:00
parent 327daeed32
commit c9d6b41e58
1 changed files with 0 additions and 2 deletions

View File

@ -30,8 +30,6 @@ s48_value open_dir(s48_value sch_dirname)
while( NULL != (dirent = readdir(d)) ) {
if((strcmp(dirent->d_name,".") == 0) || (strcmp(dirent->d_name,"..") == 0))
continue;
if( NULL == (fname=copystring(NULL, dirent->d_name)) )
s48_raise_os_error_1 (errno, sch_dirname);
dirlist = s48_cons (s48_enter_string (dirent->d_name),
dirlist);