[bug#68511,v3] .dir-locals.el: Add geiser-insert-actual-lambda.

Message ID 8d64727094df787270181f28cf2675828c80d95e.1746205031.git.~@wolfsden.cz
State New
Headers
Series [bug#68511,v3] .dir-locals.el: Add geiser-insert-actual-lambda. |

Commit Message

Tomas Volf May 2, 2025, 4:57 p.m. UTC
  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.

Change-Id: Iccbd4a8df194d60b96b33879c342cfeb224bcfbb
---
 .dir-locals.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
  

Patch

diff --git a/.dir-locals.el b/.dir-locals.el
index 69a5d8065e..ab440ac4a7 100644
--- a/.dir-locals.el
+++ b/.dir-locals.el
@@ -85,7 +85,8 @@ 
      ;; Geiser
      ;; This allows automatically setting the `geiser-guile-load-path'
      ;; variable when using various Guix checkouts (e.g., via git worktrees).
-     (geiser-repl-per-project-p . t)))
+     (geiser-repl-per-project-p . t)
+     (geiser-insert-actual-lambda . nil)))
 
  (c-mode          . ((c-file-style . "gnu")))
  (scheme-mode