texinfo-commits
[Top][All Lists]
Advanced

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

[5286] * tp/Texinfo/Convert/DocBook.pm(_protect_text): convert


From: Patrice Dumas
Subject: [5286] * tp/Texinfo/Convert/DocBook.pm(_protect_text): convert
Date: Fri, 09 Aug 2013 18:49:24 +0000

Revision: 5286
          http://svn.sv.gnu.org/viewvc/?view=rev&root=texinfo&revision=5286
Author:   pertusus
Date:     2013-08-09 18:49:24 +0000 (Fri, 09 Aug 2013)
Log Message:
-----------
        * tp/Texinfo/Convert/DocBook.pm(_protect_text): convert
        formfeed to space instead of simply removing it.

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

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog     2013-08-09 18:16:14 UTC (rev 5285)
+++ trunk/ChangeLog     2013-08-09 18:49:24 UTC (rev 5286)
@@ -1,3 +1,8 @@
+2013-08-09  Patrice Dumas  <address@hidden>
+
+       * tp/Texinfo/Convert/DocBook.pm(_protect_text): convert
+       formfeed to space instead of simply removing it.
+
 2013-08-09  Karl Berry  <address@hidden>
 
        * doc/texinfo.tex (\codedashfinish): include an explicit
@@ -2,3 +7,3 @@
        space after the \let=, for @code{- a}.
-        Report from Vincent Lefevre, 7 Aug 2013 04:07:10.
+       Report from Vincent Lefevre, 7 Aug 2013 04:07:10.
 

Modified: trunk/tp/Texinfo/Convert/DocBook.pm
===================================================================
--- trunk/tp/Texinfo/Convert/DocBook.pm 2013-08-09 18:16:14 UTC (rev 5285)
+++ trunk/tp/Texinfo/Convert/DocBook.pm 2013-08-09 18:49:24 UTC (rev 5286)
@@ -453,7 +453,7 @@
   my $text = shift;
   my $result = $self->xml_protect_text($text);
   # form feed not allowed in XML
-  $result =~ s/\f//g;
+  $result =~ s/\f/ /g;
   return $result;
 }
 




reply via email to

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