texinfo-commits
[Top][All Lists]
Advanced

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

[6760] avoid VERSION change for TestXS.pm


From: Gavin D. Smith
Subject: [6760] avoid VERSION change for TestXS.pm
Date: Sat, 07 Nov 2015 16:07:01 +0000

Revision: 6760
          http://svn.sv.gnu.org/viewvc/?view=rev&root=texinfo&revision=6760
Author:   gavin
Date:     2015-11-07 16:06:59 +0000 (Sat, 07 Nov 2015)
Log Message:
-----------
avoid VERSION change for TestXS.pm

Modified Paths:
--------------
    trunk/tp/Texinfo/Convert/XSParagraph/TestXS.pm

Modified: trunk/tp/Texinfo/Convert/XSParagraph/TestXS.pm
===================================================================
--- trunk/tp/Texinfo/Convert/XSParagraph/TestXS.pm      2015-11-07 15:04:28 UTC 
(rev 6759)
+++ trunk/tp/Texinfo/Convert/XSParagraph/TestXS.pm      2015-11-07 16:06:59 UTC 
(rev 6760)
@@ -13,12 +13,10 @@
 # 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::XSParagraph::XSParagraph;
+package Texinfo::Convert::XSParagraph::TestXS;
 
 use DynaLoader;
 
-# same as texi2any.pl, although I don't know what the real requirement
-# is for this module.
 use 5.00405;
 use strict;
 use warnings;
@@ -35,9 +33,7 @@
 # If you do not need this, moving things directly into @EXPORT or @EXPORT_OK
 # will save memory.
 our %EXPORT_TAGS = ( 'all' => [ qw(
-    add_next
-    add_text
-       
+
 ) ] );
 
 our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
@@ -144,7 +140,7 @@
 #print STDERR "loadable object is at $dlpath\n";
 
 my $module = "TestXS";
-our $VERSION = '6.0dev';
+our $module_version = '6.0';
 
 # Following steps under "bootstrap" in "man DynaLoader".
 #bootstrap XSParagraph $VERSION;
@@ -183,7 +179,7 @@
 # This is the module bootstrap function, which causes all the other
 # functions (XSUB's) provided by the module to become available to
 # be called from Perl code.
-&$boot_fn($module, $VERSION);
+&$boot_fn($module, $module_version);
 
 if (!TestXS::init ()) {
   _fatal "XSParagraph: error initializing";
@@ -210,11 +206,5 @@
 
 #########################################################################
 
-# Used for debugging.  Not implemented.
-sub dump($)
-{
-  return "\n";
-}
-
 1;
 __END__




reply via email to

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