about summary refs log tree commit diff stats
path: root/src/command/cmd_funcs.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/command/cmd_funcs.c')
-rw-r--r--src/command/cmd_funcs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/command/cmd_funcs.c b/src/command/cmd_funcs.c
index 0117029b..7d4f0064 100644
--- a/src/command/cmd_funcs.c
+++ b/src/command/cmd_funcs.c
@@ -1479,9 +1479,9 @@ _cmd_help_cmd_list(const char *const tag)
     cons_show("");
     ProfWin *console = wins_get_console();
     if (tag) {
-        win_printf(console, '-', 0, NULL, 0, THEME_WHITE_BOLD, "", "%s commands", tag);
+        win_printf_line(console, THEME_WHITE_BOLD, "%s commands", tag);
     } else {
-        win_printf(console, '-', 0, NULL, 0, THEME_WHITE_BOLD, "", "All commands");
+        win_printf_line(console, THEME_WHITE_BOLD, "All commands");
     }
 
     GList *ordered_commands = NULL;