Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!henry From: henry@utzoo.UUCP (Henry Spencer) Newsgroups: net.lang.c Subject: Re: CTRL(X) in ANSI standard Message-ID: <5569@utzoo.UUCP> Date: Mon, 6-May-85 16:33:29 EDT Article-I.D.: utzoo.5569 Posted: Mon May 6 16:33:29 1985 Date-Received: Mon, 6-May-85 16:33:29 EDT References: <10425@brl-tgr.ARPA>, <621@whuxl.UUCP> Organization: U of Toronto Zoology Lines: 14 > Here's a silly though: since '\xFC' has been added to ANSI C for hex > characters, how about '\^G' for control characters, ala ICON? I never > did like the CTRL macro. As has been said before, the right way to do this is: #define BEL '\007' or something along those lines. The character is "BEL", numbered 7 decimal in the ASCII code; control-G is just the way you type it on many (but not necessarily all) terminals. -- Henry Spencer @ U of Toronto Zoology {allegra,ihnp4,linus,decvax}!utzoo!henry