diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-03-25 13:03:34 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-03-25 13:03:34 -0600 |
commit | 50fb8395526066d20e143b49a12c0f6aeddee1ac (patch) | |
tree | 23a2ecef774a66eca64ccac067b7d252bb0487d4 /lib9p/protogen/cutil.py | |
parent | c275032964505d3ceecf3cc0ce21b059ede930dd (diff) | |
parent | 5478200c1560ebbb1ac6dcf8d96cf94c3fa3693e (diff) |
Merge branch 'lukeshu/9p-gen-cleanup'
Diffstat (limited to 'lib9p/protogen/cutil.py')
-rw-r--r-- | lib9p/protogen/cutil.py | 2 |
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] = [] |