texinfo-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[no subject]


From: Patrice Dumas
Date: Wed, 18 Sep 2024 03:11:23 -0400 (EDT)

branch: master
commit 184fa87f7c660cb128e78843870e831e8d91bc0f
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Wed Sep 18 08:40:53 2024 +0200

    * tp/Texinfo/Convert/HTML.pm (%css_element_class_styles)
    (_convert_def_command), tp/Texinfo/XS/convert/convert_html.c
    (convert_def_command): use CSS for DEF_TABLE table width setting, as it
    is styling.
    
    * tp/Texinfo/XS/convert/convert_html.c (convert_def_command): use
    open_element_with_class.
---
 ChangeLog                                          |  10 +
 tp/Texinfo/Convert/HTML.pm                         |  12 +-
 tp/Texinfo/XS/convert/convert_html.c               |  15 +-
 .../res_parser/formatting_exotic/chapter.html      | 253 +++++++++++----------
 4 files changed, 144 insertions(+), 146 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 838061e9dd..d1f7ff61ad 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2024-09-18  Patrice Dumas  <pertusus@free.fr>
+
+       * tp/Texinfo/Convert/HTML.pm (%css_element_class_styles)
+       (_convert_def_command), tp/Texinfo/XS/convert/convert_html.c
+       (convert_def_command): use CSS for DEF_TABLE table width setting, as it
+       is styling.
+
+       * tp/Texinfo/XS/convert/convert_html.c (convert_def_command): use
+       open_element_with_class.
+
 2024-09-18  Patrice Dumas  <pertusus@free.fr>
 
        * tp/Texinfo/Convert/HTML.pm (_convert_def_command)
diff --git a/tp/Texinfo/Convert/HTML.pm b/tp/Texinfo/Convert/HTML.pm
index 61c53e07d8..a6cf2e858e 100644
--- a/tp/Texinfo/Convert/HTML.pm
+++ b/tp/Texinfo/Convert/HTML.pm
@@ -3006,6 +3006,7 @@ my %css_element_class_styles = (
      'td.description-direction-about' => 'border-width: thin; 
border-right-style: solid; border-left-style: solid',
      'td.example-direction-about'    => 'border-width: thin; 
border-left-style: solid',
      'img.nav-icon'                  => 'vertical-align: middle',
+     'table.def-block'               => 'width: 100%',
 
      # The anchor element is wrapped in a <span> rather than a block level
      # element to avoid it appearing unless the mouse pointer is directly
@@ -7012,15 +7013,8 @@ sub _convert_def_command($$$$$) {
     return $self->html_attribute_class('dl', \@classes).">\n"
                                         . $content ."</dl>\n";
   } else {
-    my $width = '100%';
-    my $width_attr;
-    if ($self->get_conf('_INLINE_STYLE_WIDTH')) {
-      $width_attr = "style=\"width: $width\"";
-    } else {
-      $width_attr = "width=\"$width\"";
-    }
-    return $self->html_attribute_class('table', \@classes)." $width_attr>\n"
-                                                     . $content . "</table>\n";
+    return $self->html_attribute_class('table', \@classes).">\n"
+                                       . $content . "</table>\n";
   }
 }
 
