diff options
| author | Andrey Listopadov <andreyorst@gmail.com> | 2021-07-17 17:49:16 +0300 |
|---|---|---|
| committer | Andrey Listopadov <andreyorst@gmail.com> | 2021-07-17 18:08:02 +0300 |
| commit | cc82dd57c87e19439f851c2bfd66834f70276bb8 (patch) | |
| tree | 6aafcb943cd9ef3e3b47061f4d917f4d7ec0ab5a /Makefile | |
| parent | e8351c4a47ea0472151b3f5a5ac06a70f86f0d02 (diff) | |
fix: style changes, and documentation fixes
- provide defn as an alias to fn* and change fn* to defn in all files
- fix doc for eq function
- fix and generate doc for loop macro
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -29,7 +29,7 @@ distclean: clean test: $(FNLTESTS) @echo "Testing on" $$($(LUA) -v) >&2 - @$(foreach test,$?,$(FENNEL) --lua $(LUA) $(test) || exit;) + @$(foreach test,$?,$(FENNEL) --no-compiler-sandbox --lua $(LUA) $(test) || exit;) ifdef FENNELDOC @fenneldoc --mode check $(FNLDOCS) || exit else |