texinfo-commits
[Top][All Lists]
Advanced

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

texinfo/tp/Texinfo/Convert HTML.pm


From: Patrice Dumas
Subject: texinfo/tp/Texinfo/Convert HTML.pm
Date: Sun, 17 Apr 2011 07:27:12 +0000

CVSROOT:        /sources/texinfo
Module name:    texinfo
Changes by:     Patrice Dumas <pertusus>        11/04/17 07:27:12

Modified files:
        tp/Texinfo/Convert: HTML.pm 

Log message:
        Use the correct content for titles.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/Texinfo/Convert/HTML.pm?cvsroot=texinfo&r1=1.25&r2=1.26

Patches:
Index: HTML.pm
===================================================================
RCS file: /sources/texinfo/texinfo/tp/Texinfo/Convert/HTML.pm,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -b -r1.25 -r1.26
--- HTML.pm     17 Apr 2011 06:25:18 -0000      1.25
+++ HTML.pm     17 Apr 2011 07:27:12 -0000      1.26
@@ -2226,12 +2226,12 @@
     if ($self->{'extra'}->{$fulltitle_command}) {
       my $command = $self->{'extra'}->{$fulltitle_command};
       next if (!$command->{'extra'}
-               or (!$command->{'extra'}->{'misc_contents'}
+               or (!$command->{'extra'}->{'misc_content'}
                    or $command->{'extra'}->{'missing_argument'}));
-      # FIXME remove the virtual type?
       print STDERR "Using $fulltitle_command as title\n"
         if ($self->get_conf('DEBUG'));
-      $fulltitle = {'contents' => $command->{'extra'}->{'misc_contents'},
+      # FIXME remove the virtual _fulltitle type?
+      $fulltitle = {'contents' => $command->{'extra'}->{'misc_content'},
                     'type' => '_fulltitle'};
       last;
     }
@@ -2248,7 +2248,7 @@
       my $command = $self->{'extra'}->{$simpletitle_command};
       next if ($command->{'extra'} 
                and $command->{'extra'}->{'missing_argument'});
-      $self->{'simpletitle_tree'} = {'contents' => $command->{'contents'}};
+      $self->{'simpletitle_tree'} = {'contents' => $command->{'misc_content'}};
       last;
     }
   }



reply via email to

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