summaryrefslogtreecommitdiffstats
path: root/ftw.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2016-04-22 06:50:55 -0700
committerKaz Kylheku <kaz@kylheku.com>2016-04-22 06:50:55 -0700
commit51cdc93b40dbebd65b14e931385cb3bd354a8082 (patch)
tree2d3c7f363b1be5966e0a92d2c2a4b23075dcddcc /ftw.c
parentb2735927060a866ff863370a20f00f3a5e73ef38 (diff)
downloadtxr-51cdc93b40dbebd65b14e931385cb3bd354a8082.tar.gz
txr-51cdc93b40dbebd65b14e931385cb3bd354a8082.tar.bz2
txr-51cdc93b40dbebd65b14e931385cb3bd354a8082.zip
Support list of paths in ftw.
* ftw.c (ftw_wrap): Handle case when dirpath is a list, by recursion. * txr.1: Documented.
Diffstat (limited to 'ftw.c')
-rw-r--r--ftw.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/ftw.c b/ftw.c
index 6128a652..c906d6a3 100644
--- a/ftw.c
+++ b/ftw.c
@@ -91,6 +91,18 @@ val ftw_wrap(val dirpath, val fn, val flags_in, val nopenfd_in)
if (s_callback) {
uw_throwf(error_s, lit("ftw: cannot be re-entered from "
"ftw callback"), nao);
+ } else if (dirpath == nil) {
+ return t;
+ } else if (consp(dirpath)) {
+ uses_or2;
+ val ret = nil;
+ for (; dirpath; dirpath = cdr(dirpath)) {
+ val res = ftw_wrap(car(dirpath), fn, flags_in, nopenfd_in);
+ if (res != t && res != nil)
+ return res;
+ ret = or2(ret, res);
+ }
+ return ret;
} else {
int nopenfd = c_num(default_arg(nopenfd_in, num_fast(20)));
int flags = c_num(default_arg(flags_in, zero));