diff options
author | Paul A. Patience <paul@apatience.com> | 2021-07-09 21:09:24 -0400 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-07-09 23:23:42 -0700 |
commit | 8d8fee2e506806d9c117b17432ef3a5ec0d6f457 (patch) | |
tree | 9b4ad67749ed0d022dbb9b4fd9259e7a6440fa93 /stdlib/compiler.tl | |
parent | 8e2de972c6935434005575563084195ef67e88e1 (diff) | |
download | txr-8d8fee2e506806d9c117b17432ef3a5ec0d6f457.tar.gz txr-8d8fee2e506806d9c117b17432ef3a5ec0d6f457.tar.bz2 txr-8d8fee2e506806d9c117b17432ef3a5ec0d6f457.zip |
compiler: use short-suffix.
* stdlib/compiler.tl (open-compile-streams): Replace usage of
%file-suff-rx% with a call to short-suffix.
Streamline (subjectively) the obtention of ip-nosuff. Replace
calls to ends-with with a casequal on the suffix. Actually make
use of ip-nosuff.
(%file-suff-rx%): Delete (now unused) variable.
Diffstat (limited to 'stdlib/compiler.tl')
-rw-r--r-- | stdlib/compiler.tl | 25 |
1 files changed, 10 insertions, 15 deletions
diff --git a/stdlib/compiler.tl b/stdlib/compiler.tl index 8e053061..deb0397f 100644 --- a/stdlib/compiler.tl +++ b/stdlib/compiler.tl @@ -2150,8 +2150,6 @@ (whenlet ((fun (symbol-function sym))) (param-check form nargs (get-param-info sym)))))) -(defvarl %file-suff-rx% #/[.][^\\\/.]+/) - (defvar *emit*) (defvar *eval*) @@ -2169,23 +2167,20 @@ (defun open-compile-streams (in-path out-path test-fn) (let* ((parent (or *load-path* "")) (sep [path-sep-chars 0]) + (in-path (trim-right #/[\/\\]+/ in-path)) (in-path (if (and (pure-rel-path-p in-path) (not (empty parent))) `@(dir-name parent)@sep@{in-path}` in-path)) - (rsuff (r$ %file-suff-rx% in-path)) - (suff (if rsuff [in-path rsuff])) - (ip-nosuff (if rsuff [in-path 0..(from rsuff)] in-path)) + (suff (short-suffix in-path)) + (ip-nosuff (trim-right in-path suff)) in-stream out-stream) - (cond - ((ends-with ".txr" in-path) - (error "~s: cannot compile TXR files" 'compile-file)) - ((ends-with ".tl" in-path) - (set in-stream (ignerr (open-file in-path)) - out-path (or out-path `@{in-path [0..-3]}.tlo`))) - (t - (set in-stream (or (ignerr (open-file `@{in-path}.tl`)) - (ignerr (open-file in-path))) - out-path (or out-path `@{in-path}.tlo`)))) + (casequal suff + (".txr" (error "~s: cannot compile TXR files" 'compile-file)) + (".tl" (set in-stream (ignerr (open-file in-path)) + out-path (or out-path `@{ip-nosuff}.tlo`))) + (t (set in-stream (or (ignerr (open-file `@{in-path}.tl`)) + (ignerr (open-file in-path))) + out-path (or out-path `@{in-path}.tlo`)))) (unless in-stream (error "~s: unable to open input file ~s" 'compile-file in-path)) |