summaryrefslogtreecommitdiff
path: root/lib9p/protogen/cutil.py
diff options
context:
space:
mode:
authorLuke T. Shumaker <lukeshu@lukeshu.com>2025-03-25 13:03:34 -0600
committerLuke T. Shumaker <lukeshu@lukeshu.com>2025-03-25 13:03:34 -0600
commit50fb8395526066d20e143b49a12c0f6aeddee1ac (patch)
tree23a2ecef774a66eca64ccac067b7d252bb0487d4 /lib9p/protogen/cutil.py
parentc275032964505d3ceecf3cc0ce21b059ede930dd (diff)
parent5478200c1560ebbb1ac6dcf8d96cf94c3fa3693e (diff)
Merge branch 'lukeshu/9p-gen-cleanup'
Diffstat (limited to 'lib9p/protogen/cutil.py')
-rw-r--r--lib9p/protogen/cutil.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib9p/protogen/cutil.py b/lib9p/protogen/cutil.py
index a78cd17..8df6db9 100644
--- a/lib9p/protogen/cutil.py
+++ b/lib9p/protogen/cutil.py
@@ -31,7 +31,7 @@ def macro(full: str) -> str:
lines = [l.rstrip() for l in full.split("\n")]
width = max(len(l.expandtabs(tabsize=8)) for l in lines[:-1])
lines = [tab_ljust(l, width) for l in lines]
- return " \\\n".join(lines).rstrip() + "\n"
+ return " \\\n".join(lines).rstrip() + "\n"
_ifdef_stack: list[str | None] = []