summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-08-02 08:44:33 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-08-02 08:44:33 -0700
commit64d3f8fcc8ef6e83e6fd789614e1aadfa526d18d (patch)
treee8bc344e3bb388c4c66a7e58704341fdc8ef833c /ChangeLog
parentb9d23bcf53ee7b041b511a25a36291ae7166c73b (diff)
downloadtxr-64d3f8fcc8ef6e83e6fd789614e1aadfa526d18d.tar.gz
txr-64d3f8fcc8ef6e83e6fd789614e1aadfa526d18d.tar.bz2
txr-64d3f8fcc8ef6e83e6fd789614e1aadfa526d18d.zip
Support lstat and fstat.
* stream.h (statf): Declaration removed. * sysif.c (w_stat): Function takes val instead of const wchar_t * as leftmost argument. (w_lstat, w_fstat): New static functions, with same interface as w_stat. (stat_to_list, stat_impl): New static functions. (statp, statl): New static functions. (statf): Function removed, name re-used for new static function. (sysif_init): stat intrinsic registered to statp function, not statf. lstat and fstat intrinsics registered to statl and statf. * txr.1: Documented lstat and fstat.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog17
1 files changed, 17 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 7a734328..8c6be763 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,20 @@
+2015-08-02 Kaz Kylheku <kaz@kylheku.com>
+
+ Support lstat and fstat.
+
+ * stream.h (statf): Declaration removed.
+
+ * sysif.c (w_stat): Function takes val instead of const wchar_t *
+ as leftmost argument.
+ (w_lstat, w_fstat): New static functions, with same interface as w_stat.
+ (stat_to_list, stat_impl): New static functions.
+ (statp, statl): New static functions.
+ (statf): Function removed, name re-used for new static function.
+ (sysif_init): stat intrinsic registered to statp function, not statf.
+ lstat and fstat intrinsics registered to statl and statf.
+
+ * txr.1: Documented lstat and fstat.
+
2015-08-01 Kaz Kylheku <kaz@kylheku.com>
Pass pretty flag to cobj print operation.