bug-texinfo
[Top][All Lists]
Advanced

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

Re: makeinfo bug - smallquotation command


From: Gavin Smith
Subject: Re: makeinfo bug - smallquotation command
Date: Fri, 14 Nov 2014 13:25:30 +0000

I think the following fixes it. Could Patrice or Karl confirm?

* tp/Texinfo/Convert/Plaintext.pm (_convert) <@quotation with
@author>: Check if @smallquotation was used as well.

Index: tp/Texinfo/Convert/Plaintext.pm
===================================================================
--- tp/Texinfo/Convert/Plaintext.pm     (revision 5923)
+++ tp/Texinfo/Convert/Plaintext.pm     (working copy)
@@ -3142,7 +3142,9 @@
           $result .= $self->_convert($tree);
         }
       }
-    } elsif ($root->{'cmdname'} eq 'quotation' and $root->{'extra'}
+    } elsif (($root->{'cmdname'} eq 'quotation'
+               or ($root->{'cmdname'} eq 'smallquotation'))
+            and $root->{'extra'}
              and $root->{'extra'}->{'authors'}) {
       foreach my $author (@{$root->{'extra'}->{'authors'}}) {
         $result .= $self->_convert(

On Fri, Nov 14, 2014 at 11:43 AM, Mahlon <address@hidden> wrote:
> 14 Nov. 2014
>
> Sorry to be a pest, but I found a few more problems.
> I'll send them individually for ease in tracking.
>
> RE: '@smallquotation' command and its '@author' sub-command
>
> Version: makeinfo 5.2 (built from source on Fedora 20 x86_64)
>
> Bug:
>
> The '@author', if specified within the '@smallquotation' block,
> is not displayed in the output.
>
> '@author' works as specified in the '@quotation' block, so the
> '@smallquotation' just needs to be made symmetrical.
>
> Sample Source:
>
> @smallquotation
>
> Heroes are seldom born. Instead, they spring to life when circumstances
> demand
>
> it and recede into the background when the crisis has passed.
>
> @author anon
>
> @end smallquotation
>
>
> Cheers!
>
> Mahlon
>
>
> --
>
> Software Sam - software and tools for GNU/Linux
>
> Mahlon Smith,
> The Software Samurai
> On the Web: http://www.SoftwareSam.us/



reply via email to

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