Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: Notesfiles; site parsec.UUCP Path: utzoo!watmath!clyde!floyd!harpo!ihnp4!inuxc!pur-ee!uiucdcs!parsec!hosking From: hosking@parsec.UUCP Newsgroups: net.bugs.4bsd Subject: 4.2 TSET minor bug fix - (nf) Message-ID: <33500002@parsec.UUCP> Date: Tue, 10-Apr-84 01:00:00 EST Article-I.D.: parsec.33500002 Posted: Tue Apr 10 01:00:00 1984 Date-Received: Thu, 12-Apr-84 04:38:22 EST Lines: 13 Nf-ID: #N:parsec:33500002:000:250 Nf-From: parsec!hosking Apr 10 00:00:00 1984 #N:parsec:33500002:000:250 parsec!hosking Apr 10 00:00:00 1984 The following is a minor bug fix for 4.2 TSET. The original code would produce odd results if you typed something like: tset -k^u (as opposed to ^U). OLD: #define CTRL(x) (x ^ 0100) NEW: #define CTRL(x) (x & ~0140) allegra!convex!hosking