From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.5-pre1 (2020-06-20) on ip-172-31-74-118.ec2.internal X-Spam-Level: X-Spam-Status: No, score=-1.9 required=3.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.5-pre1 Date: 24 Apr 92 18:49:42 GMT From: cis.ohio-state.edu!magnus.acs.ohio-state.edu!usenet.ins.cwru.edu!agate!do g.ee.lbl.gov!hellgate.utah.edu!cs.utah.edu!kmsimons@ucbvax.Berkeley.EDU (Kevin Simonson) Subject: Immediate Character Input with "text_io.get" Message-ID: <1992Apr24.124943.26396@hellgate.utah.edu> List-Id: While recieving character input to a program, I am aware that the ope- rating system can control whether the characters are input as soon as they are entered from the keyboard, or whether they are buffered somewhere, and only entered after the carriage return. In particular, I have written a C program that utilized this feature, so that I executed a Unix command to enable immediate character input, ran the C program, and was able to simulate the backspace key with some other key, that the C program recognized (via C's "getchar") and didn't print. Does anybody know if the "text_io.get" procedure for character input can also read in "immediate" input, so that processing can take place be- fore the carriage return gets hit? (If the information is necessary, I'm using the Verdix compiler.) Also, does anybody know the Unix command to enable immediate input? ---Kevin Simonson