diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-05-03 06:51:19 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-05-03 06:51:19 -0700 |
commit | 8be2ee867659dc8b6c47d4fb6694aceaf10bfd7c (patch) | |
tree | 728eb3bfac974743a7fa428a447195cbf0fc54d2 /lisplib.c | |
parent | de3082638e204aae1fa63a390967cbef082304bb (diff) | |
download | txr-8be2ee867659dc8b6c47d4fb6694aceaf10bfd7c.tar.gz txr-8be2ee867659dc8b6c47d4fb6694aceaf10bfd7c.tar.bz2 txr-8be2ee867659dc8b6c47d4fb6694aceaf10bfd7c.zip |
New function: rel-path.
* lisplib.c (copy_file_set_entries): Add rel-path as autoload
trigger for copy-file module.
* share/txr/stdlib/copy-file.tl (rel-path): New function.
* tests/018/rel-path.tl: New file.
* txr.1: Documented.
* share/txr/stdlib/doc-syms.tl: Updated.
Diffstat (limited to 'lisplib.c')
-rw-r--r-- | lisplib.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -819,7 +819,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"), lit("touch"), + lit("chown-rec"), lit("chmod-rec"), lit("touch"), lit("rel-path"), nil }; set_dlt_entries(dlt, name, fun); |