From d263f2cffe49eb904770c57c744e5759e90ed625 Mon Sep 17 00:00:00 2001 From: Alex Foster <123afoster@gmail.com> Date: Sun, 10 Nov 2024 00:08:51 -0800 Subject: [PATCH] reduce verbosity of $ var tests --- test/testidents.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/testidents.cpp b/test/testidents.cpp index bfc36c77..c42fc721 100644 --- a/test/testidents.cpp +++ b/test/testidents.cpp @@ -131,12 +131,12 @@ static void tryexecother() { if(val.type > Id_Command) { - printf("$ %s\n", key.c_str()); + printf("%s, ", key.c_str()); execute(val.name); count++; } } - printf("===============================================================\n"); + printf("\n===============================================================\n"); printf("%u idents executed\n", count); printf("===============================================================\n"); }