Don't depend on a standalone C preprocessor

And get rid of the sed insanity.
This commit is contained in:
2022-09-12 21:19:55 +02:00
parent a167ae40b3
commit 5cda848f94
4 changed files with 127 additions and 22 deletions

View File

@@ -4168,9 +4168,8 @@ help_tab_on_action (enum action action)
if (action == ACTION_DESCRIBE)
{
char *name = xstrdup (g_action_names[a]);
cstr_transform (name, tolower_ascii);
app_show_message (xstrdup ("Configuration name: "), name);
app_show_message (xstrdup ("Configuration name: "),
xstrdup (g_action_names[a]));
return true;
}
if (action != ACTION_CHOOSE || a == ACTION_CHOOSE /* avoid recursion */)