Skip to content

Commit

Permalink
modconf: disable debug
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasAdam committed Sep 18, 2022
1 parent 224efc9 commit ef0b45d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions fvwm/modconf.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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
Expand All @@ -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);
Expand Down

0 comments on commit ef0b45d

Please sign in to comment.