summaryrefslogtreecommitdiff
path: root/libguile/load.h
diff options
context:
space:
mode:
authorGreg J. Badros <gjb@cs.washington.edu>1999-12-14 17:41:59 +0000
committerGreg J. Badros <gjb@cs.washington.edu>1999-12-14 17:41:59 +0000
commite8e9b690b4f0394f958e0613bc2a4d5e8c524518 (patch)
tree9368d40ade081bf917992e8f6092cc6d95104963 /libguile/load.h
parent5623a9b4590618773e7969b512850cd92bfd79ed (diff)
downloadguile-e8e9b690b4f0394f958e0613bc2a4d5e8c524518.tar.gz
* backtrace.c (scm_set_print_params_x): Renamed from
set_print_params_x. * guile-doc-snarf.in: Use guile-snarf.awk, not guile-doc-snarf.awk. Pass the basename of $filename * load.h: Added prototypes for scm_sys_library_dir, scm_sys_site_dir. * load.c (scm_sys_library_dir, scm_sys_site_dir): Added these functions, and took out the old scm_library_dir, scm_site_dir, scm_pkgdata_dir. Now the primitives are %package-data-dir (already existed), %library-dir, and %site-dir. * debug.c: Use SCM_MISC_ERROR when possible instead of using s_scm_* in a scm_misc_error() call. * Makefile.am: Use guile-snarf.awk, not guile-doc-snarf.awk. Make using guile-doc-snarf send stdout to $@ to create the .x file like guile-snarf does. * guile-snarf.awk.in: Added.
Diffstat (limited to 'libguile/load.h')
-rw-r--r--libguile/load.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libguile/load.h b/libguile/load.h
index 5f1363083..68f21ab38 100644
--- a/libguile/load.h
+++ b/libguile/load.h
@@ -51,6 +51,8 @@ extern SCM scm_parse_path SCM_P ((SCM path, SCM tail));
extern void scm_init_load_path SCM_P ((void));
extern SCM scm_primitive_load SCM_P ((SCM filename));
extern SCM scm_sys_package_data_dir SCM_P ((void));
+extern SCM scm_sys_library_dir SCM_P ((void));
+extern SCM scm_sys_site_dir SCM_P ((void));
extern SCM scm_search_path SCM_P ((SCM path, SCM filename, SCM exts));
extern SCM scm_sys_search_load_path SCM_P ((SCM filename));
extern SCM scm_primitive_load_path SCM_P ((SCM filename));