gbranden pushed a commit to branch master
in repository groff.
commit 8708a43e8c9bc37f4f14095f66b8f108b1d3fd10
Author: G. Branden Robinson <[email protected]>
AuthorDate: Thu Sep 26 23:46:16 2024 -0500
src/roff/troff/input.cpp: Restore indentation.
...omitted in previous commit.
---
src/roff/troff/input.cpp | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/src/roff/troff/input.cpp b/src/roff/troff/input.cpp
index 71d49b520..d24cfb5a9 100644
--- a/src/roff/troff/input.cpp
+++ b/src/roff/troff/input.cpp
@@ -7510,13 +7510,13 @@ void do_write_request(int newline)
return;
}
if (!tok.is_newline() && !tok.is_eof()) {
- int c;
- while ((c = get_copy(0)) == ' ')
- ;
- if (c == '"')
- c = get_copy(0);
- for (; c != '\n' && c != EOF; c = get_copy(0))
- fputs(asciify(c), fp);
+ int c;
+ while ((c = get_copy(0)) == ' ')
+ ;
+ if (c == '"')
+ c = get_copy(0);
+ for (; c != '\n' && c != EOF; c = get_copy(0))
+ fputs(asciify(c), fp);
}
if (newline)
fputc('\n', fp);
_______________________________________________
Groff-commit mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/groff-commit