# HG changeset patch # User Arne Babenhauserheide # Date 1722374839 -7200 # Tue Jul 30 23:27:19 2024 +0200 # Node ID b9f2fb2b43337403418eae9c69b66e4e413c0879 # Parent 04a36078156f390d8b7a0ea2128a000307ea1de4 fix: wisp.py missed escaping \ — thanks to leah2! (scheme IRC) diff --git a/wisp.py b/wisp.py --- 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 `(