summaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2012-04-28 15:33:58 +0000
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2012-04-28 15:33:58 +0000
commit127e772693ab4096b88081f4c35e7f6adec9a99f (patch)
tree90cd5ca99e2b1f82a707c499e231e961deeccbcd /Doc
parent88fa6327151ca8da00ea6d308e92282078e80af9 (diff)
downloadswig-127e772693ab4096b88081f4c35e7f6adec9a99f.tar.gz
HTML doc section update
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@13023 626c5289-ae23-0410-ae9c-e8d60b6d4f22
Diffstat (limited to 'Doc')
-rw-r--r--Doc/Manual/Contents.html3
-rw-r--r--Doc/Manual/Lua.html3
-rw-r--r--Doc/Manual/Preprocessor.html14
3 files changed, 13 insertions, 7 deletions
diff --git a/Doc/Manual/Contents.html b/Doc/Manual/Contents.html
index 105bbcf7e..4af66298c 100644
--- a/Doc/Manual/Contents.html
+++ b/Doc/Manual/Contents.html
@@ -263,8 +263,11 @@
<li><a href="Preprocessor.html#Preprocessor_nn5">Macro Expansion</a>
<li><a href="Preprocessor.html#Preprocessor_nn6">SWIG Macros</a>
<li><a href="Preprocessor.html#Preprocessor_nn7">C99 and GNU Extensions</a>
+<li><a href="Preprocessor.html#Preprocessor_delimiters">Preprocessing and delimiters</a>
+<ul>
<li><a href="Preprocessor.html#Preprocessor_nn8">Preprocessing and %{ ... %} &amp; " ... " delimiters</a>
<li><a href="Preprocessor.html#Preprocessor_nn9">Preprocessing and { ... } delimiters</a>
+</ul>
<li><a href="Preprocessor.html#Preprocessor_typemap_delimiters">Preprocessor and Typemaps</a>
<li><a href="Preprocessor.html#Preprocessor_nn10">Viewing preprocessor output</a>
<li><a href="Preprocessor.html#Preprocessor_warning_error">The #error and #warning directives</a>
diff --git a/Doc/Manual/Lua.html b/Doc/Manual/Lua.html
index cccb5d889..ec32c4449 100644
--- a/Doc/Manual/Lua.html
+++ b/Doc/Manual/Lua.html
@@ -218,8 +218,7 @@ For eLua, the source must be built along with the wrappers generated by SWIG. Ma
_ROM( AUXLIB_MOD, luaopen_mod, mod_map )\
....
</pre></div>
-<p>
-</p>
+
<div class="code"><pre>
/* Sample auxmods.h */
#define AUXLIB_PIO "pio"
diff --git a/Doc/Manual/Preprocessor.html b/Doc/Manual/Preprocessor.html
index 332d2a576..8fcbe9206 100644
--- a/Doc/Manual/Preprocessor.html
+++ b/Doc/Manual/Preprocessor.html
@@ -16,8 +16,11 @@
<li><a href="#Preprocessor_nn5">Macro Expansion</a>
<li><a href="#Preprocessor_nn6">SWIG Macros</a>
<li><a href="#Preprocessor_nn7">C99 and GNU Extensions</a>
+<li><a href="#Preprocessor_delimiters">Preprocessing and delimiters</a>
+<ul>
<li><a href="#Preprocessor_nn8">Preprocessing and %{ ... %} &amp; " ... " delimiters</a>
<li><a href="#Preprocessor_nn9">Preprocessing and { ... } delimiters</a>
+</ul>
<li><a href="#Preprocessor_typemap_delimiters">Preprocessor and Typemaps</a>
<li><a href="#Preprocessor_nn10">Viewing preprocessor output</a>
<li><a href="#Preprocessor_warning_error">The #error and #warning directives</a>
@@ -308,11 +311,12 @@ SWIG directives and are provided to make SWIG more compatible with C99 code.
<H2><a name="Preprocessor_delimiters"></a>7.7 Preprocessing and delimiters</H2>
+
<p>
The preprocessor handles { }, " " and %{ %} delimiters differently.
</p>
-<H3><a name="Preprocessor_nn8"></a>7.7 Preprocessing and %{ ... %} &amp; " ... " delimiters</H3>
+<H3><a name="Preprocessor_nn8"></a>7.7.1 Preprocessing and %{ ... %} &amp; " ... " delimiters</H3>
<p>
@@ -337,7 +341,7 @@ the contents of the <tt>%{ ... %}</tt> block are copied without
modification to the output (including all preprocessor directives).
</p>
-<H3><a name="Preprocessor_nn9"></a>7.8 Preprocessing and { ... } delimiters</H3>
+<H3><a name="Preprocessor_nn9"></a>7.7.2 Preprocessing and { ... } delimiters</H3>
<p>
@@ -379,7 +383,7 @@ to actually go into the wrapper file, prefix the preprocessor directives with <t
SWIG will strip the extra <tt>%</tt> and leave the preprocessor directive in the code.
</p>
-<H2><a name="Preprocessor_typemap_delimiters"></a>7.9 Preprocessor and Typemaps</H2>
+<H2><a name="Preprocessor_typemap_delimiters"></a>7.8 Preprocessor and Typemaps</H2>
<p>
@@ -450,7 +454,7 @@ would generate
</div>
-<H2><a name="Preprocessor_nn10"></a>7.10 Viewing preprocessor output</H2>
+<H2><a name="Preprocessor_nn10"></a>7.9 Viewing preprocessor output</H2>
<p>
@@ -460,7 +464,7 @@ Instead the results after the preprocessor has run are displayed.
This might be useful as an aid to debugging and viewing the results of macro expansions.
</p>
-<H2><a name="Preprocessor_warning_error"></a>7.11 The #error and #warning directives</H2>
+<H2><a name="Preprocessor_warning_error"></a>7.10 The #error and #warning directives</H2>
<p>