Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
width iso. literal
  • Loading branch information
erlend-aasland committed Aug 7, 2023
commit 68c1b1ed49deef52a22f900f6beb088567d1d70c
2 changes: 1 addition & 1 deletion Tools/clinic/clinic.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ def wrapped_c_string_literal(
add('"')
return out()
sz += len(word) + 1
if sz > 72:
if sz > width:
break
add(word)
del words[0]
Expand Down