texi2html-cvs
[Top][All Lists]
Advanced

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

[Texi2html-cvs] texi2html ChangeLog texi2html.pl test/formattin...


From: Patrice Dumas
Subject: [Texi2html-cvs] texi2html ChangeLog texi2html.pl test/formattin...
Date: Mon, 27 Apr 2009 21:22:12 +0000

CVSROOT:        /cvsroot/texi2html
Module name:    texi2html
Changes by:     Patrice Dumas <pertusus>        09/04/27 21:22:12

Modified files:
        .              : ChangeLog texi2html.pl 
        test/formatting/res/def_end_of_line: def_end_of_line.2 
        test/formatting/res/texi_def_end_of_line: 
                                                  def_end_of_line.passfirst 
Added files:
        test/formatting/res/def_cmds_info: def_cmds.info 

Log message:
                Fix line count with a def* protected end of line at the end of
                the file.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/texi2html/ChangeLog?cvsroot=texi2html&r1=1.379&r2=1.380
http://cvs.savannah.gnu.org/viewcvs/texi2html/texi2html.pl?cvsroot=texi2html&r1=1.280&r2=1.281
http://cvs.savannah.gnu.org/viewcvs/texi2html/test/formatting/res/def_cmds_info/def_cmds.info?cvsroot=texi2html&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/texi2html/test/formatting/res/def_end_of_line/def_end_of_line.2?cvsroot=texi2html&r1=1.2&r2=1.3
http://cvs.savannah.gnu.org/viewcvs/texi2html/test/formatting/res/texi_def_end_of_line/def_end_of_line.passfirst?cvsroot=texi2html&r1=1.1&r2=1.2

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/texi2html/texi2html/ChangeLog,v
retrieving revision 1.379
retrieving revision 1.380
diff -u -b -r1.379 -r1.380
--- ChangeLog   27 Apr 2009 18:45:45 -0000      1.379
+++ ChangeLog   27 Apr 2009 21:22:10 -0000      1.380
@@ -3,6 +3,8 @@
        * texi2html.pl: simplify index handling and fix syn*index to do 
        the same than in the documentation and in makeinfo/texi2dvi.
        fix index_summary_file.
+       Fix line count with a def* protected end of line at the end of
+       the file.
        * texi2html.init: @page stops paragraphs.
 
 2009-04-25   Patrice Dumas  <address@hidden>

Index: texi2html.pl
===================================================================
RCS file: /cvsroot/texi2html/texi2html/texi2html.pl,v
retrieving revision 1.280
retrieving revision 1.281
diff -u -b -r1.280 -r1.281
--- texi2html.pl        27 Apr 2009 17:14:05 -0000      1.280
+++ texi2html.pl        27 Apr 2009 21:22:10 -0000      1.281
@@ -79,7 +79,7 @@
 }
 
 # CVS version:
-# $Id: texi2html.pl,v 1.280 2009/04/27 17:14:05 pertusus Exp $
+# $Id: texi2html.pl,v 1.281 2009/04/27 21:22:10 pertusus Exp $
 
 # Homepage:
 my $T2H_HOMEPAGE = "http://www.nongnu.org/texi2html/";;
@@ -4141,6 +4141,11 @@
              $texi_lines->[0] = $cline . $texi_lines->[0];
              next;
         }
+        # !defined($cline) may happen if $state->{'in_deff_line'} is true 
+        # but there is no more line, in case the last end of line is
+        # protected
+        $line_nr = shift (@$lines_numbers) unless (!defined($cline));
+
         if ($state->{'in_deff_line'})
         { # line stored in $state->{'in_deff_line'} was protected by @
           # and can be concatenated with the next line
@@ -4150,11 +4155,12 @@
             }
             else
             {# end of line protected at the very end of the file
+             # in that case there is also no line_nr anymore.
                 $cline = $state->{'in_deff_line'};
             }
             delete $state->{'in_deff_line'};
         }
