ARemove (no longer used) __nca.

This commit is contained in:
jdc 2003-01-27 21:09:20 +00:00
parent e46d737f27
commit 2d83114a86
3 changed files with 5 additions and 9 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: curses_private.h,v 1.27 2003/01/09 12:48:05 blymn Exp $ */
/* $NetBSD: curses_private.h,v 1.28 2003/01/27 21:09:20 jdc Exp $ */
/*-
* Copyright (c) 1998-2000 Brett Lymn
@ -308,7 +308,6 @@ extern int __endwin;
extern int __pfast;
extern int __rawmode;
extern int __noqch;
extern attr_t __nca;
extern attr_t __mask_op, __mask_me, __mask_ue, __mask_se;
extern struct __winlist *__winlistp;
extern WINDOW *__virtscr;

View File

@ -1,4 +1,4 @@
/* $NetBSD: initscr.c,v 1.23 2002/01/02 10:38:28 blymn Exp $ */
/* $NetBSD: initscr.c,v 1.24 2003/01/27 21:09:20 jdc Exp $ */
/*
* Copyright (c) 1981, 1993, 1994
@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)initscr.c 8.2 (Berkeley) 5/4/94";
#else
__RCSID("$NetBSD: initscr.c,v 1.23 2002/01/02 10:38:28 blymn Exp $");
__RCSID("$NetBSD: initscr.c,v 1.24 2003/01/27 21:09:20 jdc Exp $");
#endif
#endif /* not lint */
@ -80,7 +80,6 @@ initscr(void)
__pfast = _cursesi_screen->pfast;
__rawmode = _cursesi_screen->rawmode;
__noqch = _cursesi_screen->noqch;
__nca = _cursesi_screen->nca;
COLS = _cursesi_screen->COLS;
LINES = _cursesi_screen->LINES;
COLORS = _cursesi_screen->COLORS;

View File

@ -1,4 +1,4 @@
/* $NetBSD: screen.c,v 1.9 2003/01/09 12:48:05 blymn Exp $ */
/* $NetBSD: screen.c,v 1.10 2003/01/27 21:09:21 jdc Exp $ */
/*
* Copyright (c) 1981, 1993, 1994
@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)screen.c 8.2 (blymn) 11/27/2001";
#else
__RCSID("$NetBSD: screen.c,v 1.9 2003/01/09 12:48:05 blymn Exp $");
__RCSID("$NetBSD: screen.c,v 1.10 2003/01/27 21:09:21 jdc Exp $");
#endif
#endif /* not lint */
@ -63,7 +63,6 @@ set_term(SCREEN *new)
old_screen->pfast = __pfast;
old_screen->rawmode = __rawmode;
old_screen->noqch = __noqch;
old_screen->nca = __nca;
old_screen->winlistp = __winlistp;
old_screen->COLS = COLS;
old_screen->LINES = LINES;
@ -80,7 +79,6 @@ set_term(SCREEN *new)
__pfast = new->pfast;
__rawmode = new->rawmode;
__noqch = new->noqch;
__nca = new->nca;
COLS = new->COLS;
LINES = new->LINES;
COLORS = new->COLORS;