The error:

  Possible unintended interpolation of @host in string at (eval 349) line 1.
  Use of uninitialized value in join or string at ./docs/autodocifier.pl line 
35.

Attached patch fixes it.

There's also some irritating colorization problem (I use emacs and
font-lock) caused by unescaped double-quote characters in substitution
expressions inside the beautify subroutine.  I have a patch that fixes
that.  Would you be interested?


Cheers,

-- 
Cristian
Index: docs/autodocifier.pl
===================================================================
--- docs/autodocifier.pl	(revision 23283)
+++ docs/autodocifier.pl	(working copy)
@@ -36,6 +36,7 @@
 			s/"\s*$//;
 			s/%/%%/g;
 			s/\$/\\\$/g;
+			s/\@/\\\@/g;
 			eval qq[ sprintf(qq{$_}) ]
 		} @line
 	);
_______________________________________________
busybox mailing list
[email protected]
http://busybox.net/cgi-bin/mailman/listinfo/busybox

Reply via email to