Commit 5cdaf1bc2 (v1.4.18b) missed updating --help output.

* src/m4.c (usage): Output correct -H default.
---
 src/m4.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/m4.c b/src/m4.c
index 1493a336..8f9f6d2e 100644
--- a/src/m4.c
+++ b/src/m4.c
@@ -256,9 +256,9 @@ Preprocessor features:\n\
 Limits control:\n\
   -g, --gnu                    override -G to re-enable GNU extensions\n\
   -G, --traditional            suppress all GNU extensions\n\
-  -H, --hashsize=PRIME         set symbol lookup hash table size [509]\n\
+  -H, --hashsize=PRIME         set symbol lookup hash table size [%d]\n\
   -L, --nesting-limit=NUMBER   change nesting limit, 0 for unlimited [%d]\n\
-"), nesting_limit);
+"), HASHMAX, nesting_limit);
       puts ("");
       fputs (_("\
 Frozen state files:\n\
-- 
2.49.0


_______________________________________________
M4-patches mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/m4-patches

Reply via email to