diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-05-04 06:58:35 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-05-04 06:58:35 -0700 |
commit | b074efb9c179238f7772ba7ea413afc5cb3133ba (patch) | |
tree | f3dc9a0eaa6f26d6ce59bb2c496a01c07694bcb9 /lisplib.c | |
parent | 06f99de5d9a429164c2ae959f16cd575e86400bb (diff) | |
download | txr-b074efb9c179238f7772ba7ea413afc5cb3133ba.tar.gz txr-b074efb9c179238f7772ba7ea413afc5cb3133ba.tar.bz2 txr-b074efb9c179238f7772ba7ea413afc5cb3133ba.zip |
Somew new path access testing functions.
* lisplib.c (path_test_set_entries): New elements in the list
for path-readable-to-me-p, path-read-writable-to-me-p, and
path-strictly-private-to-me-p.
* share/txr/stdlib/path-test.pl (sys:path-access): Test
bitwise combinations of permissions, so read+write
can be tested in one call.
(path-readable-to-me-p, path-read-writable-to-me-p,
path-strictly-private-to-me-p): New functions.
* txr.1: Documented.
Diffstat (limited to 'lisplib.c')
-rw-r--r-- | lisplib.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -155,8 +155,11 @@ static val path_test_set_entries(val dlt, val fun) lit("path-sock-p"), lit("path-pipe-p"), lit("path-pipe-p"), lit("path-setgid-p"), lit("path-setuid-p"), lit("path-sticky-p"), lit("path-mine-p"), lit("path-my-group-p"), lit("path-executable-to-me-p"), - lit("path-writable-to-me-p"), lit("path-newer"), lit("path-older"), + lit("path-writable-to-me-p"), lit("path-readable-to-me-p"), + lit("path-read-writable-to-me-p"), + lit("path-newer"), lit("path-older"), lit("path-same-object"), lit("path-private-to-me-p"), + lit("path-strictly-private-to-me-p"), nil }; |