[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[groff] 36/37: src/roff/troff/input.cpp: Restore indentation.
From: |
G. Branden Robinson |
Subject: |
[groff] 36/37: src/roff/troff/input.cpp: Restore indentation. |
Date: |
Fri, 27 Sep 2024 01:18:15 -0400 (EDT) |
gbranden pushed a commit to branch master
in repository groff.
commit 8708a43e8c9bc37f4f14095f66b8f108b1d3fd10
Author: G. Branden Robinson <g.branden.robinson@gmail.com>
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);
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [groff] 36/37: src/roff/troff/input.cpp: Restore indentation.,
G. Branden Robinson <=