diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2020-01-31 23:44:53 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2020-01-31 23:44:53 -0800 |
commit | c176ee050e0ce0010802154ff3e588aab3a67ae3 (patch) | |
tree | 557d268670a4e5f7bd96ce6e6e49c54fa5bd9019 /lisplib.c | |
parent | 7e2addeabe1056da2a94ec8f6302c13bf916a1dc (diff) | |
download | txr-c176ee050e0ce0010802154ff3e588aab3a67ae3.tar.gz txr-c176ee050e0ce0010802154ff3e588aab3a67ae3.tar.bz2 txr-c176ee050e0ce0010802154ff3e588aab3a67ae3.zip |
New functions chmod-rec and chown-rec.
* lisplib.c (copy_file_set_entries): Add chown-rec and
chmod-rec to list of symbols that trigger auto-load of
copy-file.tl.
* share/txr/stdlib/copy-file.tl (chmod-rec, chown-rec): Neew
functions.
* txr.1: Documented.
Diffstat (limited to 'lisplib.c')
-rw-r--r-- | lisplib.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -813,6 +813,7 @@ static val copy_file_set_entries(val dlt, val fun) val name[] = { lit("copy-path-opts"), lit("copy-file"), lit("copy-files"), lit("copy-path-rec"), lit("remove-path-rec"), + lit("chown-rec"), lit("chmod-rec"), nil }; set_dlt_entries(dlt, name, fun); |