more work on porting rc command parsing to Go

This commit is contained in:
Kovid Goyal
2022-08-30 15:49:26 +05:30
parent 79c8862d4c
commit 6f4968305a
19 changed files with 291 additions and 27 deletions

View File

@@ -49,6 +49,6 @@ func read_window_logo(path string) (func(io_data *rc_io_data) (bool, error), err
return false, err
}
buf = buf[:n]
return n == 0, nil
return false, nil
}, nil
}