Changes between Initial Version and Version 1 of Ticket #1698
- Timestamp:
- 05/13/20 07:56:19 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1698 – Description
initial v1 1 Currently, using `file-open` without the optional mode argument which otherwise defaults to 0744 in posixunix.scm. This is inconsistent with the behavior of other procedures such as `open-output-file` (0644). We should rather use 0666 as the default mode to align with the procedures that create files with fopen(3).1 Currently, using `file-open` without the optional mode argument uses a default mode of 0744. We should rather use 0666 as the default mode to align with the procedures that create files with fopen(3). 2 2 3 3 From: https://lists.nongnu.org/archive/html/chicken-hackers/2020-05/msg00021.html