Make warning message on missing init file more verbose.

This commit is contained in:
Holger Vogt 2022-06-22 22:02:09 +02:00 committed by DSPOM
parent 4e27683922
commit 6d564e77c0
1 changed files with 7 additions and 2 deletions

View File

@ -317,8 +317,13 @@ ft_cpinit(void)
} }
} }
if (!found) if (!found) {
fprintf(cp_err, "Note: can't find init file.\n"); #if defined TCL_MODULE
fprintf(cp_err, "Note: can't find the initialization file tclspinit.\n");
#else
fprintf(cp_err, "Note: can't find the initialization file spinit.\n");
#endif
}
} }
tcap_init(); tcap_init();