diff options
| author | Andrey Orst <andreyorst@gmail.com> | 2020-10-27 22:11:27 +0300 |
|---|---|---|
| committer | Andrey Orst <andreyorst@gmail.com> | 2020-10-27 22:19:43 +0300 |
| commit | 1445ceaa9d13a9340a65624278f8df27dcf3c6fe (patch) | |
| tree | ce4c897e018e1a3c89c99ae03593e05c6857261f /.dir-locals.el | |
| parent | 4288f1f60c7445dd42e2e93b3d5cf5700d3dcec8 (diff) | |
feature(core): implement auto namespacing for fn* and create fn&
Redefining everything in terms of fn* and fn* breaks coverage.sh
Diffstat (limited to '.dir-locals.el')
| -rw-r--r-- | .dir-locals.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.dir-locals.el b/.dir-locals.el index ba39086..7c3e0a2 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -7,4 +7,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))))) |