gbranden pushed a commit to branch master
in repository groff.

commit c1adcc755f2e5f38e58aa506c67aab37bb30fa37
Author: G. Branden Robinson <[email protected]>
AuthorDate: Wed Apr 1 05:52:14 2026 -0500

    src/roff/troff/dictionary.h: Fix code style nit.
    
    * src/roff/troff/dictionary.h: Drop argument names from function
      declaration, better aligning code style with groff's Stroustrup-ish
      conventions.
---
 src/roff/troff/dictionary.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/roff/troff/dictionary.h b/src/roff/troff/dictionary.h
index b6e726574..5e2c12fdd 100644
--- a/src/roff/troff/dictionary.h
+++ b/src/roff/troff/dictionary.h
@@ -45,7 +45,7 @@ class dictionary {
   void rehash(int);
 public:
   dictionary(int);
-  void *lookup(symbol s, void *v = 0 /* nullptr */);
+  void *lookup(symbol, void * = 0 /* nullptr */);
   void *lookup(const char *);
   void *remove(symbol);
   friend class dictionary_iterator;

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

Reply via email to