OK, maybe someone can shed some light now...
If you look at Fl_Input around line 115 there is a comment for new page.
The table following seems to be the culprit. It appears that not closing the
last <td> is mucking things up. For a simple example comment out the entire
table from lower case <center> to it's close and replace with the following.
------Start Code----------
<!-- NEW PAGE -->
<center><table border=1 summary="Character Composition Table">
<tr><b>Character Composition Table</b></tr>
<tr>
<th>Keys</th><th>Char</th>
<th>Keys</th><th>Char</th>
<th>Keys</th><th>Char</th>
<th>Keys</th><th>Char</th>
<th>Keys</th><th>Char</th>
<th>Keys</th><th>Char</th>
</tr>
<tr>
<td align=center><TT>sp</TT></td><td
align=center><small>nbsp</small></td>
<td align=center><TT>*</tt></td><td align=center>°</td>
<td align=center><TT>` A</tt></td><td align=center>Ã</td>
<td align=center><TT>D -</tt></td><td align=center>Ã</td>
<td align=center><TT>` a</tt></td><td align=center>Ã </td>
<td align=center><TT>d -</tt></td><td align=center>ð</td>
</tr>
</table></center>
------End Code------------
I thought perhaps one of the cases was being mishandled but mixing does not
seem to be an issue. The last </td> not being in place (in each row) is the
problem. Mostly it seems that if you don't close the tag it will be handled,
just not with a table data.
So I guess the simple fix would be to just make sure that the <td>'s are closed
or to fix the Help_View format_table() perhaps? I've only just taken a look at
that but there is about 3000 lines of code in there. :)
Any input?
Mark
_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk