summaryrefslogtreecommitdiff
path: root/news
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>1997-09-11 11:53:44 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>1997-09-11 11:53:44 +0000
commitb0e5d9f7ea36b5c13d0d8e18402c652a3a334fe1 (patch)
tree6d9eaea7dc5138ebf93876be8674c878f6cadbf8 /news
parentmaster ftp site moved. (diff)
Upgrade to 0911
Notes
Notes: svn path=/head/; revision=7862
Diffstat (limited to 'news')
-rw-r--r--news/tin/Makefile6
-rw-r--r--news/tin/distinfo2
-rw-r--r--news/tin/files/patch-aa107
3 files changed, 4 insertions, 111 deletions
diff --git a/news/tin/Makefile b/news/tin/Makefile
index 173fb58482f0..877b24250c04 100644
--- a/news/tin/Makefile
+++ b/news/tin/Makefile
@@ -4,11 +4,11 @@
# Date created: 25 July 1996
# Whom: obrien@cs.ucdavis.edu
#
-# $Id: Makefile,v 1.40 1997/08/28 11:29:02 ache Exp $
+# $Id: Makefile,v 1.41 1997/09/02 12:34:02 ache Exp $
#
-DISTNAME= tin1.3-unoff-BETA-970901
-PKGNAME= tin-1.3.970901
+DISTNAME= tin1.3-unoff-BETA-970911
+PKGNAME= tin-1.3.970911
CATEGORIES= news
MASTER_SITES= ftp://nuxi.ucdavis.edu/pub/tin/ \
ftp://ftp.akk.uni-karlsruhe.de/pub/tin/ \
diff --git a/news/tin/distinfo b/news/tin/distinfo
index 69719884f4ce..5365ca45f371 100644
--- a/news/tin/distinfo
+++ b/news/tin/distinfo
@@ -1 +1 @@
-MD5 (tin1.3-unoff-BETA-970901.tgz) = 8b57b8d4d1a90b2ed30f1d848da5f9b3
+MD5 (tin1.3-unoff-BETA-970911.tgz) = 39d488cc0448d4caf1a936691e38caee
diff --git a/news/tin/files/patch-aa b/news/tin/files/patch-aa
deleted file mode 100644
index 983312169a7c..000000000000
--- a/news/tin/files/patch-aa
+++ /dev/null
@@ -1,107 +0,0 @@
-*** ./include/autoconf.hin.orig Mon Aug 25 14:34:35 1997
---- ./include/autoconf.hin Thu Aug 28 14:59:58 1997
-***************
-*** 269,274 ****
---- 269,275 ----
- * Define a symbol to control whether we use curses, or the termcap/terminfo
- * interface
- */
-+ #undef NCURSESHEADER
- #undef USE_CURSES
- #undef USE_TRACE
-
-*** ./include/tcurses.h.orig Mon Aug 25 14:34:35 1997
---- ./include/tcurses.h Thu Aug 28 14:59:59 1997
-***************
-*** 18,24 ****
---- 18,28 ----
-
- #if USE_CURSES
-
-+ #ifdef NCURSESHEADER
-+ #include <ncurses.h>
-+ #else
- #include <curses.h>
-+ #endif
-
- #if USE_TRACE
- #if HAVE_NOMACROS_H
-*** ./src/tcurses.c.orig Mon Aug 25 14:34:35 1997
---- ./src/tcurses.c Thu Aug 28 14:59:59 1997
-***************
-*** 64,70 ****
- if (has_colors()) {
- start_color();
- }
-! #ifdef NCURSES_VERSION
- (void) mousemask(
- (BUTTON1_CLICKED|BUTTON2_CLICKED|BUTTON3_CLICKED),
- (mmask_t *)0);
---- 64,70 ----
- if (has_colors()) {
- start_color();
- }
-! #ifdef NCURSES_MOUSE_VERSION
- (void) mousemask(
- (BUTTON1_CLICKED|BUTTON2_CLICKED|BUTTON3_CLICKED),
- (mmask_t *)0);
-***************
-*** 79,84 ****
---- 79,85 ----
- {
- TRACE(("InitWin"))
- Raw(TRUE); /* FIXME */
-+ cmd_line = FALSE;
- }
-
- /*
-***************
-*** 198,204 ****
- ch = cmdReadCh();
- else {
- ch = getch();
-! if (ch == ESC || ch >= KEY_MIN) {
- ungetch(ch);
- ch = ESC;
- }
---- 199,207 ----
- ch = cmdReadCh();
- else {
- ch = getch();
-! if (ch == KEY_BACKSPACE)
-! ch = '\010'; /* fix for Ctrl-H - show headers */
-! else if (ch == ESC || ch >= KEY_MIN) {
- ungetch(ch);
- ch = ESC;
- }
-***************
-*** 239,245 ****
- if (cmd_line)
- fputc (ch, fp);
- else
-! addch (ch);
- }
-
- void
---- 242,248 ----
- if (cmd_line)
- fputc (ch, fp);
- else
-! addch ((unsigned char) ch);
- }
-
- void
-*** ./src/misc.c.orig Mon Aug 25 14:34:36 1997
---- ./src/misc.c Thu Aug 28 15:00:01 1997
-***************
-*** 1342,1350 ****
- int code = KEYMAP_UNKNOWN;
-
- switch (ch) {
-- case KEY_BACKSPACE:
-- code = '\b';
-- break;
- case KEY_DC:
- code = KEYMAP_DEL;
- break;
---- 1342,1347 ----