diff --git a/tp/Texinfo/XS/convert/convert_html.c 
b/tp/Texinfo/XS/convert/convert_html.c
index 373125a25d..fa09d2cd8e 100644
--- a/tp/Texinfo/XS/convert/convert_html.c
+++ b/tp/Texinfo/XS/convert/convert_html.c
@@ -13803,7 +13803,6 @@ convert_def_command (CONVERTER *self, const enum 
command_id cmd,
                     const HTML_ARGS_FORMATTED *args_formatted,
                     const char *content, TEXT *result)
 {
-  char *attribute_class;
   STRING_LIST *classes;
   enum command_id original_cmd = cmd;
   char *class;
@@ -13852,27 +13851,21 @@ convert_def_command (CONVERTER *self, const enum 
command_id cmd,
 
   if (self->conf->DEF_TABLE.o.integer <= 0)
     {
-      attribute_class = html_attribute_class (self, "dl", classes);
-      text_append (result, attribute_class);
-      text_append_n (result, ">\n", 2);
+      open_element_with_class (self, "dl", classes, result);
+      text_append_n (result, "\n", 1);
       if (content)
         text_append (result, content);
       text_append_n (result, "</dl>\n", 6);
     }
   else
     {
-      attribute_class = html_attribute_class (self, "table", classes);
-      text_append (result, attribute_class);
-      if (self->conf->_INLINE_STYLE_WIDTH.o.integer > 0)
-        text_append_n (result, " style=\"width: 100%\">\n", 22);
-      else
-        text_append_n (result, " width=\"100%\">\n", 15);
+      open_element_with_class (self, "table", classes, result);
+      text_append_n (result, "\n", 1);
       if (content)
         text_append (result, content);
       text_append_n (result, "</table>\n", 9);
     }
 
-  free (attribute_class);
   destroy_strings_list (classes);
 }
 
diff --git a/tp/tests/layout/res_parser/formatting_exotic/chapter.html 
b/tp/tests/layout/res_parser/formatting_exotic/chapter.html
index 34635f0983..6e0f145399 100644
--- a/tp/tests/layout/res_parser/formatting_exotic/chapter.html
+++ b/tp/tests/layout/res_parser/formatting_exotic/chapter.html
@@ -890,6 +890,7 @@ span.sansserif {font-family: sans-serif; font-weight: 
normal}
 span:hover a.copiable-link {visibility: visible}
 strong.def-name {font-family: monospace; font-weight: bold; font-size: larger}
 table.cartouche {border-style: solid; border-radius: 10%}
+table.def-block {width: 100%}
 td.call-def {text-align:left}
 td.category-def {text-align:right}
 td.index-entry-level-1 {padding-left: 1.5em}
@@ -1502,17 +1503,17 @@ $ wget 
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.sub?rev=HEA
 <pre class="format-preformatted">s&ndash;mallformat
 </pre></div>
 
-<table class="first-deffn def-block" width="100%">
+<table class="first-deffn def-block">
 <tr class="deffn def-line" id="index-copying-d_002d_002deffn_005fname"><td 
class="call-def"><strong class="def-name">d--effn_name</strong> <var 
class="def-var-arguments">a&ndash;rguments...</var></td><td 
class="category-def">[c&ndash;ategory]</td></tr>
 <tr><td colspan="2"><p>d&ndash;effn
 </p></td></tr></table>
 
-<table class="first-deffn def-block" width="100%">
+<table class="first-deffn def-block">
 <tr class="deffn def-line" id="index-copying-de_002d_002dffn_005fname"><td 
class="call-def"><strong class="def-name">de--ffn_name</strong> <var 
class="def-var-arguments">ar&ndash;guments    more args <br> even more 
so</var></td><td class="category-def">[cate&ndash;gory]</td></tr>
 <tr><td colspan="2"><p>def&ndash;fn
 </p></td></tr></table>
  
-<table class="first-deffn def-block" width="100%">
+<table class="first-deffn def-block">
 <tr class="deffn def-line" id="index-copying-i"><td class="call-def"><strong 
class="def-name"><var class="var">i</var></strong> <var 
class="def-var-arguments">a g</var></td><td 
class="category-def">[fset]</td></tr>
 <tr><td colspan="2"><a class="index-entry-id" 
id="index-copying-index-entry-within-deffn"></a>
 </td></tr><tr class="deffnx def-cmd-deffn def-line" 
id="index-copying-truc"><td class="call-def"><strong 
class="def-name">truc</strong></td><td class="category-def">[cmde]</td></tr>
@@ -1533,189 +1534,189 @@ $ wget 
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.sub?rev=HEA
 </table>
 
 
-<table class="first-deffn def-block" width="100%">
+<table class="first-deffn def-block">
 <tr class="deffn def-line" id="index-copying-deffn"><td 
class="call-def"><strong class="def-name">deffn</strong></td><td 
class="category-def">[empty]</td></tr>
 </table>
 
-<table class="first-deffn def-block" width="100%">
+<table class="first-deffn def-block">
 <tr class="deffn def-line" id="index-copying-deffn-1"><td 
class="call-def"><strong class="def-name">deffn</strong> <var 
class="def-var-arguments">with deffnx</var></td><td 
class="category-def">[empty]</td></tr>
 <tr class="deffnx def-cmd-deffn def-line" id="index-copying-deffnx-1"><td 
class="call-def"><strong class="def-name">deffnx</strong></td><td 
class="category-def">[empty]</td></tr>
 </table>
 
-<table class="first-deffn def-block" width="100%">
+<table class="first-deffn def-block">
 <tr class="deffn def-line" id="index-copying-i-1"><td class="call-def"><strong 
class="def-name"><var class="var">i</var></strong> <var 
class="def-var-arguments">a g</var></td><td 
class="category-def">[fset]</td></tr>
 <tr class="deffnx def-cmd-deffn def-line" id="index-copying-truc-1"><td 
class="call-def"><strong class="def-name">truc</strong></td><td 
class="category-def">[cmde]</td></tr>
 <tr><td colspan="2"><p>text in def item for second def item
 </p></td></tr></table>
 
 
-<table class="first-defvr def-block" width="100%">
+<table class="first-defvr def-block">
 <tr class="defvr def-line" id="index-copying-d_002d_002defvr_005fname"><td 
class="call-def"><strong class="def-name">d--efvr_name</strong></td><td 
class="category-def">[c&ndash;ategory]</td></tr>
 <tr><td colspan="2"><p>d&ndash;efvr
 </p></td></tr></table>
 
-<table class="first-deffn def-block" width="100%">
+<table class="first-deffn def-block">
 <tr class="deffn def-line" id="index-copying-n_002d_002dame"><td 
class="call-def"><strong class="def-name">n--ame</strong> <var 
class="def-var-arguments">a&ndash;rguments...</var></td><td 
class="category-def">[c&ndash;ategory]</td></tr>
 <tr><td colspan="2"><p>d&ndash;effn
 </p></td></tr></table>
 
-<table class="first-deffn def-block" width="100%">
+<table class="first-deffn def-block">
 <tr class="deffn def-line" id="index-copying-n_002d_002dame-1"><td 
class="call-def"><strong class="def-name">n--ame</strong></td><td 
class="category-def">[c&ndash;ategory]</td></tr>
 <tr><td colspan="2"><p>d&ndash;effn no arg
 </p></td></tr></table>
 
-<table class="first-deftypefn def-block" width="100%">
+<table class="first-deftypefn def-block">
 <tr class="deftypefn def-line" 
id="index-copying-d_002d_002deftypefn_005fname"><td class="call-def"><code 
class="def-type">t--ype</code> <strong 
class="def-name">d--eftypefn_name</strong> <code 
class="def-code-arguments">a--rguments...</code></td><td 
class="category-def">[c&ndash;ategory]</td></tr>
 <tr><td colspan="2"><p>d&ndash;eftypefn
 </p></td></tr></table>
 
-<table class="first-deftypefn def-block" width="100%">
+<table class="first-deftypefn def-block">
 <tr class="deftypefn def-line" 
id="index-copying-d_002d_002deftypefn_005fname-1"><td class="call-def"><code 
class="def-type">t--ype</code> <strong 
class="def-name">d--eftypefn_name</strong></td><td 
class="category-def">[c&ndash;ategory]</td></tr>
 <tr><td colspan="2"><p>d&ndash;eftypefn no arg
 </p></td></tr></table>
 
-<table class="first-deftypeop def-block" width="100%">
+<table class="first-deftypeop def-block">
 <tr class="deftypeop def-line" 
id="index-copying-d_002d_002deftypeop_005fname-on-c_002d_002dlass"><td 
class="call-def"><code class="def-type">t--ype</code> <strong 
class="def-name">d--eftypeop_name</strong> <code 
class="def-code-arguments">a--rguments...</code></td><td 
class="category-def">[c&ndash;ategory on <code 
class="code">c--lass</code>]</td></tr>
 <tr><td colspan="2"><p>d&ndash;eftypeop
 </p></td></tr></table>
 
-<table class="first-deftypeop def-block" width="100%">
+<table class="first-deftypeop def-block">
 <tr class="deftypeop def-line" 
id="index-copying-d_002d_002deftypeop_005fname-on-c_002d_002dlass-1"><td 
class="call-def"><code class="def-type">t--ype</code> <strong 
class="def-name">d--eftypeop_name</strong></td><td 
class="category-def">[c&ndash;ategory on <code 
class="code">c--lass</code>]</td></tr>
 <tr><td colspan="2"><p>d&ndash;eftypeop no arg
 </p></td></tr></table>
 
-<table class="first-deftypevr def-block" width="100%">
+<table class="first-deftypevr def-block">
 <tr class="deftypevr def-line" 
id="index-copying-d_002d_002deftypevr_005fname"><td class="call-def"><code 
class="def-type">t--ype</code> <strong 
class="def-name">d--eftypevr_name</strong></td><td 
class="category-def">[c&ndash;ategory]</td></tr>
 <tr><td colspan="2"><p>d&ndash;eftypevr
 </p></td></tr></table>
 
-<table class="first-defcv def-block" width="100%">
+<table class="first-defcv def-block">
 <tr class="defcv def-line" id="index-copying-d_002d_002defcv_005fname"><td 
class="call-def"><strong class="def-name">d--efcv_name</strong></td><td 
class="category-def">[c&ndash;ategory of <code 
class="code">c--lass</code>]</td></tr>
 <tr><td colspan="2"><p>d&ndash;efcv
 </p></td></tr></table>
 
-<table class="first-defcv def-block" width="100%">
+<table class="first-defcv def-block">
 <tr class="defcv def-line" id="index-copying-d_002d_002defcv_005fname-1"><td 
class="call-def"><strong class="def-name">d--efcv_name</strong> <var 
class="def-var-arguments">a&ndash;rguments...</var></td><td 
class="category-def">[c&ndash;ategory of <code 
class="code">c--lass</code>]</td></tr>
 <tr><td colspan="2"><p>d&ndash;efcv with arguments
 </p></td></tr></table>
 
-<table class="first-deftypecv def-block" width="100%">
+<table class="first-deftypecv def-block">
 <tr class="deftypecv def-line" 
id="index-copying-d_002d_002deftypecv_005fname-of-c_002d_002dlass"><td 
class="call-def"><code class="def-type">t--ype</code> <strong 
class="def-name">d--eftypecv_name</strong></td><td 
class="category-def">[c&ndash;ategory of <code 
class="code">c--lass</code>]</td></tr>
 <tr><td colspan="2"><p>d&ndash;eftypecv
 </p></td></tr></table>
 
-<table class="first-deftypecv def-block" width="100%">
+<table class="first-deftypecv def-block">
 <tr class="deftypecv def-line" 
id="index-copying-d_002d_002deftypecv_005fname-of-c_002d_002dlass-1"><td 
class="call-def"><code class="def-type">t--ype</code> <strong 
class="def-name">d--eftypecv_name</strong> <code 
class="def-code-arguments">a--rguments...</code></td><td 
class="category-def">[c&ndash;ategory of <code 
class="code">c--lass</code>]</td></tr>
 <tr><td colspan="2"><p>d&ndash;eftypecv with arguments
 </p></td></tr></table>
 
-<table class="first-defop def-block" width="100%">
+<table class="first-defop def-block">
 <tr class="defop def-line" 
id="index-copying-d_002d_002defop_005fname-on-c_002d_002dlass"><td 
class="call-def"><strong class="def-name">d--efop_name</strong> <var 
class="def-var-arguments">a&ndash;rguments...</var></td><td 
class="category-def">[c&ndash;ategory on <code 
class="code">c--lass</code>]</td></tr>
 <tr><td colspan="2"><p>d&ndash;efop
 </p></td></tr></table>
 
-<table class="first-defop def-block" width="100%">
+<table class="first-defop def-block">
 <tr class="defop def-line" 
id="index-copying-d_002d_002defop_005fname-on-c_002d_002dlass-1"><td 
class="call-def"><strong class="def-name">d--efop_name</strong></td><td 
class="category-def">[c&ndash;ategory on <code 
class="code">c--lass</code>]</td></tr>
 <tr><td colspan="2"><p>d&ndash;efop no arg
 </p></td></tr></table>
 
-<table class="first-deftp def-block" width="100%">
+<table class="first-deftp def-block">
 <tr class="deftp def-line" id="index-copying-d_002d_002deftp_005fname"><td 
class="call-def"><strong class="def-name">d--eftp_name</strong> <var 
class="def-var-arguments">a&ndash;ttributes...</var></td><td 
class="category-def">[c&ndash;ategory]</td></tr>
 <tr><td colspan="2"><p>d&ndash;eftp
 </p></td></tr></table>
 
-<table class="first-deffn first-defun-alias-first-deffn def-block" 
width="100%">
+<table class="first-deffn first-defun-alias-first-deffn def-block">
 <tr class="deffn defun-alias-deffn def-line" 
id="index-copying-d_002d_002defun_005fname"><td class="call-def"><strong 
class="def-name">d--efun_name</strong> <var 
class="def-var-arguments">a&ndash;rguments...</var></td><td 
class="category-def">[Function]</td></tr>
 <tr><td colspan="2"><p>d&ndash;efun
 </p></td></tr></table>
 
-<table class="first-deffn first-defmac-alias-first-deffn def-block" 
width="100%">
+<table class="first-deffn first-defmac-alias-first-deffn def-block">
 <tr class="deffn defmac-alias-deffn def-line" 
id="index-copying-d_002d_002defmac_005fname"><td class="call-def"><strong 
class="def-name">d--efmac_name</strong> <var 
class="def-var-arguments">a&ndash;rguments...</var></td><td 
class="category-def">[Macro]</td></tr>
 <tr><td colspan="2"><p>d&ndash;efmac
 </p></td></tr></table>
 
-<table class="first-deffn first-defspec-alias-first-deffn def-block" 
width="100%">
+<table class="first-deffn first-defspec-alias-first-deffn def-block">
 <tr class="deffn defspec-alias-deffn def-line" 
id="index-copying-d_002d_002defspec_005fname"><td class="call-def"><strong 
class="def-name">d--efspec_name</strong> <var 
class="def-var-arguments">a&ndash;rguments...</var></td><td 
class="category-def">[Special Form]</td></tr>
 <tr><td colspan="2"><p>d&ndash;efspec
 </p></td></tr></table>
 
-<table class="first-defvr first-defvar-alias-first-defvr def-block" 
width="100%">
+<table class="first-defvr first-defvar-alias-first-defvr def-block">
 <tr class="defvr defvar-alias-defvr def-line" 
id="index-copying-d_002d_002defvar_005fname"><td class="call-def"><strong 
class="def-name">d--efvar_name</strong></td><td 
class="category-def">[Variable]</td></tr>
 <tr><td colspan="2"><p>d&ndash;efvar
 </p></td></tr></table>
 
-<table class="first-defvr first-defvar-alias-first-defvr def-block" 
width="100%">
+<table class="first-defvr first-defvar-alias-first-defvr def-block">
 <tr class="defvr defvar-alias-defvr def-line" 
id="index-copying-d_002d_002defvar_005fname-1"><td class="call-def"><strong 
class="def-name">d--efvar_name</strong> <var 
class="def-var-arguments">arg&ndash;var arg&ndash;var1</var></td><td 
class="category-def">[Variable]</td></tr>
 <tr><td colspan="2"><p>d&ndash;efvar with args
 </p></td></tr></table>
 
-<table class="first-defvr first-defopt-alias-first-defvr def-block" 
width="100%">
+<table class="first-defvr first-defopt-alias-first-defvr def-block">
 <tr class="defvr defopt-alias-defvr def-line" 
id="index-copying-d_002d_002defopt_005fname"><td class="call-def"><strong 
class="def-name">d--efopt_name</strong></td><td class="category-def">[User 
Option]</td></tr>
 <tr><td colspan="2"><p>d&ndash;efopt
 </p></td></tr></table>
 
-<table class="first-deftypefn first-deftypefun-alias-first-deftypefn 
def-block" width="100%">
+<table class="first-deftypefn first-deftypefun-alias-first-deftypefn 
def-block">
 <tr class="deftypefn deftypefun-alias-deftypefn def-line" 
id="index-copying-d_002d_002deftypefun_005fname"><td class="call-def"><code 
class="def-type">t--ype</code> <strong 
class="def-name">d--eftypefun_name</strong> <code 
class="def-code-arguments">a--rguments...</code></td><td 
class="category-def">[Function]</td></tr>
 <tr><td colspan="2"><p>d&ndash;eftypefun
 </p></td></tr></table>
 
-<table class="first-deftypevr first-deftypevar-alias-first-deftypevr 
def-block" width="100%">
+<table class="first-deftypevr first-deftypevar-alias-first-deftypevr 
def-block">
 <tr class="deftypevr deftypevar-alias-deftypevr def-line" 
id="index-copying-d_002d_002deftypevar_005fname"><td class="call-def"><code 
class="def-type">t--ype</code> <strong 
class="def-name">d--eftypevar_name</strong></td><td 
class="category-def">[Variable]</td></tr>
 <tr><td colspan="2"><p>d&ndash;eftypevar
 </p></td></tr></table>
 
-<table class="first-defcv first-defivar-alias-first-defcv def-block" 
width="100%">
+<table class="first-defcv first-defivar-alias-first-defcv def-block">
 <tr class="defcv defivar-alias-defcv def-line" 
id="index-copying-d_002d_002defivar_005fname-of-c_002d_002dlass"><td 
class="call-def"><strong class="def-name">d--efivar_name</strong></td><td 
class="category-def">[Instance Variable of <code 
class="code">c--lass</code>]</td></tr>
 <tr><td colspan="2"><p>d&ndash;efivar
 </p></td></tr></table>
 
-<table class="first-deftypecv first-deftypeivar-alias-first-deftypecv 
def-block" width="100%">
+<table class="first-deftypecv first-deftypeivar-alias-first-deftypecv 
def-block">
 <tr class="deftypecv deftypeivar-alias-deftypecv def-line" 
id="index-copying-d_002d_002deftypeivar_005fname-of-c_002d_002dlass"><td 
class="call-def"><code class="def-type">t--ype</code> <strong 
class="def-name">d--eftypeivar_name</strong></td><td 
class="category-def">[Instance Variable of <code 
class="code">c--lass</code>]</td></tr>
 <tr><td colspan="2"><p>d&ndash;eftypeivar
 </p></td></tr></table>
 
-<table class="first-defop first-defmethod-alias-first-defop def-block" 
width="100%">
+<table class="first-defop first-defmethod-alias-first-defop def-block">
 <tr class="defop defmethod-alias-defop def-line" 
id="index-copying-d_002d_002defmethod_005fname-on-c_002d_002dlass"><td 
class="call-def"><strong class="def-name">d--efmethod_name</strong> <var 
class="def-var-arguments">a&ndash;rguments...</var></td><td 
class="category-def">[Method on <code class="code">c--lass</code>]</td></tr>
 <tr><td colspan="2"><p>d&ndash;efmethod
 </p></td></tr></table>
 
-<table class="first-deftypeop first-deftypemethod-alias-first-deftypeop 
def-block" width="100%">
+<table class="first-deftypeop first-deftypemethod-alias-first-deftypeop 
def-block">
 <tr class="deftypeop deftypemethod-alias-deftypeop def-line" 
id="index-copying-d_002d_002deftypemethod_005fname-on-c_002d_002dlass"><td 
class="call-def"><code class="def-type">t--ype</code> <strong 
class="def-name">d--eftypemethod_name</strong> <code 
class="def-code-arguments">a--rguments...</code></td><td 
class="category-def">[Method on <code class="code">c--lass</code>]</td></tr>
 <tr><td colspan="2"><p>d&ndash;eftypemethod
 </p></td></tr></table>
 
 
-<table class="first-deftypefn first-deftypefun-alias-first-deftypefn 
def-block" width="100%">
+<table class="first-deftypefn first-deftypefun-alias-first-deftypefn 
def-block">
 <tr class="deftypefn deftypefun-alias-deftypefn def-line" 
id="index-copying-name2"><td class="call-def"><code 
class="def-type">data-type2</code><br> <strong class="def-name">name2</strong> 
<code class="def-code-arguments">arguments2...</code></td><td 
class="category-def">[Function]</td></tr>
 <tr><td colspan="2"><p>aaa2
 </p></td></tr></table>
 
-<table class="first-deftypefn def-block" width="100%">
+<table class="first-deftypefn def-block">
 <tr class="deftypefn def-line" 
id="index-copying-d_002d_002deftypefn_005fname2"><td class="call-def"><code 
class="def-type">t--ype2</code><br> <strong 
class="def-name">d--eftypefn_name2</strong></td><td 
class="category-def">[c&ndash;ategory2]</td></tr>
 <tr><td colspan="2"><p>d&ndash;eftypefn no arg2
 </p></td></tr></table>
 
-<table class="first-deftypeop def-block" width="100%">
+<table class="first-deftypeop def-block">
 <tr class="deftypeop def-line" 
id="index-copying-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2"><td 
class="call-def"><code class="def-type">t--ype2</code><br> <strong 
class="def-name">d--eftypeop_name2</strong> <code 
class="def-code-arguments">a--rguments2...</code></td><td 
class="category-def">[c&ndash;ategory2 on <code 
class="code">c--lass2</code>]</td></tr>
 <tr><td colspan="2"><p>d&ndash;eftypeop2
 </p></td></tr></table>
 
-<table class="first-deftypeop def-block" width="100%">
+<table class="first-deftypeop def-block">
 <tr class="deftypeop def-line" 
id="index-copying-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-1"><td 
class="call-def"><code class="def-type">t--ype2</code><br> <strong 
class="def-name">d--eftypeop_name2</strong></td><td 
class="category-def">[c&ndash;ategory2 on <code 
class="code">c--lass2</code>]</td></tr>
 <tr><td colspan="2"><p>d&ndash;eftypeop no arg2
 </p></td></tr></table>
 
-<table class="first-deftypecv def-block" width="100%">
+<table class="first-deftypecv def-block">
 <tr class="deftypecv def-line" 
id="index-copying-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2"><td 
class="call-def"><code class="def-type">t--ype2</code> <strong 
class="def-name">d--eftypecv_name2</strong></td><td 
class="category-def">[c&ndash;ategory2 of <code 
class="code">c--lass2</code>]</td></tr>
 <tr><td colspan="2"><p>d&ndash;eftypecv2
 </p></td></tr></table>
 
-<table class="first-deftypecv def-block" width="100%">
+<table class="first-deftypecv def-block">
 <tr class="deftypecv def-line" 
id="index-copying-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-1"><td 
class="call-def"><code class="def-type">t--ype2</code> <strong 
class="def-name">d--eftypecv_name2</strong> <code 
class="def-code-arguments">a--rguments2...</code></td><td 
class="category-def">[c&ndash;ategory2 of <code 
class="code">c--lass2</code>]</td></tr>
 <tr><td colspan="2"><p>d&ndash;eftypecv with arguments2
 </p></td></tr></table>
 
-<table class="first-deffn def-block" width="100%">
+<table class="first-deffn def-block">
 <tr class="deffn def-line" id="index-copying-arg2"><td 
class="call-def"><strong class="def-name">arg2</strong></td><td 
class="category-def">[fun2]</td></tr>
 <tr><td colspan="2"><p>fff2
 </p></td></tr></table>
@@ -1981,7 +1982,7 @@ html ''
 </p></dd>
 </dl>
 
-<table class="first-deffn def-block" width="100%">
+<table class="first-deffn def-block">
 <tr class="deffn def-line"><td class="call-def"></td><td 
class="category-def">[fun]</td></tr>
 <tr class="deffnx def-cmd-deffn def-line" id="index-copying-machin-2"><td 
class="call-def"><strong class="def-name">machin</strong> <var 
class="def-var-arguments">bidule chose and</var></td><td 
class="category-def">[truc]</td></tr>
 <tr class="deffnx def-cmd-deffn def-line" id="index-copying-machin-3"><td 
class="call-def"><strong class="def-name">machin</strong> <var 
class="def-var-arguments">bidule chose and  after</var></td><td 
class="category-def">[truc]</td></tr>
@@ -1992,7 +1993,7 @@ html ''
 </p></td></tr><tr class="deffnx def-cmd-deffn def-line" 
id="index-copying-after"><td class="call-def"><strong 
class="def-name">after</strong> <var class="def-var-arguments">a deff 
item</var></td><td class="category-def">[truc]</td></tr>
 </table>
 
-<table class="first-deffn def-block" width="100%">
+<table class="first-deffn def-block">
 <tr class="deffn def-line" id="index-copying-invalid"><td 
class="call-def"><strong class="def-name"><var 
class="var">invalid</var></strong> <var class="def-var-arguments">a 
g</var></td><td class="category-def">[fsetinv]</td></tr>
 <tr class="deffnx def-cmd-deffn def-line"><td class="call-def"></td><td 
class="category-def">[<b class="b">id &lsquo;<samp class="samp">i</samp>&rsquo; 
ule</b>]</td></tr>
 <tr class="deffnx def-cmd-deffn def-line"><td class="call-def"></td><td 
class="category-def">[]</td></tr>
@@ -2606,17 +2607,17 @@ $ wget 
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.sub?rev=HEA
 <pre class="format-preformatted">s&ndash;mallformat
 </pre></div>
 
-<table class="first-deffn def-block" width="100%">
+<table class="first-deffn def-block">
 <tr class="deffn def-line" id="index-d_002d_002deffn_005fname"><td 
class="call-def"><strong class="def-name">d--effn_name</strong> <var 
class="def-var-arguments">a&ndash;rguments...</var></td><td 
class="category-def">[c&ndash;ategory]</td></tr>
 <tr><td colspan="2"><p>d&ndash;effn
 </p></td></tr></table>
 
-<table class="first-deffn def-block" width="100%">
+<table class="first-deffn def-block">
 <tr class="deffn def-line" id="index-de_002d_002dffn_005fname"><td 
class="call-def"><strong class="def-name">de--ffn_name</strong> <var 
class="def-var-arguments">ar&ndash;guments    more args <br> even more 
so</var></td><td class="category-def">[cate&ndash;gory]</td></tr>
 <tr><td colspan="2"><p>def&ndash;fn
 </p></td></tr></table>
  
-<table class="first-deffn def-block" width="100%">
+<table class="first-deffn def-block">
 <tr class="deffn def-line" id="index-i"><td class="call-def"><strong 
class="def-name"><var class="var">i</var></strong> <var 
class="def-var-arguments">a g</var></td><td 
class="category-def">[fset]</td></tr>
 <tr><td colspan="2"><a class="index-entry-id" 
id="index-index-entry-within-deffn"></a>
 </td></tr><tr class="deffnx def-cmd-deffn def-line" id="index-truc"><td 
class="call-def"><strong class="def-name">truc</strong></td><td 
class="category-def">[cmde]</td></tr>
@@ -2637,189 +2638,189 @@ $ wget 
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.sub?rev=HEA
 </table>
 
 
-<table class="first-deffn def-block" width="100%">
+<table class="first-deffn def-block">
 <tr class="deffn def-line" id="index-deffn"><td class="call-def"><strong 
class="def-name">deffn</strong></td><td class="category-def">[empty]</td></tr>
 </table>
 
-<table class="first-deffn def-block" width="100%">
+<table class="first-deffn def-block">
 <tr class="deffn def-line" id="index-deffn-1"><td class="call-def"><strong 
class="def-name">deffn</strong> <var class="def-var-arguments">with 
deffnx</var></td><td class="category-def">[empty]</td></tr>
 <tr class="deffnx def-cmd-deffn def-line" id="index-deffnx-1"><td 
class="call-def"><strong class="def-name">deffnx</strong></td><td 
class="category-def">[empty]</td></tr>
 </table>
 
-<table class="first-deffn def-block" width="100%">
+<table class="first-deffn def-block">
 <tr class="deffn def-line" id="index-i-1"><td class="call-def"><strong 
class="def-name"><var class="var">i</var></strong> <var 
class="def-var-arguments">a g</var></td><td 
class="category-def">[fset]</td></tr>
 <tr class="deffnx def-cmd-deffn def-line" id="index-truc-1"><td 
class="call-def"><strong class="def-name">truc</strong></td><td 
class="category-def">[cmde]</td></tr>
 <tr><td colspan="2"><p>text in def item for second def item
 </p></td></tr></table>
 
 
-<table class="first-defvr def-block" width="100%">
+<table class="first-defvr def-block">
 <tr class="defvr def-line" id="index-d_002d_002defvr_005fname"><td 
class="call-def"><strong class="def-name">d--efvr_name</strong></td><td 
class="category-def">[c&ndash;ategory]</td></tr>
 <tr><td colspan="2"><p>d&ndash;efvr
 </p></td></tr></table>
 
-<table class="first-deffn def-block" width="100%">
+<table class="first-deffn def-block">
 <tr class="deffn def-line" id="index-n_002d_002dame"><td 
class="call-def"><strong class="def-name">n--ame</strong> <var 
class="def-var-arguments">a&ndash;rguments...</var></td><td 
class="category-def">[c&ndash;ategory]</td></tr>
 <tr><td colspan="2"><p>d&ndash;effn
 </p></td></tr></table>
 
-<table class="first-deffn def-block" width="100%">
+<table class="first-deffn def-block">
 <tr class="deffn def-line" id="index-n_002d_002dame-1"><td 
class="call-def"><strong class="def-name">n--ame</strong></td><td 
class="category-def">[c&ndash;ategory]</td></tr>
 <tr><td colspan="2"><p>d&ndash;effn no arg
 </p></td></tr></table>
 
-<table class="first-deftypefn def-block" width="100%">
+<table class="first-deftypefn def-block">
 <tr class="deftypefn def-line" id="index-d_002d_002deftypefn_005fname"><td 
class="call-def"><code class="def-type">t--ype</code> <strong 
class="def-name">d--eftypefn_name</strong> <code 
class="def-code-arguments">a--rguments...</code></td><td 
class="category-def">[c&ndash;ategory]</td></tr>
 <tr><td colspan="2"><p>d&ndash;eftypefn
 </p></td></tr></table>
 
-<table class="first-deftypefn def-block" width="100%">
+<table class="first-deftypefn def-block">
 <tr class="deftypefn def-line" id="index-d_002d_002deftypefn_005fname-1"><td 
class="call-def"><code class="def-type">t--ype</code> <strong 
class="def-name">d--eftypefn_name</strong></td><td 
class="category-def">[c&ndash;ategory]</td></tr>
 <tr><td colspan="2"><p>d&ndash;eftypefn no arg
 </p></td></tr></table>
 
-<table class="first-deftypeop def-block" width="100%">
+<table class="first-deftypeop def-block">
 <tr class="deftypeop def-line" 
id="index-d_002d_002deftypeop_005fname-on-c_002d_002dlass"><td 
class="call-def"><code class="def-type">t--ype</code> <strong 
class="def-name">d--eftypeop_name</strong> <code 
class="def-code-arguments">a--rguments...</code></td><td 
class="category-def">[c&ndash;ategory on <code 
class="code">c--lass</code>]</td></tr>
 <tr><td colspan="2"><p>d&ndash;eftypeop
 </p></td></tr></table>
 
-<table class="first-deftypeop def-block" width="100%">
+<table class="first-deftypeop def-block">
 <tr class="deftypeop def-line" 
id="index-d_002d_002deftypeop_005fname-on-c_002d_002dlass-1"><td 
class="call-def"><code class="def-type">t--ype</code> <strong 
class="def-name">d--eftypeop_name</strong></td><td 
class="category-def">[c&ndash;ategory on <code 
class="code">c--lass</code>]</td></tr>
 <tr><td colspan="2"><p>d&ndash;eftypeop no arg
 </p></td></tr></table>
 
-<table class="first-deftypevr def-block" width="100%">
+<table class="first-deftypevr def-block">
 <tr class="deftypevr def-line" id="index-d_002d_002deftypevr_005fname"><td 
class="call-def"><code class="def-type">t--ype</code> <strong 
class="def-name">d--eftypevr_name</strong></td><td 
class="category-def">[c&ndash;ategory]</td></tr>
 <tr><td colspan="2"><p>d&ndash;eftypevr
 </p></td></tr></table>
 
-<table class="first-defcv def-block" width="100%">
+<table class="first-defcv def-block">
 <tr class="defcv def-line" id="index-d_002d_002defcv_005fname"><td 
class="call-def"><strong class="def-name">d--efcv_name</strong></td><td 
class="category-def">[c&ndash;ategory of <code 
class="code">c--lass</code>]</td></tr>
 <tr><td colspan="2"><p>d&ndash;efcv
 </p></td></tr></table>
 
-<table class="first-defcv def-block" width="100%">
+<table class="first-defcv def-block">
 <tr class="defcv def-line" id="index-d_002d_002defcv_005fname-1"><td 
class="call-def"><strong class="def-name">d--efcv_name</strong> <var 
class="def-var-arguments">a&ndash;rguments...</var></td><td 
class="category-def">[c&ndash;ategory of <code 
class="code">c--lass</code>]</td></tr>
 <tr><td colspan="2"><p>d&ndash;efcv with arguments
 </p></td></tr></table>
 
-<table class="first-deftypecv def-block" width="100%">
+<table class="first-deftypecv def-block">
 <tr class="deftypecv def-line" 
id="index-d_002d_002deftypecv_005fname-of-c_002d_002dlass"><td 
class="call-def"><code class="def-type">t--ype</code> <strong 
class="def-name">d--eftypecv_name</strong></td><td 
class="category-def">[c&ndash;ategory of <code 
class="code">c--lass</code>]</td></tr>
 <tr><td colspan="2"><p>d&ndash;eftypecv
 </p></td></tr></table>
 
-<table class="first-deftypecv def-block" width="100%">
+<table class="first-deftypecv def-block">
 <tr class="deftypecv def-line" 
id="index-d_002d_002deftypecv_005fname-of-c_002d_002dlass-1"><td 
class="call-def"><code class="def-type">t--ype</code> <strong 
class="def-name">d--eftypecv_name</strong> <code 
class="def-code-arguments">a--rguments...</code></td><td 
class="category-def">[c&ndash;ategory of <code 
class="code">c--lass</code>]</td></tr>
 <tr><td colspan="2"><p>d&ndash;eftypecv with arguments
 </p></td></tr></table>
 
-<table class="first-defop def-block" width="100%">
+<table class="first-defop def-block">
 <tr class="defop def-line" 
id="index-d_002d_002defop_005fname-on-c_002d_002dlass"><td 
class="call-def"><strong class="def-name">d--efop_name</strong> <var 
class="def-var-arguments">a&ndash;rguments...</var></td><td 
class="category-def">[c&ndash;ategory on <code 
class="code">c--lass</code>]</td></tr>
 <tr><td colspan="2"><p>d&ndash;efop
 </p></td></tr></table>
 
-<table class="first-defop def-block" width="100%">
+<table class="first-defop def-block">
 <tr class="defop def-line" 
id="index-d_002d_002defop_005fname-on-c_002d_002dlass-1"><td 
class="call-def"><strong class="def-name">d--efop_name</strong></td><td 
class="category-def">[c&ndash;ategory on <code 
class="code">c--lass</code>]</td></tr>
 <tr><td colspan="2"><p>d&ndash;efop no arg
 </p></td></tr></table>
 
-<table class="first-deftp def-block" width="100%">
+<table class="first-deftp def-block">
 <tr class="deftp def-line" id="index-d_002d_002deftp_005fname"><td 
class="call-def"><strong class="def-name">d--eftp_name</strong> <var 
class="def-var-arguments">a&ndash;ttributes...</var></td><td 
class="category-def">[c&ndash;ategory]</td></tr>
 <tr><td colspan="2"><p>d&ndash;eftp
 </p></td></tr></table>
 
-<table class="first-deffn first-defun-alias-first-deffn def-block" 
width="100%">
+<table class="first-deffn first-defun-alias-first-deffn def-block">
 <tr class="deffn defun-alias-deffn def-line" 
id="index-d_002d_002defun_005fname"><td class="call-def"><strong 
class="def-name">d--efun_name</strong> <var 
class="def-var-arguments">a&ndash;rguments...</var></td><td 
class="category-def">[Function]</td></tr>
 <tr><td colspan="2"><p>d&ndash;efun
 </p></td></tr></table>
 
-<table class="first-deffn first-defmac-alias-first-deffn def-block" 
width="100%">
+<table class="first-deffn first-defmac-alias-first-deffn def-block">
 <tr class="deffn defmac-alias-deffn def-line" 
id="index-d_002d_002defmac_005fname"><td class="call-def"><strong 
class="def-name">d--efmac_name</strong> <var 
class="def-var-arguments">a&ndash;rguments...</var></td><td 
class="category-def">[Macro]</td></tr>
 <tr><td colspan="2"><p>d&ndash;efmac
 </p></td></tr></table>
 
-<table class="first-deffn first-defspec-alias-first-deffn def-block" 
width="100%">
+<table class="first-deffn first-defspec-alias-first-deffn def-block">
 <tr class="deffn defspec-alias-deffn def-line" 
id="index-d_002d_002defspec_005fname"><td class="call-def"><strong 
class="def-name">d--efspec_name</strong> <var 
class="def-var-arguments">a&ndash;rguments...</var></td><td 
class="category-def">[Special Form]</td></tr>
 <tr><td colspan="2"><p>d&ndash;efspec
 </p></td></tr></table>
 
-<table class="first-defvr first-defvar-alias-first-defvr def-block" 
width="100%">
+<table class="first-defvr first-defvar-alias-first-defvr def-block">
 <tr class="defvr defvar-alias-defvr def-line" 
id="index-d_002d_002defvar_005fname"><td class="call-def"><strong 
class="def-name">d--efvar_name</strong></td><td 
class="category-def">[Variable]</td></tr>
 <tr><td colspan="2"><p>d&ndash;efvar
 </p></td></tr></table>
 
-<table class="first-defvr first-defvar-alias-first-defvr def-block" 
width="100%">
+<table class="first-defvr first-defvar-alias-first-defvr def-block">
 <tr class="defvr defvar-alias-defvr def-line" 
id="index-d_002d_002defvar_005fname-1"><td class="call-def"><strong 
class="def-name">d--efvar_name</strong> <var 
class="def-var-arguments">arg&ndash;var arg&ndash;var1</var></td><td 
class="category-def">[Variable]</td></tr>
 <tr><td colspan="2"><p>d&ndash;efvar with args
 </p></td></tr></table>
 
-<table class="first-defvr first-defopt-alias-first-defvr def-block" 
width="100%">
+<table class="first-defvr first-defopt-alias-first-defvr def-block">
 <tr class="defvr defopt-alias-defvr def-line" 
id="index-d_002d_002defopt_005fname"><td class="call-def"><strong 
class="def-name">d--efopt_name</strong></td><td class="category-def">[User 
Option]</td></tr>
 <tr><td colspan="2"><p>d&ndash;efopt
 </p></td></tr></table>
 
-<table class="first-deftypefn first-deftypefun-alias-first-deftypefn 
def-block" width="100%">
+<table class="first-deftypefn first-deftypefun-alias-first-deftypefn 
def-block">
 <tr class="deftypefn deftypefun-alias-deftypefn def-line" 
id="index-d_002d_002deftypefun_005fname"><td class="call-def"><code 
class="def-type">t--ype</code> <strong 
class="def-name">d--eftypefun_name</strong> <code 
class="def-code-arguments">a--rguments...</code></td><td 
class="category-def">[Function]</td></tr>
 <tr><td colspan="2"><p>d&ndash;eftypefun
 </p></td></tr></table>
 
-<table class="first-deftypevr first-deftypevar-alias-first-deftypevr 
def-block" width="100%">
+<table class="first-deftypevr first-deftypevar-alias-first-deftypevr 
def-block">
 <tr class="deftypevr deftypevar-alias-deftypevr def-line" 
id="index-d_002d_002deftypevar_005fname"><td class="call-def"><code 
class="def-type">t--ype</code> <strong 
class="def-name">d--eftypevar_name</strong></td><td 
class="category-def">[Variable]</td></tr>
 <tr><td colspan="2"><p>d&ndash;eftypevar
 </p></td></tr></table>
 
-<table class="first-defcv first-defivar-alias-first-defcv def-block" 
width="100%">
+<table class="first-defcv first-defivar-alias-first-defcv def-block">
 <tr class="defcv defivar-alias-defcv def-line" 
id="index-d_002d_002defivar_005fname-of-c_002d_002dlass"><td 
class="call-def"><strong class="def-name">d--efivar_name</strong></td><td 
class="category-def">[Instance Variable of <code 
class="code">c--lass</code>]</td></tr>
 <tr><td colspan="2"><p>d&ndash;efivar
 </p></td></tr></table>
 
-<table class="first-deftypecv first-deftypeivar-alias-first-deftypecv 
def-block" width="100%">
+<table class="first-deftypecv first-deftypeivar-alias-first-deftypecv 
def-block">
 <tr class="deftypecv deftypeivar-alias-deftypecv def-line" 
id="index-d_002d_002deftypeivar_005fname-of-c_002d_002dlass"><td 
class="call-def"><code class="def-type">t--ype</code> <strong 
class="def-name">d--eftypeivar_name</strong></td><td 
class="category-def">[Instance Variable of <code 
class="code">c--lass</code>]</td></tr>
 <tr><td colspan="2"><p>d&ndash;eftypeivar
 </p></td></tr></table>
 
-<table class="first-defop first-defmethod-alias-first-defop def-block" 
width="100%">
+<table class="first-defop first-defmethod-alias-first-defop def-block">
 <tr class="defop defmethod-alias-defop def-line" 
id="index-d_002d_002defmethod_005fname-on-c_002d_002dlass"><td 
class="call-def"><strong class="def-name">d--efmethod_name</strong> <var 
class="def-var-arguments">a&ndash;rguments...</var></td><td 
class="category-def">[Method on <code class="code">c--lass</code>]</td></tr>
 <tr><td colspan="2"><p>d&ndash;efmethod
 </p></td></tr></table>
 
-<table class="first-deftypeop first-deftypemethod-alias-first-deftypeop 
def-block" width="100%">
+<table class="first-deftypeop first-deftypemethod-alias-first-deftypeop 
def-block">
 <tr class="deftypeop deftypemethod-alias-deftypeop def-line" 
id="index-d_002d_002deftypemethod_005fname-on-c_002d_002dlass"><td 
class="call-def"><code class="def-type">t--ype</code> <strong 
class="def-name">d--eftypemethod_name</strong> <code 
class="def-code-arguments">a--rguments...</code></td><td 
class="category-def">[Method on <code class="code">c--lass</code>]</td></tr>
 <tr><td colspan="2"><p>d&ndash;eftypemethod
 </p></td></tr></table>
 
 
-<table class="first-deftypefn first-deftypefun-alias-first-deftypefn 
def-block" width="100%">
+<table class="first-deftypefn first-deftypefun-alias-first-deftypefn 
def-block">
 <tr class="deftypefn deftypefun-alias-deftypefn def-line" id="index-name2"><td 
class="call-def"><code class="def-type">data-type2</code><br> <strong 
class="def-name">name2</strong> <code 
class="def-code-arguments">arguments2...</code></td><td 
class="category-def">[Function]</td></tr>
 <tr><td colspan="2"><p>aaa2
 </p></td></tr></table>
 
-<table class="first-deftypefn def-block" width="100%">
+<table class="first-deftypefn def-block">
 <tr class="deftypefn def-line" id="index-d_002d_002deftypefn_005fname2"><td 
class="call-def"><code class="def-type">t--ype2</code><br> <strong 
class="def-name">d--eftypefn_name2</strong></td><td 
class="category-def">[c&ndash;ategory2]</td></tr>
 <tr><td colspan="2"><p>d&ndash;eftypefn no arg2
 </p></td></tr></table>
 
-<table class="first-deftypeop def-block" width="100%">
+<table class="first-deftypeop def-block">
 <tr class="deftypeop def-line" 
id="index-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2"><td 
class="call-def"><code class="def-type">t--ype2</code><br> <strong 
class="def-name">d--eftypeop_name2</strong> <code 
class="def-code-arguments">a--rguments2...</code></td><td 
class="category-def">[c&ndash;ategory2 on <code 
class="code">c--lass2</code>]</td></tr>
 <tr><td colspan="2"><p>d&ndash;eftypeop2
 </p></td></tr></table>
 
-<table class="first-deftypeop def-block" width="100%">
+<table class="first-deftypeop def-block">
 <tr class="deftypeop def-line" 
id="index-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-1"><td 
class="call-def"><code class="def-type">t--ype2</code><br> <strong 
class="def-name">d--eftypeop_name2</strong></td><td 
class="category-def">[c&ndash;ategory2 on <code 
class="code">c--lass2</code>]</td></tr>
 <tr><td colspan="2"><p>d&ndash;eftypeop no arg2
 </p></td></tr></table>
 
-<table class="first-deftypecv def-block" width="100%">
+<table class="first-deftypecv def-block">
 <tr class="deftypecv def-line" 
id="index-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2"><td 
class="call-def"><code class="def-type">t--ype2</code> <strong 
class="def-name">d--eftypecv_name2</strong></td><td 
class="category-def">[c&ndash;ategory2 of <code 
class="code">c--lass2</code>]</td></tr>
 <tr><td colspan="2"><p>d&ndash;eftypecv2
 </p></td></tr></table>
 
-<table class="first-deftypecv def-block" width="100%">
+<table class="first-deftypecv def-block">
 <tr class="deftypecv def-line" 
id="index-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-1"><td 
class="call-def"><code class="def-type">t--ype2</code> <strong 
class="def-name">d--eftypecv_name2</strong> <code 
class="def-code-arguments">a--rguments2...</code></td><td 
class="category-def">[c&ndash;ategory2 of <code 
class="code">c--lass2</code>]</td></tr>
 <tr><td colspan="2"><p>d&ndash;eftypecv with arguments2
 </p></td></tr></table>
 
-<table class="first-deffn def-block" width="100%">
+<table class="first-deffn def-block">
 <tr class="deffn def-line" id="index-arg2"><td class="call-def"><strong 
class="def-name">arg2</strong></td><td class="category-def">[fun2]</td></tr>
 <tr><td colspan="2"><p>fff2
 </p></td></tr></table>
@@ -3085,7 +3086,7 @@ html ''
 </p></dd>
 </dl>
 
-<table class="first-deffn def-block" width="100%">
+<table class="first-deffn def-block">
 <tr class="deffn def-line"><td class="call-def"></td><td 
class="category-def">[fun]</td></tr>
 <tr class="deffnx def-cmd-deffn def-line" id="index-machin-2"><td 
class="call-def"><strong class="def-name">machin</strong> <var 
class="def-var-arguments">bidule chose and</var></td><td 
class="category-def">[truc]</td></tr>
 <tr class="deffnx def-cmd-deffn def-line" id="index-machin-3"><td 
class="call-def"><strong class="def-name">machin</strong> <var 
class="def-var-arguments">bidule chose and  after</var></td><td 
class="category-def">[truc]</td></tr>
@@ -3096,7 +3097,7 @@ html ''
 </p></td></tr><tr class="deffnx def-cmd-deffn def-line" id="index-after"><td 
class="call-def"><strong class="def-name">after</strong> <var 
class="def-var-arguments">a deff item</var></td><td 
class="category-def">[truc]</td></tr>
 </table>
 
-<table class="first-deffn def-block" width="100%">
+<table class="first-deffn def-block">
 <tr class="deffn def-line" id="index-invalid"><td class="call-def"><strong 
class="def-name"><var class="var">invalid</var></strong> <var 
class="def-var-arguments">a g</var></td><td 
class="category-def">[fsetinv]</td></tr>
 <tr class="deffnx def-cmd-deffn def-line"><td class="call-def"></td><td 
class="category-def">[<b class="b">id &lsquo;<samp class="samp">i</samp>&rsquo; 
ule</b>]</td></tr>
 <tr class="deffnx def-cmd-deffn def-line"><td class="call-def"></td><td 
class="category-def">[]</td></tr>
@@ -3789,19 +3790,19 @@ $ wget 
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.sub?rev=HEA
 </pre></div>
 <pre class="example-preformatted">
 
-</pre><table class="first-deffn def-block" width="100%">
+</pre><table class="first-deffn def-block">
 <tr class="deffn def-line" id="index-d_002d_002deffn_005fname-1"><td 
class="call-def"><strong class="def-name">d--effn_name</strong> <var 
class="def-var-arguments">a&ndash;rguments...</var></td><td 
class="category-def">[c--ategory]</td></tr>
 <tr><td colspan="2"><pre class="example-preformatted">d--effn
 </pre></td></tr></table>
 <pre class="example-preformatted">
 
-</pre><table class="first-deffn def-block" width="100%">
+</pre><table class="first-deffn def-block">
 <tr class="deffn def-line" id="index-de_002d_002dffn_005fname-1"><td 
class="call-def"><strong class="def-name">de--ffn_name</strong> <var 
class="def-var-arguments">ar&ndash;guments    more args 
  even more so</var></td><td class="category-def">[cate--gory]</td></tr>
 <tr><td colspan="2"><pre class="example-preformatted">def--fn
 </pre></td></tr></table>
 <pre class="example-preformatted"> 
-</pre><table class="first-deffn def-block" width="100%">
+</pre><table class="first-deffn def-block">
 <tr class="deffn def-line" id="index-i-2"><td class="call-def"><strong 
class="def-name"><var class="var">i</var></strong> <var 
class="def-var-arguments">a g</var></td><td 
class="category-def">[fset]</td></tr>
 <tr><td colspan="2"><pre class="example-preformatted"><a 
class="index-entry-id" 
id="index-index-entry-within-deffn-1"></a></pre></td></tr><tr class="deffnx 
def-cmd-deffn def-line" id="index-truc-2"><td class="call-def"><strong 
class="def-name">truc</strong></td><td class="category-def">[cmde]</td></tr>
 <tr class="deffnx def-cmd-deffn def-line" id="index-log-trap-1"><td 
class="call-def"><strong class="def-name">log trap</strong></td><td 
class="category-def">[Command]</td></tr>
@@ -3822,18 +3823,18 @@ $ wget 
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.sub?rev=HEA
 <pre class="example-preformatted">
 
 
-</pre><table class="first-deffn def-block" width="100%">
+</pre><table class="first-deffn def-block">
 <tr class="deffn def-line" id="index-deffn-2"><td class="call-def"><strong 
class="def-name">deffn</strong></td><td class="category-def">[empty]</td></tr>
 </table>
 <pre class="example-preformatted">
 
-</pre><table class="first-deffn def-block" width="100%">
+</pre><table class="first-deffn def-block">
 <tr class="deffn def-line" id="index-deffn-3"><td class="call-def"><strong 
class="def-name">deffn</strong> <var class="def-var-arguments">with 
deffnx</var></td><td class="category-def">[empty]</td></tr>
 <tr class="deffnx def-cmd-deffn def-line" id="index-deffnx-3"><td 
class="call-def"><strong class="def-name">deffnx</strong></td><td 
class="category-def">[empty]</td></tr>
 </table>
 <pre class="example-preformatted">
 
-</pre><table class="first-deffn def-block" width="100%">
+</pre><table class="first-deffn def-block">
 <tr class="deffn def-line" id="index-i-3"><td class="call-def"><strong 
class="def-name"><var class="var">i</var></strong> <var 
class="def-var-arguments">a g</var></td><td 
class="category-def">[fset]</td></tr>
 <tr class="deffnx def-cmd-deffn def-line" id="index-truc-3"><td 
class="call-def"><strong class="def-name">truc</strong></td><td 
class="category-def">[cmde]</td></tr>
 <tr><td colspan="2"><pre class="example-preformatted">text in def item for 
second def item
@@ -3841,206 +3842,206 @@ $ wget 
'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.sub?rev=HEA
 <pre class="example-preformatted">
 
 
-</pre><table class="first-defvr def-block" width="100%">
+</pre><table class="first-defvr def-block">
 <tr class="defvr def-line" id="index-d_002d_002defvr_005fname-1"><td 
class="call-def"><strong class="def-name">d--efvr_name</strong></td><td 
class="category-def">[c--ategory]</td></tr>
 <tr><td colspan="2"><pre class="example-preformatted">d--efvr
 </pre></td></tr></table>
 <pre class="example-preformatted">
 
-</pre><table class="first-deffn def-block" width="100%">
+</pre><table class="first-deffn def-block">
 <tr class="deffn def-line" id="index-n_002d_002dame-2"><td 
class="call-def"><strong class="def-name">n--ame</strong> <var 
class="def-var-arguments">a&ndash;rguments...</var></td><td 
class="category-def">[c--ategory]</td></tr>
 <tr><td colspan="2"><pre class="example-preformatted">d--effn
 </pre></td></tr></table>
 <pre class="example-preformatted">
 
-</pre><table class="first-deffn def-block" width="100%">
+</pre><table class="first-deffn def-block">
 <tr class="deffn def-line" id="index-n_002d_002dame-3"><td 
class="call-def"><strong class="def-name">n--ame</strong></td><td 
class="category-def">[c--ategory]</td></tr>
 <tr><td colspan="2"><pre class="example-preformatted">d--effn no arg
 </pre></td></tr></table>
 <pre class="example-preformatted">
 
-</pre><table class="first-deftypefn def-block" width="100%">
+</pre><table class="first-deftypefn def-block">
 <tr class="deftypefn def-line" id="index-d_002d_002deftypefn_005fname-2"><td 
class="call-def"><code class="def-type">t--ype</code> <strong 
class="def-name">d--eftypefn_name</strong> <code 
class="def-code-arguments">a--rguments...</code></td><td 
class="category-def">[c--ategory]</td></tr>
 <tr><td colspan="2"><pre class="example-preformatted">d--eftypefn
 </pre></td></tr></table>
 <pre class="example-preformatted">
 
-</pre><table class="first-deftypefn def-block" width="100%">
+</pre><table class="first-deftypefn def-block">
 <tr class="deftypefn def-line" id="index-d_002d_002deftypefn_005fname-3"><td 
class="call-def"><code class="def-type">t--ype</code> <strong 
class="def-name">d--eftypefn_name</strong></td><td 
class="category-def">[c--ategory]</td></tr>
 <tr><td colspan="2"><pre class="example-preformatted">d--eftypefn no arg
 </pre></td></tr></table>
 <pre class="example-preformatted">
 
-</pre><table class="first-deftypeop def-block" width="100%">
+</pre><table class="first-deftypeop def-block">
 <tr class="deftypeop def-line" 
id="index-d_002d_002deftypeop_005fname-on-c_002d_002dlass-2"><td 
class="call-def"><code class="def-type">t--ype</code> <strong 
class="def-name">d--eftypeop_name</strong> <code 
class="def-code-arguments">a--rguments...</code></td><td 
class="category-def">[c--ategory on <code class="code">c--lass</code>]</td></tr>
 <tr><td colspan="2"><pre class="example-preformatted">d--eftypeop
 </pre></td></tr></table>
 <pre class="example-preformatted">
 
-</pre><table class="first-deftypeop def-block" width="100%">
+</pre><table class="first-deftypeop def-block">
 <tr class="deftypeop def-line" 
id="index-d_002d_002deftypeop_005fname-on-c_002d_002dlass-3"><td 
class="call-def"><code class="def-type">t--ype</code> <strong 
class="def-name">d--eftypeop_name</strong></td><td 
class="category-def">[c--ategory on <code class="code">c--lass</code>]</td></tr>
 <tr><td colspan="2"><pre class="example-preformatted">d--eftypeop no arg
 </pre></td></tr></table>
 <pre class="example-preformatted">
 
-</pre><table class="first-deftypevr def-block" width="100%">
+</pre><table class="first-deftypevr def-block">
 <tr class="deftypevr def-line" id="index-d_002d_002deftypevr_005fname-1"><td 
class="call-def"><code class="def-type">t--ype</code> <strong 
class="def-name">d--eftypevr_name</strong></td><td 
class="category-def">[c--ategory]</td></tr>
 <tr><td colspan="2"><pre class="example-preformatted">d--eftypevr
 </pre></td></tr></table>
 <pre class="example-preformatted">
 
-</pre><table class="first-defcv def-block" width="100%">
+</pre><table class="first-defcv def-block">
 <tr class="defcv def-line" id="index-d_002d_002defcv_005fname-2"><td 
class="call-def"><strong class="def-name">d--efcv_name</strong></td><td 
class="category-def">[c--ategory of <code class="code">c--lass</code>]</td></tr>
 <tr><td colspan="2"><pre class="example-preformatted">d--efcv
 </pre></td></tr></table>
 <pre class="example-preformatted">
 
-</pre><table class="first-defcv def-block" width="100%">
+</pre><table class="first-defcv def-block">
 <tr class="defcv def-line" id="index-d_002d_002defcv_005fname-3"><td 
class="call-def"><strong class="def-name">d--efcv_name</strong> <var 
class="def-var-arguments">a&ndash;rguments...</var></td><td 
class="category-def">[c--ategory of <code class="code">c--lass</code>]</td></tr>
 <tr><td colspan="2"><pre class="example-preformatted">d--efcv with arguments
 </pre></td></tr></table>
 <pre class="example-preformatted">
 
-</pre><table class="first-deftypecv def-block" width="100%">
+</pre><table class="first-deftypecv def-block">
 <tr class="deftypecv def-line" 
id="index-d_002d_002deftypecv_005fname-of-c_002d_002dlass-2"><td 
class="call-def"><code class="def-type">t--ype</code> <strong 
class="def-name">d--eftypecv_name</strong></td><td 
class="category-def">[c--ategory of <code class="code">c--lass</code>]</td></tr>
 <tr><td colspan="2"><pre class="example-preformatted">d--eftypecv
 </pre></td></tr></table>
 <pre class="example-preformatted">
 
-</pre><table class="first-deftypecv def-block" width="100%">
+</pre><table class="first-deftypecv def-block">
 <tr class="deftypecv def-line" 
id="index-d_002d_002deftypecv_005fname-of-c_002d_002dlass-3"><td 
class="call-def"><code class="def-type">t--ype</code> <strong 
class="def-name">d--eftypecv_name</strong> <code 
class="def-code-arguments">a--rguments...</code></td><td 
class="category-def">[c--ategory of <code class="code">c--lass</code>]</td></tr>
 <tr><td colspan="2"><pre class="example-preformatted">d--eftypecv with 
arguments
 </pre></td></tr></table>
 <pre class="example-preformatted">
 
-</pre><table class="first-defop def-block" width="100%">
+</pre><table class="first-defop def-block">
 <tr class="defop def-line" 
id="index-d_002d_002defop_005fname-on-c_002d_002dlass-2"><td 
class="call-def"><strong class="def-name">d--efop_name</strong> <var 
class="def-var-arguments">a&ndash;rguments...</var></td><td 
class="category-def">[c--ategory on <code class="code">c--lass</code>]</td></tr>
 <tr><td colspan="2"><pre class="example-preformatted">d--efop
 </pre></td></tr></table>
 <pre class="example-preformatted">
 
-</pre><table class="first-defop def-block" width="100%">
+</pre><table class="first-defop def-block">
 <tr class="defop def-line" 
id="index-d_002d_002defop_005fname-on-c_002d_002dlass-3"><td 
class="call-def"><strong class="def-name">d--efop_name</strong></td><td 
class="category-def">[c--ategory on <code class="code">c--lass</code>]</td></tr>
 <tr><td colspan="2"><pre class="example-preformatted">d--efop no arg
 </pre></td></tr></table>
 <pre class="example-preformatted">
 
-</pre><table class="first-deftp def-block" width="100%">
+</pre><table class="first-deftp def-block">
 <tr class="deftp def-line" id="index-d_002d_002deftp_005fname-1"><td 
class="call-def"><strong class="def-name">d--eftp_name</strong> <var 
class="def-var-arguments">a&ndash;ttributes...</var></td><td 
class="category-def">[c--ategory]</td></tr>
 <tr><td colspan="2"><pre class="example-preformatted">d--eftp
 </pre></td></tr></table>
 <pre class="example-preformatted">
 
-</pre><table class="first-deffn first-defun-alias-first-deffn def-block" 
width="100%">
+</pre><table class="first-deffn first-defun-alias-first-deffn def-block">
 <tr class="deffn defun-alias-deffn def-line" 
id="index-d_002d_002defun_005fname-1"><td class="call-def"><strong 
class="def-name">d--efun_name</strong> <var 
class="def-var-arguments">a&ndash;rguments...</var></td><td 
class="category-def">[Function]</td></tr>
 <tr><td colspan="2"><pre class="example-preformatted">d--efun
 </pre></td></tr></table>
 <pre class="example-preformatted">
 
-</pre><table class="first-deffn first-defmac-alias-first-deffn def-block" 
width="100%">
+</pre><table class="first-deffn first-defmac-alias-first-deffn def-block">
 <tr class="deffn defmac-alias-deffn def-line" 
id="index-d_002d_002defmac_005fname-1"><td class="call-def"><strong 
class="def-name">d--efmac_name</strong> <var 
class="def-var-arguments">a&ndash;rguments...</var></td><td 
class="category-def">[Macro]</td></tr>
 <tr><td colspan="2"><pre class="example-preformatted">d--efmac
 </pre></td></tr></table>
 <pre class="example-preformatted">
 
-</pre><table class="first-deffn first-defspec-alias-first-deffn def-block" 
width="100%">
+</pre><table class="first-deffn first-defspec-alias-first-deffn def-block">
 <tr class="deffn defspec-alias-deffn def-line" 
id="index-d_002d_002defspec_005fname-1"><td class="call-def"><strong 
class="def-name">d--efspec_name</strong> <var 
class="def-var-arguments">a&ndash;rguments...</var></td><td 
class="category-def">[Special Form]</td></tr>
 <tr><td colspan="2"><pre class="example-preformatted">d--efspec
 </pre></td></tr></table>
 <pre class="example-preformatted">
 
-</pre><table class="first-defvr first-defvar-alias-first-defvr def-block" 
width="100%">
+</pre><table class="first-defvr first-defvar-alias-first-defvr def-block">
 <tr class="defvr defvar-alias-defvr def-line" 
id="index-d_002d_002defvar_005fname-2"><td class="call-def"><strong 
class="def-name">d--efvar_name</strong></td><td 
class="category-def">[Variable]</td></tr>
 <tr><td colspan="2"><pre class="example-preformatted">d--efvar
 </pre></td></tr></table>
 <pre class="example-preformatted">
 
-</pre><table class="first-defvr first-defvar-alias-first-defvr def-block" 
width="100%">
+</pre><table class="first-defvr first-defvar-alias-first-defvr def-block">
 <tr class="defvr defvar-alias-defvr def-line" 
id="index-d_002d_002defvar_005fname-3"><td class="call-def"><strong 
class="def-name">d--efvar_name</strong> <var 
class="def-var-arguments">arg&ndash;var arg&ndash;var1</var></td><td 
class="category-def">[Variable]</td></tr>
 <tr><td colspan="2"><pre class="example-preformatted">d--efvar with args
 </pre></td></tr></table>
 <pre class="example-preformatted">
 
-</pre><table class="first-defvr first-defopt-alias-first-defvr def-block" 
width="100%">
+</pre><table class="first-defvr first-defopt-alias-first-defvr def-block">
 <tr class="defvr defopt-alias-defvr def-line" 
id="index-d_002d_002defopt_005fname-1"><td class="call-def"><strong 
class="def-name">d--efopt_name</strong></td><td class="category-def">[User 
Option]</td></tr>
 <tr><td colspan="2"><pre class="example-preformatted">d--efopt
 </pre></td></tr></table>
 <pre class="example-preformatted">
 
-</pre><table class="first-deftypefn first-deftypefun-alias-first-deftypefn 
def-block" width="100%">
+</pre><table class="first-deftypefn first-deftypefun-alias-first-deftypefn 
def-block">
 <tr class="deftypefn deftypefun-alias-deftypefn def-line" 
id="index-d_002d_002deftypefun_005fname-1"><td class="call-def"><code 
class="def-type">t--ype</code> <strong 
class="def-name">d--eftypefun_name</strong> <code 
class="def-code-arguments">a--rguments...</code></td><td 
class="category-def">[Function]</td></tr>
 <tr><td colspan="2"><pre class="example-preformatted">d--eftypefun
 </pre></td></tr></table>
 <pre class="example-preformatted">
 
-</pre><table class="first-deftypevr first-deftypevar-alias-first-deftypevr 
def-block" width="100%">
+</pre><table class="first-deftypevr first-deftypevar-alias-first-deftypevr 
def-block">
 <tr class="deftypevr deftypevar-alias-deftypevr def-line" 
id="index-d_002d_002deftypevar_005fname-1"><td class="call-def"><code 
class="def-type">t--ype</code> <strong 
class="def-name">d--eftypevar_name</strong></td><td 
class="category-def">[Variable]</td></tr>
 <tr><td colspan="2"><pre class="example-preformatted">d--eftypevar
 </pre></td></tr></table>
 <pre class="example-preformatted">
 
-</pre><table class="first-defcv first-defivar-alias-first-defcv def-block" 
width="100%">
+</pre><table class="first-defcv first-defivar-alias-first-defcv def-block">
 <tr class="defcv defivar-alias-defcv def-line" 
id="index-d_002d_002defivar_005fname-of-c_002d_002dlass-1"><td 
class="call-def"><strong class="def-name">d--efivar_name</strong></td><td 
class="category-def">[Instance Variable of <code 
class="code">c--lass</code>]</td></tr>
 <tr><td colspan="2"><pre class="example-preformatted">d--efivar
 </pre></td></tr></table>
 <pre class="example-preformatted">
 
-</pre><table class="first-deftypecv first-deftypeivar-alias-first-deftypecv 
def-block" width="100%">
+</pre><table class="first-deftypecv first-deftypeivar-alias-first-deftypecv 
def-block">
 <tr class="deftypecv deftypeivar-alias-deftypecv def-line" 
id="index-d_002d_002deftypeivar_005fname-of-c_002d_002dlass-1"><td 
class="call-def"><code class="def-type">t--ype</code> <strong 
class="def-name">d--eftypeivar_name</strong></td><td 
class="category-def">[Instance Variable of <code 
class="code">c--lass</code>]</td></tr>
 <tr><td colspan="2"><pre class="example-preformatted">d--eftypeivar
 </pre></td></tr></table>
 <pre class="example-preformatted">
 
-</pre><table class="first-defop first-defmethod-alias-first-defop def-block" 
width="100%">
+</pre><table class="first-defop first-defmethod-alias-first-defop def-block">
 <tr class="defop defmethod-alias-defop def-line" 
id="index-d_002d_002defmethod_005fname-on-c_002d_002dlass-1"><td 
class="call-def"><strong class="def-name">d--efmethod_name</strong> <var 
class="def-var-arguments">a&ndash;rguments...</var></td><td 
class="category-def">[Method on <code class="code">c--lass</code>]</td></tr>
 <tr><td colspan="2"><pre class="example-preformatted">d--efmethod
 </pre></td></tr></table>
 <pre class="example-preformatted">
 
-</pre><table class="first-deftypeop first-deftypemethod-alias-first-deftypeop 
def-block" width="100%">
+</pre><table class="first-deftypeop first-deftypemethod-alias-first-deftypeop 
def-block">
 <tr class="deftypeop deftypemethod-alias-deftypeop def-line" 
id="index-d_002d_002deftypemethod_005fname-on-c_002d_002dlass-1"><td 
class="call-def"><code class="def-type">t--ype</code> <strong 
class="def-name">d--eftypemethod_name</strong> <code 
class="def-code-arguments">a--rguments...</code></td><td 
class="category-def">[Method on <code class="code">c--lass</code>]</td></tr>
 <tr><td colspan="2"><pre class="example-preformatted">d--eftypemethod
 </pre></td></tr></table>
 <pre class="example-preformatted">
 
 
-</pre><table class="first-deftypefn first-deftypefun-alias-first-deftypefn 
def-block" width="100%">
+</pre><table class="first-deftypefn first-deftypefun-alias-first-deftypefn 
def-block">
 <tr class="deftypefn deftypefun-alias-deftypefn def-line" 
id="index-name2-1"><td class="call-def"><code 
class="def-type">data-type2</code><br> <strong class="def-name">name2</strong> 
<code class="def-code-arguments">arguments2...</code></td><td 
class="category-def">[Function]</td></tr>
 <tr><td colspan="2"><pre class="example-preformatted">aaa2
 </pre></td></tr></table>
 <pre class="example-preformatted">
 
-</pre><table class="first-deftypefn def-block" width="100%">
+</pre><table class="first-deftypefn def-block">
 <tr class="deftypefn def-line" id="index-d_002d_002deftypefn_005fname2-1"><td 
class="call-def"><code class="def-type">t--ype2</code><br> <strong 
class="def-name">d--eftypefn_name2</strong></td><td 
class="category-def">[c--ategory2]</td></tr>
 <tr><td colspan="2"><pre class="example-preformatted">d--eftypefn no arg2
 </pre></td></tr></table>
 <pre class="example-preformatted">
 
-</pre><table class="first-deftypeop def-block" width="100%">
+</pre><table class="first-deftypeop def-block">
 <tr class="deftypeop def-line" 
id="index-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-2"><td 
class="call-def"><code class="def-type">t--ype2</code><br> <strong 
class="def-name">d--eftypeop_name2</strong> <code 
class="def-code-arguments">a--rguments2...</code></td><td 
class="category-def">[c--ategory2 on <code 
class="code">c--lass2</code>]</td></tr>
 <tr><td colspan="2"><pre class="example-preformatted">d--eftypeop2
 </pre></td></tr></table>
 <pre class="example-preformatted">
 
-</pre><table class="first-deftypeop def-block" width="100%">
+</pre><table class="first-deftypeop def-block">
 <tr class="deftypeop def-line" 
id="index-d_002d_002deftypeop_005fname2-on-c_002d_002dlass2-3"><td 
class="call-def"><code class="def-type">t--ype2</code><br> <strong 
class="def-name">d--eftypeop_name2</strong></td><td 
class="category-def">[c--ategory2 on <code 
class="code">c--lass2</code>]</td></tr>
 <tr><td colspan="2"><pre class="example-preformatted">d--eftypeop no arg2
 </pre></td></tr></table>
 <pre class="example-preformatted">
 
-</pre><table class="first-deftypecv def-block" width="100%">
+</pre><table class="first-deftypecv def-block">
 <tr class="deftypecv def-line" 
id="index-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-2"><td 
class="call-def"><code class="def-type">t--ype2</code> <strong 
class="def-name">d--eftypecv_name2</strong></td><td 
class="category-def">[c--ategory2 of <code 
class="code">c--lass2</code>]</td></tr>
 <tr><td colspan="2"><pre class="example-preformatted">d--eftypecv2
 </pre></td></tr></table>
 <pre class="example-preformatted">
 
-</pre><table class="first-deftypecv def-block" width="100%">
+</pre><table class="first-deftypecv def-block">
 <tr class="deftypecv def-line" 
id="index-d_002d_002deftypecv_005fname2-of-c_002d_002dlass2-3"><td 
class="call-def"><code class="def-type">t--ype2</code> <strong 
class="def-name">d--eftypecv_name2</strong> <code 
class="def-code-arguments">a--rguments2...</code></td><td 
class="category-def">[c--ategory2 of <code 
class="code">c--lass2</code>]</td></tr>
 <tr><td colspan="2"><pre class="example-preformatted">d--eftypecv with 
arguments2
 </pre></td></tr></table>
 <pre class="example-preformatted">
 
-</pre><table class="first-deffn def-block" width="100%">
+</pre><table class="first-deffn def-block">
 <tr class="deffn def-line" id="index-arg2-1"><td class="call-def"><strong 
class="def-name">arg2</strong></td><td class="category-def">[fun2]</td></tr>
 <tr><td colspan="2"><pre class="example-preformatted">fff2
 </pre></td></tr></table>
@@ -4337,7 +4338,7 @@ Invalid use of @':
 </dl>
 <pre class="example-preformatted">
 
-</pre><table class="first-deffn def-block" width="100%">
+</pre><table class="first-deffn def-block">
 <tr class="deffn def-line"><td class="call-def"></td><td 
class="category-def">[fun]</td></tr>
 <tr class="deffnx def-cmd-deffn def-line" id="index-machin-8"><td 
class="call-def"><strong class="def-name">machin</strong> <var 
class="def-var-arguments">bidule chose and</var></td><td 
class="category-def">[truc]</td></tr>
 <tr class="deffnx def-cmd-deffn def-line" id="index-machin-9"><td 
class="call-def"><strong class="def-name">machin</strong> <var 
class="def-var-arguments">bidule chose and  after</var></td><td 
class="category-def">[truc]</td></tr>
@@ -4349,7 +4350,7 @@ Invalid use of @':
 </table>
 <pre class="example-preformatted">
 
-</pre><table class="first-deffn def-block" width="100%">
+</pre><table class="first-deffn def-block">
 <tr class="deffn def-line" id="index-invalid-1"><td class="call-def"><strong 
class="def-name"><var class="var">invalid</var></strong> <var 
class="def-var-arguments">a g</var></td><td 
class="category-def">[fsetinv]</td></tr>
 <tr class="deffnx def-cmd-deffn def-line"><td class="call-def"></td><td 
class="category-def">[<b class="b">id &lsquo;<samp class="samp">i</samp>&rsquo; 
ule</b>]</td></tr>
 <tr class="deffnx def-cmd-deffn def-line"><td class="call-def"></td><td 
class="category-def">[]</td></tr>



reply via email to

[Prev in Thread] Current Thread [Next in Thread]