texinfo-commits
[Top][All Lists]
Advanced

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

[5929] * tp/Texinfo/Convert/Plaintext.pm (_convert) <@ quotation


From: Patrice Dumas
Subject: [5929] * tp/Texinfo/Convert/Plaintext.pm (_convert) <@ quotation with
Date: Sat, 15 Nov 2014 00:06:15 +0000

Revision: 5929
          http://svn.sv.gnu.org/viewvc/?view=rev&root=texinfo&revision=5929
Author:   pertusus
Date:     2014-11-15 00:06:14 +0000 (Sat, 15 Nov 2014)
Log Message:
-----------
        * tp/Texinfo/Convert/Plaintext.pm (_convert) <@quotation with
        @author>: Check if @smallquotation was used as well.  Report
        from Mahlon Smith.

(commit on behalf of Gavin)

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/tp/Texinfo/Convert/Plaintext.pm

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog     2014-11-14 15:55:53 UTC (rev 5928)
+++ trunk/ChangeLog     2014-11-15 00:06:14 UTC (rev 5929)
@@ -1,3 +1,9 @@
+2014-11-15  Gavin Smith  <address@hidden>
+
+       * tp/Texinfo/Convert/Plaintext.pm (_convert) <@quotation with
+       @author>: Check if @smallquotation was used as well.  Report
+       from Mahlon Smith.
+
 2014-11-14  Karl Berry  <address@hidden>
 
        * doc/texinfo.tex (\footnote): do not set \indent and \noindent

Modified: trunk/tp/Texinfo/Convert/Plaintext.pm
===================================================================
--- trunk/tp/Texinfo/Convert/Plaintext.pm       2014-11-14 15:55:53 UTC (rev 
5928)
+++ trunk/tp/Texinfo/Convert/Plaintext.pm       2014-11-15 00:06:14 UTC (rev 
5929)
@@ -3142,8 +3142,9 @@
           $result .= $self->_convert($tree);
         }
       }
-    } elsif ($root->{'cmdname'} eq 'quotation' and $root->{'extra'} 
-             and $root->{'extra'}->{'authors'}) {
+    } 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(
                  $self->gdt("address@hidden --- address@hidden",




reply via email to

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