diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2003-01-03 13:52:56 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2003-01-03 13:52:56 +0000 |
commit | 64b4fce375464057b6471956e98a02a528f58f62 (patch) | |
tree | ee5ba8711c22d7728f42b778a2c3e3f4c2fd9b3c /devel | |
parent | Update to 2.4.1. (diff) |
forgot to remove patch file
Submitted by: Mathieu Arnold <mat@mat.cc>
Diffstat (limited to 'devel')
-rw-r--r-- | devel/p5-Term-Screen/files/patch-Screen.pm | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/devel/p5-Term-Screen/files/patch-Screen.pm b/devel/p5-Term-Screen/files/patch-Screen.pm deleted file mode 100644 index dd5cebbe5033..000000000000 --- a/devel/p5-Term-Screen/files/patch-Screen.pm +++ /dev/null @@ -1,29 +0,0 @@ ---- Screen.pm.orig Tue Oct 30 16:47:00 2001 -+++ Screen.pm Thu Jan 17 19:25:32 2002 -@@ -8,7 +8,7 @@ - - =head1 NAME - --Term::Screen -+Term::Screen - A Simple all perl Term::Cap based screen positioning module - - =head1 SYNOPSIS - -@@ -419,7 +419,7 @@ - } - else # buffer up the received chars - { -- $this->{IN} = reverse($partial_fn_str) . $this->{IN}; -+ $this->{IN} = &reverse($partial_fn_str) . $this->{IN}; - $c = chop($this->{IN}); - $this->puts($c) if ($this->{ECHO} && ($c ne "\e")); - } -@@ -454,7 +454,7 @@ - sub stuff_input - { - my ($this, $str) = @_; -- $this->{IN} = reverse($str) . $this->{IN}; -+ $this->{IN} = &reverse($str) . $this->{IN}; - $this; - } - |