texinfo-commits
[Top][All Lists]
Advanced

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

[no subject]


From: Patrice Dumas
Date: Fri, 28 Oct 2022 03:55:58 -0400 (EDT)

branch: cust-translations
commit dbd3b5e4929bee509695f1034699a3bde320b091
Author: Gavin Smith <gavinsmith0123@gmail.com>
AuthorDate: Thu Oct 27 23:11:00 2022 +0100

    * tp/Texinfo/Convert/UnFilled.pm: remove unused module.
---
 ChangeLog                      |  4 ++++
 tp/Makefile.am                 |  1 -
 tp/Texinfo/Convert/UnFilled.pm | 48 ------------------------------------------
 tp/t/paragraph.t               |  1 -
 4 files changed, 4 insertions(+), 50 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index c7dbf882a7..87de0b3d66 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -14,6 +14,10 @@
        Set the new translatable string entry with context in po files to the
        previous translation for po files involved in tests.
 
+2022-10-27  Gavin Smith  <gavinsmith0123@gmail.com>
+
+       * tp/Texinfo/Convert/UnFilled.pm: remove unused module.
+
 2022-10-27  Gavin Smith  <gavinsmith0123@gmail.com>
 
        * tp/Texinfo/Convert/Plaintext.pm (process_printindex): Reuse
diff --git a/tp/Makefile.am b/tp/Makefile.am
index cd94c78aeb..0fccb547c9 100644
--- a/tp/Makefile.am
+++ b/tp/Makefile.am
@@ -105,7 +105,6 @@ dist_converters_DATA = \
  Texinfo/Convert/TexinfoXML.pm \
  Texinfo/Convert/Text.pm \
  Texinfo/Convert/TextContent.pm \
- Texinfo/Convert/UnFilled.pm \
  Texinfo/Convert/Unicode.pm \
  Texinfo/Convert/Utils.pm
 
diff --git a/tp/Texinfo/Convert/UnFilled.pm b/tp/Texinfo/Convert/UnFilled.pm
deleted file mode 100644
index 23c2ed06da..0000000000
--- a/tp/Texinfo/Convert/UnFilled.pm
+++ /dev/null
@@ -1,48 +0,0 @@
-# UnFilled.pm: handle unfilled line of text.
-#
-# Copyright 2010, 2011, 2017 Free Software Foundation, Inc.
-# 
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 3 of the License,
-# or (at your option) any later version.
-# 
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-# 
-# You should have received a copy of the GNU General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
-
-package Texinfo::Convert::UnFilled;
-
-use 5.006;
-use strict;
-
-use Texinfo::Convert::Paragraph;
-
-# initialize a paragraph object.
-sub new($;$)
-{
-  my $class = shift;
-  my $conf = shift;
-
-  if (!$conf) {
-    $conf = {};
-  }
-
-  $conf->{'max'} = 10000000;
-  $conf->{'ignore_columns'} = 1;
-  $conf->{'keep_end_lines'} = 1;
-
-  $conf->{'frenchspacing'} = 1;
-  $conf->{'unfilled'} = 1;
-  $conf->{'no_final_newline'} = 1;
-
-  my $paragraph = Texinfo::Convert::Paragraph->new($conf);
-
-  return $paragraph;
-}
-
-1;
diff --git a/tp/t/paragraph.t b/tp/t/paragraph.t
index 2ad62da5ff..5a0f213c2c 100644
--- a/tp/t/paragraph.t
+++ b/tp/t/paragraph.t
@@ -11,7 +11,6 @@ BEGIN { plan tests => 119 ; }
 
 use Texinfo::Convert::Paragraph;
 use Texinfo::Convert::Line;
-use Texinfo::Convert::UnFilled;
 
 ok(1, "modules loading"); # If we made it this far, we're ok.
 



reply via email to

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