Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP
Path: utzoo!mnetor!uunet!seismo!ut-sally!husc6!necntc!ames!sdcsvax!ucbvax!COLUMBIA.EDU!chris
From: chris@COLUMBIA.EDU (Chris Maio)
Newsgroups: comp.windows.x
Subject: Re: ^C ignored by xterm under /bin/sh, and SOLUTION
Message-ID: <8707141722.AA04878@columbia.edu>
Date: Tue, 14-Jul-87 13:22:54 EDT
Article-I.D.: columbia.8707141722.AA04878
Posted: Tue Jul 14 13:22:54 1987
Date-Received: Thu, 16-Jul-87 06:49:44 EDT
Sender: daemon@ucbvax.BERKELEY.EDU
Distribution: world
Organization: The ARPA Internet
Lines: 8

What you describe is a bug in xterm, and the fix is simple -- just add

	signal(SIGINT, SIG_DFL);
	signal(SIGQUIT, SIG_DFL);

after the "signal(SIGTERM, SIG_DFL);" in main.c.

						Chris