From 7436ad4c32e52e0af0cbd6c4cca144def1c8536d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Tue, 30 Jul 2024 21:20:04 +0200
Subject: guile-wisp: update to 1.0.12.

---
 srcpkgs/guile-wisp/patches/escape.patch | 11 +++++++++++
 1 file changed, 11 insertions(+)
 create mode 100644 srcpkgs/guile-wisp/patches/escape.patch

(limited to 'srcpkgs/guile-wisp/patches')

diff --git a/srcpkgs/guile-wisp/patches/escape.patch b/srcpkgs/guile-wisp/patches/escape.patch
new file mode 100644
index 00000000000..b70da5f4e40
--- /dev/null
+++ b/srcpkgs/guile-wisp/patches/escape.patch
@@ -0,0 +1,11 @@
+--- a/wisp.py
++++ b/wisp.py
+@@ -101,7 +101,7 @@
+                 line = (i)*" " + line[i:]
+         # \_ escapes the underscore at the beginning of a line, so you
+         # can use identifiers which only consist of underscores.
+-        elif line.startswith("\_"):
++        elif line.startswith("\\_"):
+             line = "_" + line[2:]
+             
+         #: prefix to go around the outer bracket: '(, ,( or `(
-- 
cgit v1.2.3