summaryrefslogtreecommitdiff
path: root/misc/screen/patches
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2002-02-16 11:18:34 +0000
committerwiz <wiz@pkgsrc.org>2002-02-16 11:18:34 +0000
commit40f34fa7cc562fa465b138fe43f23b0e477409d0 (patch)
tree74fd742ee2c2b136979ba37848b0763ff3d224c5 /misc/screen/patches
parent588eb8cf2955097490fa123e1969dda26173cf69 (diff)
downloadpkgsrc-40f34fa7cc562fa465b138fe43f23b0e477409d0.tar.gz
Update to 3.9.11:
* windowlist, bound to ^A" * support for other encodings, e.g. big5, koi8r, cp1251 new commands 'encoding', 'defencoding' 'register', 'readreg', 'readbuf', 'writebuf' now understand an extra encoding parameter * support for double utf-8 characters * lots of new string escapes and extensions to existsing ones: %LD, %LM, %Lw, %W, %-w, %+w, %H, %f, %F, %l, %=, %<, %> * new commands: 'source', 'eval', 'deflog', 'ignorecase', 'setsid' * command key classes: 'bind', 'command' and 'help' understand a '-c <class>' parameter. See the man page for examples * new login state: always - don't remove slot even if screen gets detached * 256 color support (experimental) * configurable time format string (for ^At) * config option to use localized month/week names * new option '-h' for hardcopy: also dump the scrollback buffer XXX: SunOS PLIST untested.
Diffstat (limited to 'misc/screen/patches')
-rw-r--r--misc/screen/patches/patch-ac14
-rw-r--r--misc/screen/patches/patch-af18
2 files changed, 0 insertions, 32 deletions
diff --git a/misc/screen/patches/patch-ac b/misc/screen/patches/patch-ac
deleted file mode 100644
index 1b1e3462c48..00000000000
--- a/misc/screen/patches/patch-ac
+++ /dev/null
@@ -1,14 +0,0 @@
-$NetBSD: patch-ac,v 1.4 2001/08/18 09:53:02 wiz Exp $
-
---- doc/screen.texinfo.orig Fri May 25 16:40:02 2001
-+++ doc/screen.texinfo
-@@ -3,6 +3,9 @@
- @c vi:set wm=5
- @setfilename screen.info
- @settitle Screen User's Manual
-+@direntry
-+* Screen: (screen). Full-screen window manager.
-+@end direntry
- @finalout
- @setchapternewpage odd
- @c %**end of header
diff --git a/misc/screen/patches/patch-af b/misc/screen/patches/patch-af
deleted file mode 100644
index 49df3cb0630..00000000000
--- a/misc/screen/patches/patch-af
+++ /dev/null
@@ -1,18 +0,0 @@
-$NetBSD: patch-af,v 1.4 2001/08/18 11:21:20 itojun Exp $
-
-support multibyte escape sequences other than Japanese.
-
---- display.c Wed May 9 19:01:53 2001
-+++ display.c Sat Aug 18 20:10:43 2001
-@@ -1807,7 +1807,10 @@
- #ifdef KANJI
- else if (new < ' ')
- {
-- AddStr("\033$");
-+ if (new + '@' == '@' || new + '@' == 'A' || new + '@' == 'B')
-+ AddStr("\033$");
-+ else
-+ AddStr("\033$(");
- AddChar(new + '@');
- }
- #endif