[Setup-tool-hackers] [Fwd: xml.pl.in]



 



Hi there,

	The patch:

@@ -76,15 +109,17 @@
 
 sub xst_xml_print_line
 {
-  &xst_xml_indent;
-  print @_;
+  my $line;
+  ($line = $_[0]) =~ tr/\n//d;
+
+  &xst_xml_print_indent ();
+  &xst_xml_print_string ($line . "\n");
 }

	Of some time ago broke memory-conf, this patch fixes it again - no
idea if it is correct / what was intended, YMMV.

Index: xml.pl.in
===================================================================
RCS file: /cvs/gnome/ximian-setup-tools/backends/xml.pl.in,v
retrieving revision 1.21
diff -u -r1.21 xml.pl.in
--- xml.pl.in	2001/03/13 19:15:52	1.21
+++ xml.pl.in	2001/03/19 10:09:23
@@ -110,7 +110,8 @@
 sub xst_xml_print_line
 {
   my $line;
-  ($line = $_[0]) =~ tr/\n//d;
+  $line = join ("", @_);
+  $line =~ tr/\n//d;
 
   &xst_xml_print_indent ();
   &xst_xml_print_string ($line . "\n");

	Is there a XST mailing list that I should be spamming instead of
you ? also committed a doc fix to the readme s/hst/xst/ etc.

	Regards,

		Michael.

-- 
 mmeeks@gnu.org  <><, Pseudo Engineer, itinerant idiot






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