-        $line_nr = shift (@$lines_numbers);
+
         #print STDERR "PASS_STRUCTURE: $cline";
         if (!$state->{'raw'} and !$state->{'verb'})
         {
@@ -4419,19 +4425,17 @@
         close_stack_structure(\$text, address@hidden, $state, $line_nr);
         if ($text)
         {
+            if (!exists($state->{'region_lines'}) or 
$Texi2HTML::Config::region_formats_kept{$state->{'region_lines'}->{'format'}})
+            {
+                push @doc_lines, split_lines($text);
+            }
             if (exists($state->{'region_lines'}))
             {
                 push @{$region_lines{$state->{'region_lines'}->{'format'}}}, 
                    split_lines($text);
-                push @doc_lines, split_lines($text) if 
($Texi2HTML::Config::region_formats_kept{$state->{'region_lines'}->{'format'}});
             }
-            else
-            {
-                push @doc_lines, split_lines($text);
             }
         }
-    }
-    #echo_warn ("At end of document, $state->{'region_lines'}->{'number'} 
$state->{'region_lines'}->{'format'} not closed") if 
(exists($state->{'region_lines'}));
     echo_warn ("$state->{'region_lines'}->{'number'} 
address@hidden>{'region_lines'}->{'format'} not closed", $line_nr) if 
(exists($state->{'region_lines'}));
     print STDERR "# end of pass structure\n" if $T2H_VERBOSE;
     # To remove once they are handled
@@ -7297,10 +7301,14 @@
         my $chomped_line = $cline;
         if (!chomp($chomped_line) and @$doc_lines)
         { # if the line has no end of line it is concatenated with the next
+          # this shouldn't happen anymore. And will certainly mess up
+          # line counting. Let it be a bug.
+          print STDERR "BUG: no end of line line passed in 
doc_line".format_line_number($line_nr)."\n";
              $doc_lines->[0] = $cline . $doc_lines->[0];
              next;
         }
         $line_nr = shift (@$doc_numbers);
+        print STDERR "BUG: line_nr not defined in pass_text. cline: $cline" if 
(!defined($cline));
         #print STDERR 
"$line_nr->{'file_name'}($line_nr->{'macro'},$line_nr->{'line_nr'}) $cline" if 
($line_nr);
        #print STDERR "PASS_TEXT: $cline";
        #dump_stack(\$text, address@hidden, \%state);
@@ -9256,7 +9264,6 @@
             push @formatted_args, substitute_line($arg, "address@hidden (arg 
$arg_nr)", $substitution_state, $line_nr);
             if (grep {$_ eq $type} ('param', 'paramtype', 'delimiter'))
             {
-                #$arguments .=  ' ' if ((!defined($previous_type) or 
$previous_type ne 'delimiter') and $arguments ne '');
                 $arguments .= $formatted_args[-1];
             }
             else
@@ -9265,24 +9272,6 @@
             }
 
             $previous_type = $type;
-            #if (grep {$_ eq $type} ('param', 'paramtype', 'delimiter'))
-            #{
-            #    if ($arg =~ /^\s*\@/)
-            #    {
-            #        push @formatted_args, substitute_line($arg, 
$substitution_state, $line_nr);
-            #    }
-            #    else
-            #    {
-            #        $substitution_state->{'code_style'}++;
-            #        push @formatted_args, substitute_line($arg, 
$substitution_state, $line_nr);
-            #    }
-            #    $arguments .= $formatted_args[-1];
-            #}
-            #else
-            #{
-            #    push @formatted_args, substitute_line($arg, 
$substitution_state, $line_nr);
-            #    $formatted_arguments{$type} = $formatted_args[-1];
-            #}
         }
         $name = $formatted_arguments{'name'};
         $category = $formatted_arguments{'category'};

