diff options
author | Sadie Powell <sadie@witchery.services> | 2025-04-22 17:36:26 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2025-04-22 18:16:31 +0100 |
commit | f3629598347763c984d03ee70235133c45dd9908 (patch) | |
tree | 9aa5190273a40005a4c730c06258b1ee3ae703c7 /modules/help.cpp | |
parent | f5a85c69d225edaed4e11eb4c2b27d66ebc5195e (diff) |
Fix splitting in the middle of some command names.
Diffstat (limited to 'modules/help.cpp')
-rw-r--r-- | modules/help.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/help.cpp b/modules/help.cpp index bd29c01e5..9fae2d43f 100644 --- a/modules/help.cpp +++ b/modules/help.cpp @@ -119,7 +119,7 @@ public: if (!groups.empty()) { source.Reply(" "); - source.Reply(_("Use the \002%s\032ALL\002 command to list all commands and their descriptions."), source_command.c_str()); + source.Reply(_("Use the \002%s\032ALL\002 command to list all commands and their descriptions."), source.command.nobreak().c_str()); } } else |