From e2e55c69de1eceb77998ab059a943711ef7779fd Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Sat, 3 Oct 2020 21:32:46 +0100 Subject: 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. --- .dir-locals.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to '.dir-locals.el') 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))) -- cgit v1.2.3