S_utf16_textfilter() was not returning EOF correctly in some situations.
[p5sagit/p5-mst-13.2.git] / lib / open3.pl
index 7fcc931..ab7fa5f 100644 (file)
@@ -1,3 +1,6 @@
+# This legacy library is deprecated and will be removed in a future
+# release of perl.
+#
 # This is a compatibility interface to IPC::Open3.  New programs should
 # do
 #
@@ -7,6 +10,10 @@
 #
 #     require 'open3.pl';
 
+warn( "The 'open3.pl' legacy library is deprecated and will be"
+      . " removed in the next major release of perl. Please use the"
+      . " IPC::Open3 module instead." );
+
 package main;
 use IPC::Open3 'open3';
 1