diff options
author | tv <tv> | 1998-11-22 22:30:07 +0000 |
---|---|---|
committer | tv <tv> | 1998-11-22 22:30:07 +0000 |
commit | fdf980a89d6637a6087b50fa4d10d794c54ef946 (patch) | |
tree | b805a5b5acf0c6fac448f87f135d3bf22cf7e3e1 /net/pfnet/patches | |
parent | 920f041c68d9890462d34eeec602923983ff1b41 (diff) | |
download | pkgsrc-fdf980a89d6637a6087b50fa4d10d794c54ef946.tar.gz |
Import Perl fnet 1.4, an ICB client with the same minimal functionality as
C-icb, using perl, and without the termios/readline bugs of C-icb.
Diffstat (limited to 'net/pfnet/patches')
-rw-r--r-- | net/pfnet/patches/patch-aa | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/net/pfnet/patches/patch-aa b/net/pfnet/patches/patch-aa new file mode 100644 index 00000000000..cac9996120e --- /dev/null +++ b/net/pfnet/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1.1.1 1998/11/22 22:30:08 tv Exp $ + +--- CMDLINE.pm.orig Sun Nov 22 17:14:46 1998 ++++ CMDLINE.pm Sun Nov 22 17:15:10 1998 +@@ -50,7 +50,7 @@ + } + $line = ''; + $backspace = $linelen; +- } elsif ($ordch == 8) { # Ctrl-h ++ } elsif ($ordch == 8 || $ordch == 127) { # Ctrl-h + if ($linelen == 0) { + goto EXIT; + } |