fix REPL.pm to obsolete NewlineHack, commit changes file (oops)
[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 Moose::Role;
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