r61342@onn: sartak | 2008-05-31 12:21:47 -0400
[p5sagit/Devel-REPL.git] / lib / Devel / REPL / Plugin / NewlineHack.pm
1 # Original comment:
2 #
3 # Adds a newline after print. Some readlines need it some don't. I guess
4 # we should clarify whether this is a bug and if so whose bug at some point
5 # but this'll do for now ;)
6
7 package Devel::REPL::Plugin::NewlineHack;
8
9 use Devel::REPL::Plugin;
10 use namespace::clean -except => [ 'meta' ];
11
12 warn <<EOW;
13 No longer required, extra newline automatically produced for Gnu readline
14 implementation by Devel::REPL's print() method.
15
16 This plugin will be removed at some point; please remove it from your config.
17 EOW
18
19 1;
20
21 __END__
22
23 =head1 NAME
24
25 Devel::REPL::Plugin::NewlineHack - (deprecated)
26
27 =cut
28