Index: test/formatting/res/def_end_of_line/def_end_of_line.2
===================================================================
RCS file: 
/cvsroot/texi2html/texi2html/test/formatting/res/def_end_of_line/def_end_of_line.2,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- test/formatting/res/def_end_of_line/def_end_of_line.2       27 Apr 2009 
18:45:46 -0000      1.2
+++ test/formatting/res/def_end_of_line/def_end_of_line.2       27 Apr 2009 
21:22:11 -0000      1.3
@@ -0,0 +1 @@
+*** closing `deffn' (l. 14)

Index: test/formatting/res/texi_def_end_of_line/def_end_of_line.passfirst
===================================================================
RCS file: 
/cvsroot/texi2html/texi2html/test/formatting/res/texi_def_end_of_line/def_end_of_line.passfirst,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- test/formatting/res/texi_def_end_of_line/def_end_of_line.passfirst  18 Aug 
2008 18:03:15 -0000      1.1
+++ test/formatting/res/texi_def_end_of_line/def_end_of_line.passfirst  27 Apr 
2009 21:22:12 -0000      1.2
@@ -7,4 +7,4 @@
 def_end_of_line.texi(,11) deffn
 def_end_of_line.texi(,12) @end deffn
 def_end_of_line.texi(,13) 
-no file(,) @deffn category2 deffn_name2 arguments2 
\ No newline at end of file
+def_end_of_line.texi(,14) @deffn category2 deffn_name2 arguments2 
\ No newline at end of file

Index: test/formatting/res/def_cmds_info/def_cmds.info
===================================================================
RCS file: test/formatting/res/def_cmds_info/def_cmds.info
diff -N test/formatting/res/def_cmds_info/def_cmds.info
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ test/formatting/res/def_cmds_info/def_cmds.info     27 Apr 2009 21:22:11 
-0000      1.1
@@ -0,0 +1,565 @@
+This is def_cmds.info, produced by makeinfo version 4.13 from
+def_cmds.texi.
+
+ -- c--ategory: d--effn_name a--rguments...
+     d-effn
+
+ -- cate--gory: de--ffn_name ar--guments more args 
+          even more so
+     def-fn
+
+ -- fset: I a g
+ -- cmde: truc
+ -- Command: log trap
+ -- Command:  log trap1
+ -- Command: log trap2
+ -- cmde: id ule truc
+ -- cmde2: id `i' ule truc
+ -- id `i' ule:
+ -- :
+ -- aaa:
+ -- :
+ -- :
+ -- : machin
+ -- : bidule machin
+ -- truc: machin
+ -- truc:
+ -- truc:
+ -- :
+ -- truc: followed by a comment
+ -- truc: machin bidule chose and
+ -- truc: machin bidule chose and  after
+ -- truc: machin bidule chose and {
+ -- truc: machin bidule chose and { and after
+     Various deff lines
+ -- truc: after a deff item
+     text in def item for second def item
+ -- truc: deffnx before end deffn
+
+ -- empty: deffn
+
+ -- empty: deffn with deffnx
+ -- empty: deffnx
+
+ -- c--ategory: d--efvr_name
+     d-efvr
+
+ -- c--ategory: t--ype d--eftypefn_name a--rguments...
+     d-eftypefn
+
+ -- c--ategory on c--lass: t--ype d--eftypeop_name a--rguments...
+     d-eftypeop
+
+ -- c--ategory: t--ype d--eftypevr_name
+     d-eftypevr
+
+ -- c--ategory of c--lass: d--efcv_name
+     d-efcv
+
+ -- c--ategory on c--lass: d--efop_name a--rguments...
+     d-efop
+
+ -- c--ategory: d--eftp_name a--ttributes...
+     d-eftp
+
+ -- Function: d--efun_name a--rguments...
+     d-efun
+
+ -- Macro: d--efmac_name a--rguments...
+     d-efmac
+
+ -- Special Form: d--efspec_name a--rguments...
+     d-efspec
+
+ -- Variable: d--efvar_name
+     d-efvar
+
+ -- User Option: d--efopt_name
+     d-efopt
+
+ -- Function: t--ype d--eftypefun_name a--rguments...
+     d-eftypefun
+
+ -- Variable: t--ype d--eftypevar_name
+     d-eftypevar
+
+ -- Instance Variable of c--lass: d--efivar_name
+     d-efivar
+
+ -- Instance Variable of c--lass: t--ype d--eftypeivar_name
+     d-eftypeivar
+
+ -- Method on c--lass: d--efmethod_name a--rguments...
+     d-efmethod
+
+ -- Method on c--lass: t--ype d--eftypemethod_name a--rguments...
+     d-eftypemethod
+
+ -- category: name args {   more args
+     deffn with {
+
+ -- category: name args  more args
+     deffn with }
+
+
+File: def_cmds.info,  Node: Top,  Up: (dir)
+
+Test for definition commands
+****************************
+
+ -- c--ategory: d--effn_name a--rguments...
+     d-effn
+
+ -- cate--gory: de--ffn_name ar--guments more args 
+          even more so
+     def-fn
+
+ -- fset: I a g
+ -- cmde: truc
+ -- Command: log trap
+ -- Command:  log trap1
+ -- Command: log trap2
+ -- cmde: id ule truc
+ -- cmde2: id `i' ule truc
+ -- id `i' ule:
+ -- :
+ -- aaa:
+ -- :
+ -- :
+ -- : machin
+ -- : bidule machin
+ -- truc: machin
+ -- truc:
+ -- truc:
+ -- :
+ -- truc: followed by a comment
+ -- truc: machin bidule chose and
+ -- truc: machin bidule chose and  after
+ -- truc: machin bidule chose and {
+ -- truc: machin bidule chose and { and after
+     Various deff lines
+ -- truc: after a deff item
+     text in def item for second def item
+ -- truc: deffnx before end deffn
+
+ -- empty: deffn
+
+ -- empty: deffn with deffnx
+ -- empty: deffnx
+
+ -- c--ategory: d--efvr_name
+     d-efvr
+
+ -- c--ategory: t--ype d--eftypefn_name a--rguments...
+     d-eftypefn
+
+ -- c--ategory on c--lass: t--ype d--eftypeop_name a--rguments...
+     d-eftypeop
+
+ -- c--ategory: t--ype d--eftypevr_name
+     d-eftypevr
+
+ -- c--ategory of c--lass: d--efcv_name
+     d-efcv
+
+ -- c--ategory on c--lass: d--efop_name a--rguments...
+     d-efop
+
+ -- c--ategory: d--eftp_name a--ttributes...
+     d-eftp
+
+ -- Function: d--efun_name a--rguments...
+     d-efun
+
+ -- Macro: d--efmac_name a--rguments...
+     d-efmac
+
+ -- Special Form: d--efspec_name a--rguments...
+     d-efspec
+
+ -- Variable: d--efvar_name
+     d-efvar
+
+ -- User Option: d--efopt_name
+     d-efopt
+
+ -- Function: t--ype d--eftypefun_name a--rguments...
+     d-eftypefun
+
+ -- Variable: t--ype d--eftypevar_name
+     d-eftypevar
+
+ -- Instance Variable of c--lass: d--efivar_name
+     d-efivar
+
+ -- Instance Variable of c--lass: t--ype d--eftypeivar_name
+     d-eftypeivar
+
+ -- Method on c--lass: d--efmethod_name a--rguments...
+     d-efmethod
+
+ -- Method on c--lass: t--ype d--eftypemethod_name a--rguments...
+     d-eftypemethod
+
+ -- category: name args {   more args
+     deffn with {
+
+ -- category: name args  more args
+     deffn with }
+
+      -- c--ategory: d--effn_name a--rguments...
+          d--effn
+
+      -- cate--gory: de--ffn_name ar--guments more args 
+               even more so
+          def--fn
+
+      -- fset: I a g
+      -- cmde: truc
+      -- Command: log trap
+      -- Command:  log trap1
+      -- Command: log trap2
+      -- cmde: id ule truc
+      -- cmde2: id `i' ule truc
+      -- id `i' ule:
+      -- :
+      -- aaa:
+      -- :
+      -- :
+      -- : machin
+      -- : bidule machin
+      -- truc: machin
+      -- truc:
+      -- truc:
+      -- :
+      -- truc: followed by a comment
+      -- truc: machin bidule chose and
+      -- truc: machin bidule chose and  after
+      -- truc: machin bidule chose and {
+      -- truc: machin bidule chose and { and after
+          Various deff lines
+      -- truc: after a deff item
+          text in def item for second def item
+      -- truc: deffnx before end deffn
+
+      -- empty: deffn
+
+      -- empty: deffn with deffnx
+      -- empty: deffnx
+
+      -- c--ategory: d--efvr_name
+          d--efvr
+
+      -- c--ategory: t--ype d--eftypefn_name a--rguments...
+          d--eftypefn
+
+      -- c--ategory on c--lass: t--ype d--eftypeop_name a--rguments...
+          d--eftypeop
+
+      -- c--ategory: t--ype d--eftypevr_name
+          d--eftypevr
+
+      -- c--ategory of c--lass: d--efcv_name
+          d--efcv
+
+      -- c--ategory on c--lass: d--efop_name a--rguments...
+          d--efop
+
+      -- c--ategory: d--eftp_name a--ttributes...
+          d--eftp
+
+      -- Function: d--efun_name a--rguments...
+          d--efun
+
+      -- Macro: d--efmac_name a--rguments...
+          d--efmac
+
+      -- Special Form: d--efspec_name a--rguments...
+          d--efspec
+
+      -- Variable: d--efvar_name
+          d--efvar
+
+      -- User Option: d--efopt_name
+          d--efopt
+
+      -- Function: t--ype d--eftypefun_name a--rguments...
+          d--eftypefun
+
+      -- Variable: t--ype d--eftypevar_name
+          d--eftypevar
+
+      -- Instance Variable of c--lass: d--efivar_name
+          d--efivar
+
+      -- Instance Variable of c--lass: t--ype d--eftypeivar_name
+          d--eftypeivar
+
+      -- Method on c--lass: d--efmethod_name a--rguments...
+          d--efmethod
+
+      -- Method on c--lass: t--ype d--eftypemethod_name a--rguments...
+          d--eftypemethod
+
+      -- category: name args {   more args
+          deffn with {
+
+
+      -- category: name args  more args
+          deffn with }
+
+
+ -- Command: FORWARD--CHAR NCHARS argument2 argument3 (arg in brace,
+          [something IN V--AR, in, b , comma aPREF p]) last
+
+ -- Variable: fill-column argument1 argument2 (arg in brace, [something
+          IN V--AR, in, b , comma aPREF p]) last
+
+ -- Library Function: int foobar (int FOO, float BAR)
+
+ -- Library Function: int foobar (int FOO, float BAR) (arg in brace, [
+          IN V--AR, in, b , comma aPREF p]) ct
+
+          last
+
+ -- Library Function: int foobug [
+
+ -- stacks: private push (S:in out stack; N:in integer) ; ;barg aarg; ;
+          end
+
+ -- Global Flag: int enable (arg in brace, [something IN V--AR, in, b ,
+          comma aPREF p]) last
+
+ -- Data type: pair car cdr (arg in brace, [something IN V--AR, in, b ,
+          comma aPREF p]) last
+
+ -- Class Option of Window: border-pattern (arg in brace, [something IN
+          V--AR, in, b , comma aPREF p]) last
+
+ -- Class Option2 of Window: `int' border-pattern (arg in brace,
+          [something IN V--AR, in, b , comma aPREF p]) last
+
+ -- Operation on windows: expose (arg in brace, [something IN V--AR, in,
+          b , comma aPREF p]) last
+
+ -- Operation2 on W: , indow `int' expose (arg in brace, [something IN
+          V--AR, in, b , comma aPREF p]) last
+
+ -- Operation5 on Window: `int' expose type arg
+
+ -- Operation3 on W,indow: `int' e,xpose type arg
+
+ -- Operation4 on ,Window: `int' ,expose type arg
+
+ -- Operation6 on W: , indow `int' e,xpose type arg
+
+ -- Operation7 on ,: Window `int' ,expose type arg
+
+ -- Operation13 on W)indow: `int' e)xpose type arg
+
+ -- Operation14 on )Window: `int' )expose type arg
+
+ -- Operation16 on W: ) indow `int' e)xpose type arg
+
+ -- Operation17 on ): Window `int' )expose type arg
+
+ -- Operation18 on W;indow: `int' e;xpose type arg
+
+ -- Operation19 on ;Window: `int' ;expose type arg
+
+ -- Operation20 on W;indow: `int' e;xpose type arg
+
+ -- Operation21 on ;Window: `int' ;expose type arg
+
+ -- Command on `com': Window`int' exposeEXP
+
+ -- :
+
+ -- :
+
+ -- :
+
+ -- :
+
+ -- :
+
+ -- :
+
+ -- :
+
+ -- :
+
+ -- :
+
+ -- A1: A2 A3 A4
+
+ -- `A1': `A2' `A3' `A4'
+
+ -- A1: A2 A3 A4
+
+ -- `A1': `A2' `A3' `A4'
+
+ -- A1: A2 A3 A4 A5
+
+ -- `A1': `A2' `A3' `A4' `A5'
+
+ -- A1: A2 A3 A4 A5
+
+ -- `A1': A2 `A3' `A4' `A5'
+
+ -- A1: A2 A3 A4
+
+ -- `A1': `A2' `A3' `A4'
+
+ -- A1 of A2: A3 A4 A5
+
+ -- `A1': `A2' `A3' `A4' `A5'
+
+ -- A1 of A2: A3 A4 A5 A6
+
+ -- `A1' of `A2': `A3' `A4' `A5' `A6'
+
+ -- A1 on A2: A3 A4 A5
+
+ -- `A1' on `A2': `A3' `A4' `A5'
+
+ -- A1 on A2: A3 A4 A5 A6
+
+ -- `A1' on `A2': `A3' `A4' `A5' `A6'
+
+[index]
+* Menu:
+
+* A2:                                    Top.                 (line 294)
+* `A2':                                  Top.                 (line 296)
+* A3:                                    Top.                 (line 302)
+* `A3':                                  Top.                 (line 304)
+* A3:                                    Top.                 (line 310)
+* A4 of A2:                              Top.                 (line 314)
+* `A4' of `A2':                          Top.                 (line 316)
+* border-pattern:                        Top.                 (line 232)
+* border-pattern of Window:              Top.                 (line 235)
+* d-efcv_name:                           Top.                 (line  58)
+* d-efcv_name:                           Top.                 (line 158)
+* d-efivar_name:                         Top.                 (line  88)
+* d-efivar_name:                         Top.                 (line 188)
+* d-efopt_name:                          Top.                 (line  79)
+* d-efopt_name:                          Top.                 (line 179)
+* d-eftypeivar_name of c-lass:           Top.                 (line  91)
+* d-eftypeivar_name of c-lass:           Top.                 (line 191)
+* d-eftypevar_name:                      Top.                 (line  85)
+* d-eftypevar_name:                      Top.                 (line 185)
+* d-eftypevr_name:                       Top.                 (line  55)
+* d-eftypevr_name:                       Top.                 (line 155)
+* d-efvar_name:                          Top.                 (line  76)
+* d-efvar_name:                          Top.                 (line 176)
+* d-efvr_name:                           Top.                 (line  46)
+* d-efvr_name:                           Top.                 (line 146)
+* enable:                                Top.                 (line 226)
+* fill-column:                           Top.                 (line 211)
+
+[index]
+* Menu:
+
+* I:                                     Top.                 (line  13)
+* id ule:                                Top.                 (line  18)
+* id `i' ule:                            Top.                 (line  19)
+* I:                                     Top.                 (line 113)
+* id ule:                                Top.                 (line 118)
+* id `i' ule:                            Top.                 (line 119)
+* FORWARD-CHAR:                          Top.                 (line 208)
+* A2:                                    Top.                 (line 290)
+* `A2':                                  Top.                 (line 292)
+* A3:                                    Top.                 (line 298)
+* `A3':                                  Top.                 (line 300)
+* A3 on A2:                              Top.                 (line 318)
+* `A3' on `A2':                          Top.                 (line 320)
+* A4 on A2:                              Top.                 (line 322)
+* `A4' on `A2':                          Top.                 (line 324)
+* `int' on ):                            Top.                 (line 260)
+* `int' on ,:                            Top.                 (line 252)
+* )expose on )Window:                    Top.                 (line 256)
+* ,expose on ,Window:                    Top.                 (line 248)
+* ;expose on ;Window:                    Top.                 (line 264)
+* ;expose on ;Window:                    Top.                 (line 268)
+* after:                                 Top.                 (line  37)
+* after:                                 Top.                 (line 137)
+* bidule machin:                         Top.                 (line  26)
+* bidule machin:                         Top.                 (line 126)
+* d-effn_name:                           Top.                 (line   6)
+* d-effn_name:                           Top.                 (line 106)
+* d-efmac_name:                          Top.                 (line  70)
+* d-efmac_name:                          Top.                 (line 170)
+* d-efmethod_name on c-lass:             Top.                 (line  94)
+* d-efmethod_name on c-lass:             Top.                 (line 194)
+* d-efop_name on c-lass:                 Top.                 (line  61)
+* d-efop_name on c-lass:                 Top.                 (line 161)
+* d-efspec_name:                         Top.                 (line  73)
+* d-efspec_name:                         Top.                 (line 173)
+* d-eftypefn_name:                       Top.                 (line  49)
+* d-eftypefn_name:                       Top.                 (line 149)
+* d-eftypefun_name:                      Top.                 (line  82)
+* d-eftypefun_name:                      Top.                 (line 182)
+* d-eftypemethod_name on c-lass:         Top.                 (line  97)
+* d-eftypemethod_name on c-lass:         Top.                 (line 197)
+* d-eftypeop_name on c-lass:             Top.                 (line  52)
+* d-eftypeop_name on c-lass:             Top.                 (line 152)
+* d-efun_name:                           Top.                 (line  67)
+* d-efun_name:                           Top.                 (line 167)
+* de-ffn_name:                           Top.                 (line   9)
+* de-ffn_name:                           Top.                 (line 109)
+* deffn:                                 Top.                 (line  41)
+* deffn:                                 Top.                 (line  43)
+* deffn:                                 Top.                 (line 141)
+* deffn:                                 Top.                 (line 143)
+* deffnx:                                Top.                 (line  39)
+* deffnx:                                Top.                 (line  44)
+* deffnx:                                Top.                 (line 139)
+* deffnx:                                Top.                 (line 144)
+* e)xpose on W)indow:                    Top.                 (line 254)
+* e,xpose on W,indow:                    Top.                 (line 246)
+* e;xpose on W;indow:                    Top.                 (line 262)
+* e;xpose on W;indow:                    Top.                 (line 266)
+* expose on `com':                       Top.                 (line 270)
+* expose on Window:                      Top.                 (line 244)
+* expose on windows:                     Top.                 (line 238)
+* followed:                              Top.                 (line  31)
+* followed:                              Top.                 (line 131)
+* foobar:                                Top.                 (line 214)
+* foobar:                                Top.                 (line 216)
+* foobug:                                Top.                 (line 221)
+* indow on W:                            Top.                 (line 241)
+* indow on W:                            Top.                 (line 250)
+* indow on W:                            Top.                 (line 258)
+* log trap:                              Top.                 (line  15)
+* log trap:                              Top.                 (line 115)
+* log trap1:                             Top.                 (line  16)
+* log trap1:                             Top.                 (line 116)
+* log trap2:                             Top.                 (line  17)
+* log trap2:                             Top.                 (line 117)
+* machin:                                Top.                 (line  25)
+* machin:                                Top.                 (line  27)
+* machin:                                Top.                 (line  32)
+* machin:                                Top.                 (line  33)
+* machin:                                Top.                 (line  34)
+* machin:                                Top.                 (line  35)
+* machin:                                Top.                 (line 125)
+* machin:                                Top.                 (line 127)
+* machin:                                Top.                 (line 132)
+* machin:                                Top.                 (line 133)
+* machin:                                Top.                 (line 134)
+* machin:                                Top.                 (line 135)
+* name:                                  Top.                 (line 100)
+* name:                                  Top.                 (line 103)
+* name:                                  Top.                 (line 200)
+* name:                                  Top.                 (line 204)
+* push:                                  Top.                 (line 223)
+* truc:                                  Top.                 (line  14)
+* truc:                                  Top.                 (line 114)
+
+
+
+Tag Table:
+Node: Top2109
+
+End Tag Table




reply via email to

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