diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-05-22 22:09:51 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-05-22 22:09:51 +0200 |
commit | db4af31e0922e00921f43ac25cbaeef71f8f51f3 (patch) | |
tree | 8dea1b11e99e422e8fde5d9503b2d3f42ae2c771 /doc/ref/api-modules.texi | |
parent | 723e483e7d88897f1ad654028e86a87dd040b886 (diff) | |
download | guile-db4af31e0922e00921f43ac25cbaeef71f8f51f3.tar.gz |
doc: '@' is not equivalent to autoloading.
* doc/ref/api-modules.texi (Creating Guile Modules): Remove paragraph
about '@' as an alternative to #:autoload.
Diffstat (limited to 'doc/ref/api-modules.texi')
-rw-r--r-- | doc/ref/api-modules.texi | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/doc/ref/api-modules.texi b/doc/ref/api-modules.texi index 4d1e95b50..05a19cc16 100644 --- a/doc/ref/api-modules.texi +++ b/doc/ref/api-modules.texi @@ -304,10 +304,6 @@ An autoload is a good way to put off loading a big module until it's really needed, for instance for faster startup or if it will only be needed in certain circumstances. -@code{@@} can do a similar thing (@pxref{Using Guile Modules}), but in -that case an @code{@@} form must be written every time a binding from -the module is used. - @item #:export @var{list} @cindex export Export all identifiers in @var{list} which must be a list of symbols |