add default file mode to newFileStream()

This commit is contained in:
JamesP
2015-09-26 08:18:42 +10:00
parent eed1000252
commit ff9a3d39d7

View File

@@ -391,7 +391,7 @@ when not defined(js):
result.writeDataImpl = fsWriteData
result.flushImpl = fsFlush
proc newFileStream*(filename: string, mode: FileMode): FileStream =
proc newFileStream*(filename: string, mode: FileMode = fmRead): FileStream =
## creates a new stream from the file named `filename` with the mode `mode`.
## If the file cannot be opened, nil is returned. See the `system
## <system.html>`_ module for a list of available FileMode enums.