mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-02 21:10:27 +02:00
*** empty log message ***
This commit is contained in:
parent
0ec78e1546
commit
a2b6a0e7f2
2 changed files with 14 additions and 1 deletions
9
NEWS
9
NEWS
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue