aboutsummaryrefslogtreecommitdiff
path: root/.dir-locals.el
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2020-10-03 21:32:46 +0100
committerChristopher Baines <mail@cbaines.net>2020-10-03 21:32:46 +0100
commite2e55c69de1eceb77998ab059a943711ef7779fd (patch)
tree48cb91e3130c3cc8718529cbc699fc09df0ea94d /.dir-locals.el
parent18b6dd9e6d4463e47ce457187d956c1c3dd8dd08 (diff)
downloaddata-service-e2e55c69de1eceb77998ab059a943711ef7779fd.tar
data-service-e2e55c69de1eceb77998ab059a943711ef7779fd.tar.gz
Rework the shortlived PostgreSQL specific connection channel
In to a generic thing more like (ice-9 futures). Including copying some bits from the (ice-9 threads) module and adapting them to work with this fibers approach, rather than futures. The advantage being that using fibers channels doesn't block the threads being used by fibers, whereas futures would.
Diffstat (limited to '.dir-locals.el')
-rw-r--r--.dir-locals.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/.dir-locals.el b/.dir-locals.el
index 5d052d8..f7cbfb5 100644
--- a/.dir-locals.el
+++ b/.dir-locals.el
@@ -7,7 +7,9 @@
(scheme-mode
(indent-tabs-mode)
(eval put 'with-time-logging 'scheme-indent-function 1)
- (eval put 'make-parameter 'scheme-indent-function 1))
+ (eval put 'make-parameter 'scheme-indent-function 1)
+ (eval put 'letpar 'scheme-indent-function 1)
+ (eval put 'letpar& 'scheme-indent-function 1))
(texinfo-mode
(indent-tabs-mode)
(fill-column . 72)))