aboutsummaryrefslogtreecommitdiffstats
path: root/oni/gexp.scm
diff options
context:
space:
mode:
authorGravatar Tom Willemse2023-06-20 23:06:25 -0700
committerGravatar Tom Willemse2023-06-20 23:06:25 -0700
commit8e2f5eed4a253b313d7503790ecc6450e8dcfd15 (patch)
tree4096a92e64b444f98f3c65efce8a1fdf5709fb89 /oni/gexp.scm
parentb775263a344a12c1dadc820cb991e3f50086b209 (diff)
downloadnew-dotfiles-8e2f5eed4a253b313d7503790ecc6450e8dcfd15.tar.gz
new-dotfiles-8e2f5eed4a253b313d7503790ecc6450e8dcfd15.zip
Replace all ‘lambda’ occurrences with ‘λ’
Diffstat (limited to 'oni/gexp.scm')
-rw-r--r--oni/gexp.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/oni/gexp.scm b/oni/gexp.scm
index 388c7a2..b0d9258 100644
--- a/oni/gexp.scm
+++ b/oni/gexp.scm
@@ -12,7 +12,7 @@ executable bit set. TEXT is a sequence of strings and file-like objects, as in:
(define build
(let ((text (if guile (drop text 2) text)))
(gexp (call-with-output-file (ungexp output "out")
- (lambda (port)
+ (λ (port)
(set-port-encoding! port "UTF-8")
(display (string-append (ungexp-splicing text)) port)
(chmod port #o555))))))