summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Volf <~@wolfsden.cz>2024-01-16 16:43:18 +0100
committerJonathan Brielmaier <jonathan.brielmaier@web.de>2024-01-17 22:19:48 +0100
commit02903cebbffe96132128e56f8504f9a69f12410a (patch)
treeb482be9f9576844f6f6be6fb13ab23156594bc65
parent01f18977c278ce09fc1f4912185aa898b212c95c (diff)
.dir-locals.el: Add geiser-insert-actual-lambda.
Guix project seems to prefer using lambda over λ. Express that preference for Geiser users by setting the geiser-insert-actual-lambda variable to nil. In the 0.31 version it will affect how geiser-insert-lambda works, making it insert lambda string (instead of the current λ. * .dir-locals.el (nil): Add geiser-insert-actual-lambda set to nil. Signed-off-by: Jonathan Brielmaier <jonathan.brielmaier@web.de>
-rw-r--r--.dir-locals.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/.dir-locals.el b/.dir-locals.el
index b54f600..4ab3cc8 100644
--- a/.dir-locals.el
+++ b/.dir-locals.el
@@ -1,4 +1,5 @@
;;; SPDX-License-Identifier: GPL-3.0-or-later
+;;; Copyright © 2024 Tomas Volf <~@wolfsden.cz>
;; Per-directory local variables for GNU Emacs 23 and later.
((nil
@@ -9,7 +10,9 @@
;; For use with 'bug-reference-prog-mode'.
(bug-reference-url-format . "https://gitlab.com/nonguix/nonguix/issues/%s")
(bug-reference-bug-regexp
- . "\\(#\\([0-9]+\\)\\)")))
+ . "\\(#\\([0-9]+\\)\\)")
+
+ (geiser-insert-actual-lambda . nil)))
(c-mode . ((c-file-style . "gnu")))
(scheme-mode
.