summaryrefslogtreecommitdiffstats
path: root/usr.bin/ee
diff options
context:
space:
mode:
authorache <ache@FreeBSD.org>1995-08-30 17:11:54 +0000
committerache <ache@FreeBSD.org>1995-08-30 17:11:54 +0000
commit51c6a5b9f36c82780dccde9f5522a05841042ac8 (patch)
treef0eb683ab97ead6ccdb0b9c8e32191202d22ecdc /usr.bin/ee
parent9ba149fa592ea46cdc13536fd36beba1c7c7a5d6 (diff)
downloadFreeBSD-src-51c6a5b9f36c82780dccde9f5522a05841042ac8.zip
FreeBSD-src-51c6a5b9f36c82780dccde9f5522a05841042ac8.tar.gz
Fix 8bit chars output, not highlight all of them
Diffstat (limited to 'usr.bin/ee')
-rw-r--r--usr.bin/ee/ee.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ee/ee.c b/usr.bin/ee/ee.c
index 878fc8e..4647164 100644
--- a/usr.bin/ee/ee.c
+++ b/usr.bin/ee/ee.c
@@ -49,7 +49,7 @@
| proprietary information which is protected by
| copyright. All rights are reserved.
|
- | $Header: /home/hugh/sources/old_ae/RCS/ee.c,v 1.78 1995/08/26 16:05:52 hugh Exp $
+ | $Header: /home/ncvs/src/usr.bin/ee/ee.c,v 1.1.1.1 1995/08/30 07:28:05 jkh Exp $
|
*/
@@ -62,7 +62,7 @@ char *ee_long_notice[] = {
"copyright. All rights are reserved."
};
-char *version = "@(#) ee, version 1.2.4 $Revision: 1.78 $";
+char *version = "@(#) ee, version 1.2.4 $Revision: 1.1.1.1 $";
#ifdef NCURSE
#include "new_curse.h"
@@ -890,7 +890,7 @@ int column;
}
else
{
- waddch(window, character);
+ waddch(window, character & 0xFF);
return(1);
}
}
OpenPOWER on IntegriCloud