diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-07-06 21:36:10 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-07-06 21:36:10 -0700 |
commit | 381ed03066f89602011d82892fe59d4dfff07e00 (patch) | |
tree | 0d205c001cf6dc891412efef3fef1bd80e5f3423 | |
parent | 77b5573f5eccbe802980bed3375981ec13144ad5 (diff) | |
download | txr-381ed03066f89602011d82892fe59d4dfff07e00.tar.gz txr-381ed03066f89602011d82892fe59d4dfff07e00.tar.bz2 txr-381ed03066f89602011d82892fe59d4dfff07e00.zip |
doc: base-name: nil suffix defaulting, improvement.
* txr.1: Document that the suffix argument to base-name may be
given as nil, which is the same as omitting it. Nearby wording
improved. Give rationale for this, and add examples.
-rw-r--r-- | txr.1 | 57 |
1 files changed, 52 insertions, 5 deletions
@@ -57354,12 +57354,59 @@ If the .meta suffix argument is given to .codn base-name , -then the returned base name is adjusted as follows. If the base -name ends in +it specifies a proper suffix to be removed from the returned base name. +First, the base name is calculated according to the foregoing rules. +Then, if .meta suffix -then a trimmed version of the base name is returned instead, with that suffix -removed. This adjustment isn't performed if it would result in an empty -string being returned. +matches a trailing portion of the base name, but not the entire base name, +it is removed from the base name. + +The +.meta suffix +parameter may be given a +.codn nil , +argument, which is treated exactly as if it were absent. +Note: this requirement allows for the following idiom +to work correctly even in cases when +.code p +has no suffix: + +.verb + ;; calculate base name of p with short suffix removed + (base-name p (short-suffix p)) + + ;; calculate base name of p with long suffix removed + (base-name p (long-suffix p)) +.brev + +.TP* Examples: + +.verb + (base-name "") -> "" + (base-name "/") -> "/" + (base-name ".") -> "." + (base-name "./") -> "." + (base-name "a") -> "a" + (base-name "/a") -> "a" + (base-name "/a/") -> "a" + (base-name "/a/b") -> "b" + (base-name "/a/b/") -> "b" + (base-name "/a/b///") -> "b" + + ;; with suffix + (base-name "" "") -> "" + (base-name "/" "/") -> "/" + (base-name "/" "") -> "/" + (base-name "." ".") -> "." + (base-name "." "") -> "." + (base-name "./" "/") -> "." + (base-name "a" "a") -> "a" + (base-name "a" "") -> "a" + (base-name "a.b" ".b") -> "a" + (base-name "a.b/" ".b") -> "a" + (base-name "a.b/" ".b/") -> "a.b" + (base-name "a.b/" "a.b") -> "a.b" +.brev .coNP Functions @ long-suffix and @ short-suffix .synb |