diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-06-20 17:10:14 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-06-20 17:10:14 -0700 |
commit | a93ca48fd3bad30132dff3df62637a6d8dcf28e2 (patch) | |
tree | 2d7c698f07e2143d0bd8d4c6ddc5c8a81d6952e7 /txr.1 | |
parent | b08b6b218c1f69baa927f1e367742045eea454af (diff) | |
download | txr-a93ca48fd3bad30132dff3df62637a6d8dcf28e2.tar.gz txr-a93ca48fd3bad30132dff3df62637a6d8dcf28e2.tar.bz2 txr-a93ca48fd3bad30132dff3df62637a6d8dcf28e2.zip |
glob: support sequence of patterns argument.
* glob.c (glob_wrap): Negate the GLOB_WRAP flag should it be
present on input. If the input is a string, process it much
like before. Otherwise loop over the pattern and call globl
multiple times, adding the GLOB_APPEND flag for the second and
subsequent times, and breaking out of the loop if a control
transfer is detected.
* txr.1: Document.
Diffstat (limited to 'txr.1')
-rw-r--r-- | txr.1 | 38 |
1 files changed, 32 insertions, 6 deletions
@@ -68125,19 +68125,29 @@ variables may not be available. They are extensions in the GNU C library implementation of .codn glob . +The standard +.code GLOB_APPEND +flag is not represented as a \*(TX variable. The +.code glob +function uses it internally when calling the C library function +multiple times, due to having been given multiple patterns. + .coNP Function @ glob .synb -.mets (glob < pattern >> [ flags <> [ errfun ]]) +.mets (glob >> { pattern | << patterns } >> [ flags <> [ errfun ]]) .syne .desc The .code glob function is a interface to the Unix function of the same name. -The -.meta pattern -argument must be a string, which holds a glob pattern: a pattern which +The first argument must either be a single +.metn pattern , +which is a string, or else sequence of strings specifying multiple +.metn patterns , +which are strings. +Each string is a glob pattern: a pattern which matches zero or more pathnames, similar to a regular expression. -The function tries to expand the pattern and return a list of strings +The function tries to expand the patterns and return a list of strings representing the matching pathnames in the file system. If there are no matches, then an empty list is returned. @@ -68149,7 +68159,8 @@ values of the variables .codn glob-err , .codn glob-mark , .code glob-nosort -and others. +and others. The +.code glob-append If the .meta errfun @@ -68183,6 +68194,21 @@ which surrounds the .code glob call. Such an attempt is detected and diagnosed by an exception. +If a sequence of +.meta patterns +is specified instead of a single pattern, +.code glob +makes multiple calls to the underlying C library function. The +second and subsequent calls specify the +.code GLOB_APPEND +flag to add the matches to the result. The following equivalence applies: + +.verb + (glob (list p0 p1 ...) f e) <--> (append (glob p0 f e) + (glob p1 f e) + ...) +.brev + Details of the semantics of the .code glob function, and the meaning of all the |