Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/curses-v3]: src/lib/libcurses ACS terminal representations can be 8bit.



details:   https://anonhg.NetBSD.org/src/rev/f6968eb6d6fd
branches:  curses-v3
changeset: 479979:f6968eb6d6fd
user:      jdc <jdc%NetBSD.org@localhost>
date:      Thu Mar 30 19:27:45 2000 +0000

description:
ACS terminal representations can be 8bit.

diffstat:

 lib/libcurses/acs.c |  9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)

diffs (23 lines):

diff -r bb1cf7227194 -r f6968eb6d6fd lib/libcurses/acs.c
--- a/lib/libcurses/acs.c       Mon Mar 27 13:45:18 2000 +0000
+++ b/lib/libcurses/acs.c       Thu Mar 30 19:27:45 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: acs.c,v 1.1.2.1 2000/03/05 23:25:56 jdc Exp $  */
+/*     $NetBSD: acs.c,v 1.1.2.2 2000/03/30 19:27:45 jdc Exp $  */
 
 /*
  * Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -48,9 +48,10 @@
 void
 __init_acs()
 {
-       int     count;
-       char    *aofac; /* Address of 'ac' */
-       char    acs, term;
+       int             count;
+       char            *aofac; /* Address of 'ac' */
+       char            acs;
+       unsigned char   term;
 
        /* Default value '+' for all ACS characters */
        for (count=0; count < NUM_ACS; count++)



Home | Main Index | Thread Index | Old Index