Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP
Path: utzoo!linus!genrad!decvax!harpo!eagle!mhuxt!mhuxi!mhuxa!houxm!hocda!spanky!ka
From: ka@spanky.UUCP
Newsgroups: net.sources
Subject: vnews addendum
Message-ID: <348@spanky.UUCP>
Date: Mon, 6-Jun-83 17:47:16 EDT
Article-I.D.: spanky.348
Posted: Mon Jun  6 17:47:16 1983
Date-Received: Wed, 8-Jun-83 02:18:47 EDT
Lines: 46

Two problems with the vnews distribution.  First, on line 1129 of
visual.c the routine growline is called growlin.  You only need
to fix this under BSD, since other compilers only look at the first
seven characters of variable names anyway.  Secondly, I omitted the
file curterm.c.  It is reproduced below:


/*
 * Additions to curses.
 */

#include 
#include 

/*
 * move to the bottom of the screen.
 */

botscreen() {
	move(LINES-1, 0);
	refresh();
	putchar('\n');
	fflush(stdout);
}


/*
 * Clear a line.
 */

clrline(linno) {
	move(linno, 0);
	clrtoeol();
}


#ifdef ACURSES
/*
 * Ring the bell on the terminal.
 */

beep() {
	putchar('\007');
	fflush(stdout);
}
#endif