gbranden pushed a commit to branch master
in repository groff.

commit 108bfa0440b25d37ea94cd50a96bc297aace0f63
Author: G. Branden Robinson <[email protected]>
AuthorDate: Mon Apr 13 11:17:53 2026 -0500

    src/roff/troff/node.cpp: Fix cosmetic code nit.
    
    * Indent by 4 spaces, not 2, when continuing a line and there is no
      parenthetical scope to align with.
    * Indent continued line to align with parenthetical scope where one
      exists.
---
 src/roff/troff/node.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/roff/troff/node.cpp b/src/roff/troff/node.cpp
index 8259e978f..ddf32ebbc 100644
--- a/src/roff/troff/node.cpp
+++ b/src/roff/troff/node.cpp
@@ -6841,14 +6841,14 @@ static void mount_font_at_position_request() // .fp
       error("font mounting position %1 is negative", n);
     else {
       symbol internal_name
-       = read_identifier(true /* want_diagnostic */);
+         = read_identifier(true /* want_diagnostic */);
       if (!internal_name.is_null()) {
        symbol filename = read_long_identifier();
        if (!mount_font_at_position(internal_name, n, filename)) {
          string msg;
          if (filename != 0 /* nullptr */)
-           msg += string(" from file '") + filename.contents()
-             + string("'");
+           msg += (string(" from file '") + filename.contents()
+                   + string("'"));
          msg += '\0';
          error("cannot load font description '%1'%2 for mounting",
                internal_name.contents(), msg.contents());

_______________________________________________
groff-commit mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/groff-commit

Reply via email to