Commit | Line | Data |
a66625d6 |
1 | # Original comment: |
2 | # |
f254750a |
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 | |
6a5409bc |
9 | use Devel::REPL::Plugin; |
48ddfeae |
10 | use namespace::clean -except => [ 'meta' ]; |
f254750a |
11 | |
a66625d6 |
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 |
f254750a |
18 | |
19 | 1; |
20 | |
cfd1094b |
21 | __END__ |
22 | |
23 | =head1 NAME |
24 | |
25 | Devel::REPL::Plugin::NewlineHack - (deprecated) |
26 | |
27 | =cut |
28 | |