diff options
author | Marius Vollmer <mvo@zagadka.de> | 2004-11-05 14:50:16 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2004-11-05 14:50:16 +0000 |
commit | a2b6a0e7f2317c10a9cd858b9872edac075bc150 (patch) | |
tree | 90c2b9ad1cefddf7cd47703382636d9203f6277a | |
parent | 0ec78e154653da5e365ab3df3f96d2afbc98014f (diff) | |
download | guile-a2b6a0e7f2317c10a9cd858b9872edac075bc150.tar.gz |
*** empty log message ***
-rw-r--r-- | NEWS | 9 | ||||
-rw-r--r-- | ice-9/ChangeLog | 6 |
2 files changed, 14 insertions, 1 deletions
@@ -159,6 +159,13 @@ be used with '-e'. For example, you can now write a script like * Changes to Scheme functions and syntax +** The default load path no longer includes "." at the end. + +Automatically loading modules from the current directory should not +happen by default. If you want to allow it in a more controlled +manner, set the environment variable GUILE_LOAD_PATH or the Scheme +variable %load-path. + ** The uniform vector and array support has been overhauled. It now complies with SRFI-4 and the weird prototype based uniform @@ -684,7 +691,7 @@ alternatives. C value. For example, you can use scm_to_int to safely convert from a SCM to an int. - - SCM scm_from_<type>) (<type> val, ...) + - SCM scm_from_<type> (<type> val, ...) These functions convert from a C type to a SCM value; for example, scm_from_int for ints. diff --git a/ice-9/ChangeLog b/ice-9/ChangeLog index 9c143d6f4..a00b94f49 100644 --- a/ice-9/ChangeLog +++ b/ice-9/ChangeLog @@ -1,3 +1,9 @@ +2004-11-05 Marius Vollmer <marius.vollmer@uni-dortmund.de> + + * boot-9.scm: Do not add "." to %load-path. 'load' will still be + able to load files in the current directory, but 'use-modules' etc + will not. + 2004-10-29 Marius Vollmer <marius.vollmer@uni-dortmund.de> * arrays.scm: Do not install read-hash procedure for reading |