From ef0b45da1f0bc755fb024b7091f759fd6ea54e47 Mon Sep 17 00:00:00 2001 From: Thomas Adam Date: Sun, 18 Sep 2022 09:50:40 +0100 Subject: [PATCH] modconf: disable debug --- fvwm/modconf.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fvwm/modconf.c b/fvwm/modconf.c index 719e63368..b50924d4d 100644 --- a/fvwm/modconf.c +++ b/fvwm/modconf.c @@ -94,7 +94,7 @@ void ModuleConfig(char *action) { return; } -#if 1 /*!!!*/ +#if 0 /*!!!*/ fprintf(stderr, "%s: action '%s'\n", __func__, (action) ? action : "(nil)"); #endif end = strlen(action) - 1; @@ -150,12 +150,12 @@ static struct moduleInfoList *AddToModList(char *tline) { /* migo (01-Sep-2000): construct an old-style config line */ char *conf_start = alias_end + 1; -#if 1 /*!!!*/ +#if 0 /*!!!*/ fprintf(stderr, "%s: conf_start '%s'\n", __func__, conf_start); #endif while (isspace(*conf_start)) conf_start++; *alias_end = '\0'; -#if 1 /*!!!*/ +#if 0 /*!!!*/ fprintf(stderr, "%s: alias '%s'\n", __func__, tline ? tline : "(nil)"); fprintf(stderr, "%s: conf_start '%s'\n", __func__, conf_start); #endif @@ -167,7 +167,7 @@ fprintf(stderr, "%s: conf_start '%s'\n", __func__, conf_start); exc = exc_create_null_context(); this->data = expand_vars(rline, NULL, False, True, NULL, exc); -#if 1 /*!!!*/ +#if 0 /*!!!*/ fprintf(stderr, "%s: mldata '%s', mlaliaslen %d\n", __func__, this->data, this->alias_len); #endif exc_destroy_context(exc);