texinfo-commits
[Top][All Lists]
Advanced

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

texinfo/tp/Texinfo/Convert DocBook.pm


From: Patrice Dumas
Subject: texinfo/tp/Texinfo/Convert DocBook.pm
Date: Sat, 17 Sep 2011 00:23:13 +0000

CVSROOT:        /sources/texinfo
Module name:    texinfo
Changes by:     Patrice Dumas <pertusus>        11/09/17 00:23:13

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

Log message:
        Correct bad call of gdt for @*ref.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/Texinfo/Convert/DocBook.pm?cvsroot=texinfo&r1=1.6&r2=1.7

Patches:
Index: DocBook.pm
===================================================================
RCS file: /sources/texinfo/texinfo/tp/Texinfo/Convert/DocBook.pm,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -b -r1.6 -r1.7
--- DocBook.pm  16 Sep 2011 22:23:16 -0000      1.6
+++ DocBook.pm  17 Sep 2011 00:23:13 -0000      1.7
@@ -864,16 +864,19 @@
                         $section_name_contents}) ."</link>";
               if ($root->{'cmdname'} eq 'ref') {
                 return $self->_convert(
-                        $self->gdt('{title_ref}', {'type' => '_converted',
-                              'text' => $argument}));
+                        $self->gdt('{title_ref}', {'title_ref' => 
+                             {'type' => '_converted',
+                              'text' => $argument}}));
               } elsif ($root->{'cmdname'} eq 'xref') {
                 return $self->_convert(
-                        $self->gdt('See {title_ref}', {'type' => '_converted',
-                              'text' => $argument}));
+                        $self->gdt('See {title_ref}', {'title_ref' =>
+                             {'type' => '_converted',
+                              'text' => $argument}}));
               } elsif ($root->{'cmdname'} eq 'pxref') {
                 return $self->_convert(
-                        $self->gdt('(see {title_ref})', {'type' => 
'_converted',
-                              'text' => $argument}));
+                        $self->gdt('(see {title_ref})', {'title_ref' =>
+                             {'type' => '_converted',
+                              'text' => $argument}}));
               }
             }
           }



reply via email to

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