diff options
author | Benoit Germain <benoit.germain@ubisoft.com> | 2024-11-28 17:39:41 +0100 |
---|---|---|
committer | Benoit Germain <benoit.germain@ubisoft.com> | 2024-11-28 17:39:41 +0100 |
commit | 83fb618b4ddefbb18495badb5dc1d7f458524413 (patch) | |
tree | de4f7e3a24f1a63d879eb63883f20cfb1b201e05 /docs | |
parent | aa27bbb7e2dd3fe1c330b877a3803e9d3d21f161 (diff) | |
download | lanes-83fb618b4ddefbb18495badb5dc1d7f458524413.tar.gz lanes-83fb618b4ddefbb18495badb5dc1d7f458524413.tar.bz2 lanes-83fb618b4ddefbb18495badb5dc1d7f458524413.zip |
Tweak documentation
Diffstat (limited to 'docs')
-rw-r--r-- | docs/index.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/index.html b/docs/index.html index cccfd6f..72bea3a 100644 --- a/docs/index.html +++ b/docs/index.html | |||
@@ -1699,7 +1699,10 @@ | |||
1699 | <p> | 1699 | <p> |
1700 | There are several issues here: | 1700 | There are several issues here: |
1701 | <ul> | 1701 | <ul> |
1702 | <li>Some base libraries register some C functions in the global environment. Because of that, Lanes must scan the global namespace to find all C functions (such as <tt>error</tt>, <tt>print</tt>, etc.).</li> | 1702 | <li> |
1703 | Some base libraries register some C functions in the global environment. Because of that, Lanes must scan the global namespace to find all C functions (such as <tt>error</tt>, <tt>print</tt>, etc.).<br /> | ||
1704 | This happens a single time, when <a href="#initialization"><tt>lanes.configure()</tt></a> is called. Therefore, if some base libraries are not loaded before that point, it will not be possible to send values that reference stuff they offer unless they are manually registered with <tt>lanes.register()</tt>. | ||
1705 | </li> | ||
1703 | <li> | 1706 | <li> |
1704 | Nothing prevents a script to create other references to a C function. For example one could do | 1707 | Nothing prevents a script to create other references to a C function. For example one could do |
1705 | <table border="1" bgcolor="#FFFFE0" cellpadding="10" style="width:50%"><tr><td><pre> | 1708 | <table border="1" bgcolor="#FFFFE0" cellpadding="10" style="width:50%"><tr><td><pre> |