diff options
| author | Andrey Orst <andreyorst@gmail.com> | 2020-11-13 22:54:12 +0300 |
|---|---|---|
| committer | Andrey Orst <andreyorst@gmail.com> | 2020-11-13 22:54:12 +0300 |
| commit | 1b309ac016d806d2f9b44540ed5020f5c60c4256 (patch) | |
| tree | fca18ab2e0153a1462da473cd2fe5c9cc0de6a69 /.dir-locals.el | |
| parent | 8493fa29b1848bf93e899e8930c6e8c1c723eece (diff) | |
fix(core): refactoring
- Rename `fn*` to `defn`, `fn&` to `fn+`.
- Do not use `fn+` in the core at all, provide it for convenience.
- Fix bug in `filter` due to incorrect `cons` implementation.
- Update `seq` and `eq` functions in macros
Diffstat (limited to '.dir-locals.el')
| -rw-r--r-- | .dir-locals.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.dir-locals.el b/.dir-locals.el index 2f24cfa..4db22b7 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -10,5 +10,5 @@ (eval . (put 'if-some 'fennel-indent-function 1)) (eval . (put 'when-let 'fennel-indent-function 1)) (eval . (put 'if-let 'fennel-indent-function 1)) - (eval . (put 'fn& 'fennel-indent-function 'defun)) - (eval . (put 'fn* 'fennel-indent-function 'defun))))) + (eval . (put 'fn+ 'fennel-indent-function 'defun)) + (eval . (put 'defn 'fennel-indent-function 'defun))))) |