From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Andy Wingo Newsgroups: gmane.lisp.guile.user Subject: Re: C-c in guile Date: Mon, 27 Feb 2017 20:49:56 +0100 Message-ID: <87poi3quqj.fsf@pobox.com> References: <877f5ovd85.fsf@gmail.com> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: blaine.gmane.org 1488225248 9519 195.159.176.226 (27 Feb 2017 19:54:08 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Mon, 27 Feb 2017 19:54:08 +0000 (UTC) User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1 (gnu/linux) Cc: guile-user@gnu.org To: Alex Vong Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Mon Feb 27 20:54:02 2017 Return-path: Envelope-to: guile-user@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ciRMs-0001e3-VO for guile-user@m.gmane.org; Mon, 27 Feb 2017 20:53:59 +0100 Original-Received: from localhost ([::1]:56390 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ciRMy-0005WX-Qk for guile-user@m.gmane.org; Mon, 27 Feb 2017 14:54:04 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:51658) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ciRJC-0002df-Nq for guile-user@gnu.org; Mon, 27 Feb 2017 14:50:11 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ciRJ8-0001Pd-RR for guile-user@gnu.org; Mon, 27 Feb 2017 14:50:10 -0500 Original-Received: from pb-sasl1.pobox.com ([64.147.108.66]:61412 helo=sasl.smtp.pobox.com) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ciRJ8-0001Oj-Lu for guile-user@gnu.org; Mon, 27 Feb 2017 14:50:06 -0500 Original-Received: from sasl.smtp.pobox.com (unknown [127.0.0.1]) by pb-sasl1.pobox.com (Postfix) with ESMTP id 05CF763ED0; Mon, 27 Feb 2017 14:50:06 -0500 (EST) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=pobox.com; h=from:to:cc :subject:references:date:in-reply-to:message-id:mime-version :content-type; s=sasl; bh=60nb6l42FM4/DUgTI7oHEByK6Wo=; b=kzmkbF qJAPx64vJitw1znX2ntOJx1qnW3Bs8WQWZrwle1SsWfjs8/pVSoQ7dSlO5qvOjUT DloJMs5rLX/KjKuQHYfzBYCpt7vlPGICBIrKG72ZtaW24aXL2h+8Jt46hZUAERWB HEX/SI8lGDy0ket6p5WiX30Xb0fr7C3/IXegU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=pobox.com; h=from:to:cc :subject:references:date:in-reply-to:message-id:mime-version :content-type; q=dns; s=sasl; b=Sd2mAyez6iwp62DlGP+3GKfa8C8UVe0e y+FvPrIWWvEnljfG+wtEJb8VTe98jgsQxaol5bm//py377lDbMX4gD7V8rmySDsG h/SN4KOfinysmwm9Z28XIG00pRUdfkuOxl9ATvlYjIXhPU3fHdT6jwSzy0UCFt2F /cc9gnvvJwM= Original-Received: from pb-sasl1.nyi.icgroup.com (unknown [127.0.0.1]) by pb-sasl1.pobox.com (Postfix) with ESMTP id EF77863ECF; Mon, 27 Feb 2017 14:50:05 -0500 (EST) Original-Received: from clucks (unknown [88.160.190.192]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by pb-sasl1.pobox.com (Postfix) with ESMTPSA id 851A163ECC; Mon, 27 Feb 2017 14:50:04 -0500 (EST) In-Reply-To: <877f5ovd85.fsf@gmail.com> (Alex Vong's message of "Sat, 21 Jan 2017 19:55:54 +0800") X-Pobox-Relay-ID: EF358586-FD25-11E6-BC7B-CDEC6462E9F6-02397024!pb-sasl1.pobox.com X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 64.147.108.66 X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-user-bounces+guile-user=m.gmane.org@gnu.org Original-Sender: "guile-user" Xref: news.gmane.org gmane.lisp.guile.user:13340 Archived-At: On Sat 21 Jan 2017 12:55, Alex Vong writes: > However, when running the external program "yes" in guile, > > $ guile -c '(system* "yes")' > > We cannot terminate the process by pressing C-c, Indeed I can reproduce this! > but we can suspend it by pressing C-z. I believe the C-z is handled by the shell, not Guile; AFAIU. I don't know how this should work (mechanics) but I agree with you that probably it should! Andy