summaryrefslogtreecommitdiff
path: root/cljlib.fnl
diff options
context:
space:
mode:
authorAndrey Listopadov <andreyorst@gmail.com>2023-08-28 22:13:21 +0300
committerAndrey Listopadov <andreyorst@gmail.com>2023-08-28 22:13:21 +0300
commitae389b9480d46091bfd9b6843aebdc48aa577c16 (patch)
treed484cbde3aa9394b8134d40bd55a5bdaaf9bdb17 /cljlib.fnl
parent3332e86562d9381c5fcf6a6f5205240f5e9d4f39 (diff)
Update fennel-test, and add test runner script
Diffstat (limited to 'cljlib.fnl')
-rw-r--r--cljlib.fnl4
1 files changed, 2 insertions, 2 deletions
diff --git a/cljlib.fnl b/cljlib.fnl
index de753ad..29be35e 100644
--- a/cljlib.fnl
+++ b/cljlib.fnl
@@ -675,6 +675,7 @@ accepts sorting function `f`. "
(eval-compiler
(local lib-name (or :lazy-seq))
+
(fn lazy-seq [...]
"Create lazy sequence from the result provided by running the `body'.
Delays the execution until the resulting sequence is consumed.
@@ -1875,8 +1876,7 @@ called. Early termination is supported via `reduced`.
;;; cljlib
(eval-compiler
- (local lib-name
- (or ... :cljlib))
+ (local lib-name (or ... :cljlib))
(fn string? [x]
(= :string (type x)))