From 02903cebbffe96132128e56f8504f9a69f12410a Mon Sep 17 00:00:00 2001 From: Tomas Volf <~@wolfsden.cz> Date: Tue, 16 Jan 2024 16:43:18 +0100 Subject: .dir-locals.el: Add geiser-insert-actual-lambda. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- .dir-locals.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 . -- cgit v1.2.3