From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.ciao.gmane.io!not-for-mail From: Ricardo Wurmus Newsgroups: gmane.lisp.guile.user Subject: Re: Geiser vs. guile-mode? Date: Sat, 08 Feb 2020 19:14:27 +0100 Message-ID: <87blq9osjg.fsf@elephly.net> References: <87eevamlds.fsf@ambrevar.xyz> <897B58B1-A727-4224-938E-5F7D826DA963@korwin-zmijowski.fr> <87a75yl2zx.fsf@ambrevar.xyz> <87d0aqfqwg.fsf@ambrevar.xyz> <2EBAB5D5-D677-4F95-B253-41DFA9016009@korwin-zmijowski.fr> <03362389-6170-a57b-9cd1-380be34b5697@gmail.com> <17020c6ae18.bf06ef5b71547.6717873688020963681@zoho.com> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="ciao.gmane.io:159.69.161.202"; logging-data="56380"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: mu4e 1.2.0; emacs 26.3 Cc: guile-user@gnu.org To: Matt Wette Original-X-From: guile-user-bounces+guile-user=m.gmane-mx.org@gnu.org Sat Feb 08 19:14:56 2020 Return-path: Envelope-to: guile-user@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1j0Ud6-000Eag-IE for guile-user@m.gmane-mx.org; Sat, 08 Feb 2020 19:14:56 +0100 Original-Received: from localhost ([::1]:44138 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j0Ud5-00005B-Jk for guile-user@m.gmane-mx.org; Sat, 08 Feb 2020 13:14:55 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:39312) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j0Ucl-0008TN-Kg for guile-user@gnu.org; Sat, 08 Feb 2020 13:14:36 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j0Uck-0004ue-Pc for guile-user@gnu.org; Sat, 08 Feb 2020 13:14:35 -0500 Original-Received: from sender4-of-o51.zoho.com ([136.143.188.51]:21182) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1j0Uck-0004sy-HN for guile-user@gnu.org; Sat, 08 Feb 2020 13:14:34 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1581185673; s=zoho; d=elephly.net; i=rekado@elephly.net; h=References:From:To:Cc:Subject:In-reply-to:Date:Message-ID:MIME-Version:Content-Type; bh=jZEhOmPEHnEQ1HPMh+JXktb1XdiJDNE7s1aa5IGEqTA=; b=OVftSbsIJZpMWpq/+3WrLy+BcB+Ku8uNG5goG53TBUUeXDconxZaxRwRee7PqPSZ EjZ5x2KuQkVdAkoCx44MCbOqp0lgfn5O0qTDUgwlALVlP3STNXhLLeWTpFH6D+zTIDN 7TnVf5VzLba6TEe3bLUuZxxqT37HkhQvdIs2pArg= Original-Received: from localhost (p4FD5A8E9.dip0.t-ipconnect.de [79.213.168.233]) by mx.zohomail.com with SMTPS id 1581185671216247.09793393984705; Sat, 8 Feb 2020 10:14:31 -0800 (PST) In-reply-to: X-URL: https://elephly.net X-PGP-Key: https://elephly.net/rekado.pubkey X-PGP-Fingerprint: BCA6 89B6 3655 3801 C3C6 2150 197A 5888 235F ACAC X-ZohoMailClient: External X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 136.143.188.51 X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.23 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-mx.org@gnu.org Original-Sender: "guile-user" Xref: news.gmane.io gmane.lisp.guile.user:16143 Archived-At: Matt Wette writes: > On 2/7/20 9:50 AM, sirgazil wrote: >> ---- On Fri, 07 Feb 2020 11:30:43 -0500 Matt Wette wrote ---- >> > Thanks for doing this. I'd like to have #! ... !# handled robustly as >> > comment. >> > It's not working for me and I believe I saw a comment in the code that >> > it was >> > intentionally left out (for some reason I don't remember). >> >> I don't remember those block comments working for me either, so I use #| ... |# instead for top-level and nested block comments. >> > > And for scripts I use the following which seems like a kludge to me. > > #!/bin/sh > #| > xxx > xxx > xxx > exec guile $0 "$@ > |# > !# Why is this necessary? Why not use guile in the shebang? -- Ricardo