aboutsummaryrefslogtreecommitdiff
path: root/Doc/Manual/Allegrocl.html
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2009-02-20 07:52:24 +0000
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2009-02-20 07:52:24 +0000
commitefa11dee52ae8568993f5273b02d24b6b146816e (patch)
treed33770cb167de40cea79577056ab29c1579732b7 /Doc/Manual/Allegrocl.html
parenta1933f7bbca8cc26e393d6281afab459c8d032fd (diff)
downloadswig-efa11dee52ae8568993f5273b02d24b6b146816e.tar.gz
add new %begin directive for inserting code at top of wrapper file
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@11133 626c5289-ae23-0410-ae9c-e8d60b6d4f22
Diffstat (limited to 'Doc/Manual/Allegrocl.html')
-rw-r--r--Doc/Manual/Allegrocl.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/Manual/Allegrocl.html b/Doc/Manual/Allegrocl.html
index 41309c9b4..cc950db7c 100644
--- a/Doc/Manual/Allegrocl.html
+++ b/Doc/Manual/Allegrocl.html
@@ -411,7 +411,7 @@ using the SWIG <tt>%insert(section) %{ ...code... %}</tt> directive:
<pre>
%module example
-%insert("runtime") %{
+%{
#include "header.h"
%}
@@ -432,7 +432,7 @@ generated lisp interface file
</ul>
<p>
Note that the block <tt>%{ ... %}</tt> is effectively a shortcut for
-<tt>%insert("runtime") %{ ... %}</tt>.
+<tt>%insert("header") %{ ... %}</tt>.
</p>