1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

* load.c (scm_init_load_path): Remove support for SCHEME_LOAD_PATH.

This commit is contained in:
Jim Blandy 1999-08-20 05:13:01 +00:00
parent e8566222c2
commit 0b3b2958a5

View file

@ -203,18 +203,6 @@ scm_init_load_path ()
SCM_UNDEFINED);
#endif /* SCM_LIBRARY_DIR */
/* For compatibility, we still check this, but give a warning. */
{
char *p = getenv ("SCHEME_LOAD_PATH");
if (p && p[0] != '\0')
{
fprintf (stderr, "guile: warning: SCHEME_LOAD_PATH variable will be"
" removed by Guile 1.4;\n"
" use GUILE_LOAD_PATH instead\n");
path = scm_internal_parse_path (p, path);
}
}
path = scm_internal_parse_path (getenv ("GUILE_LOAD_PATH"), path);
*scm_loc_load_path = path;