gbranden pushed a commit to branch master
in repository groff.

commit 8057333d9f4c8182a75b5c21a9d704954eeca81d
Author: G. Branden Robinson <[email protected]>
AuthorDate: Fri Dec 26 01:38:32 2025 -0600

    src/roff/troff/input.cpp: Tweak annotations.
    
    Comment function declarations' formal argument names as a compromise
    with the Stroustrup-style C++ used in most of groff.  Sync them with
    their corresponding definitions.
---
 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 ed7893978..183633534 100644
--- a/src/roff/troff/input.cpp
+++ b/src/roff/troff/input.cpp
@@ -173,14 +173,14 @@ static void interpolate_environment_variable(symbol);
 static symbol composite_glyph_name(symbol);
 static void interpolate_positional_parameter(symbol);
 static request_or_macro *lookup_request(symbol);
-static bool read_delimited_measurement(units *,
-       unsigned char /* scaling unit */);
-static bool read_delimited_measurement(units *,
-       unsigned char /* scaling unit */, units /* previous value */);
+static bool read_delimited_measurement(units * /* n */,
+    unsigned char /* si */);
+static bool read_delimited_measurement(units * /* n */,
+    unsigned char /* si */, units /* prev_value */);
 static symbol read_input_until_terminator(bool /* required */,
-                                         unsigned char /* end char */);
-static bool read_line_rule_expression(units *res, unsigned char si,
-                                     charinfo **cp);
+    unsigned char /* end_char */);
+static bool read_line_rule_expression(units * /* res */,
+    unsigned char /* si */, charinfo ** /* cp */);
 static bool read_size(int *);
 static symbol read_delimited_identifier();
 static void init_registers();

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

Reply via email to