Browse Source

Make warning message on missing init file more verbose.

pre-master-46
Holger Vogt 4 years ago
parent
commit
360b7dc7ed
  1. 9
      src/frontend/cpitf.c

9
src/frontend/cpitf.c

@ -317,8 +317,13 @@ ft_cpinit(void)
}
}
if (!found)
fprintf(cp_err, "Note: can't find init file.\n");
if (!found) {
#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();

Loading…
Cancel
Save