mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-09 21:40:33 +02:00
Tweak port initialization order
* libguile/init.c (scm_i_init_guile): Initialize ports before strports/fports, so that we have initialized the read/write trampolines before making port types.
This commit is contained in:
parent
555c934726
commit
300c85b0f0
1 changed files with 1 additions and 1 deletions
|
@ -430,9 +430,9 @@ scm_i_init_guile (void *base)
|
||||||
scm_init_control (); /* requires fluids */
|
scm_init_control (); /* requires fluids */
|
||||||
scm_init_feature ();
|
scm_init_feature ();
|
||||||
scm_init_backtrace ();
|
scm_init_backtrace ();
|
||||||
|
scm_init_ports ();
|
||||||
scm_init_fports ();
|
scm_init_fports ();
|
||||||
scm_init_strports ();
|
scm_init_strports ();
|
||||||
scm_init_ports ();
|
|
||||||
scm_init_hash ();
|
scm_init_hash ();
|
||||||
scm_init_hashtab ();
|
scm_init_hashtab ();
|
||||||
scm_init_deprecation ();
|
scm_init_deprecation ();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue