diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2020-04-15 11:40:23 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2020-04-15 11:40:23 -0700 |
commit | 9e9513462ff0f82854dbc9d3f8bd42cd2ed8766e (patch) | |
tree | 5d9977ff20d29f39d351254e3bb9930ef2144915 /lisplib.c | |
parent | 3f83104f00ce3818a3ea257be7ea8a7b4134e9be (diff) | |
download | txr-9e9513462ff0f82854dbc9d3f8bd42cd2ed8766e.tar.gz txr-9e9513462ff0f82854dbc9d3f8bd42cd2ed8766e.tar.bz2 txr-9e9513462ff0f82854dbc9d3f8bd42cd2ed8766e.zip |
New function: touch.
* lisplib.c (copy_file_set_entries): Register autoload for
touch.
* share/txr/stdlib/copy-file.tl (touch): New function.
* txr.1: Documented.
Diffstat (limited to 'lisplib.c')
-rw-r--r-- | lisplib.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -815,7 +815,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("chown-rec"), lit("chmod-rec"), lit("touch"), nil }; set_dlt_entries(dlt, name, fun); |