From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from bumble.maple.relay.mailchannels.net (bumble.maple.relay.mailchannels.net [23.83.214.25]) by sourceware.org (Postfix) with ESMTPS id 607173846403 for ; Fri, 1 Jan 2021 21:03:10 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 607173846403 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=eip10.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=chaw@eip10.org X-Sender-Id: dreamhost|x-authsender|chaw@eip10.org Received: from relay.mailchannels.net (localhost [127.0.0.1]) by relay.mailchannels.net (Postfix) with ESMTP id 43BAF541F2A for ; Fri, 1 Jan 2021 21:03:09 +0000 (UTC) Received: from pdx1-sub0-mail-a97.g.dreamhost.com (100-96-87-21.trex.outbound.svc.cluster.local [100.96.87.21]) (Authenticated sender: dreamhost) by relay.mailchannels.net (Postfix) with ESMTPA id 8F3CD5422F5 for ; Fri, 1 Jan 2021 21:03:08 +0000 (UTC) X-Sender-Id: dreamhost|x-authsender|chaw@eip10.org Received: from pdx1-sub0-mail-a97.g.dreamhost.com (pop.dreamhost.com [64.90.62.162]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384) by 0.0.0.0:2500 (trex/5.18.11); Fri, 01 Jan 2021 21:03:09 +0000 X-MC-Relay: Neutral X-MailChannels-SenderId: dreamhost|x-authsender|chaw@eip10.org X-MailChannels-Auth-Id: dreamhost X-Scare-Occur: 459ba26a09a33748_1609534988840_3803647945 X-MC-Loop-Signature: 1609534988840:1888847422 X-MC-Ingress-Time: 1609534988839 Received: from pdx1-sub0-mail-a97.g.dreamhost.com (localhost [127.0.0.1]) by pdx1-sub0-mail-a97.g.dreamhost.com (Postfix) with ESMTP id 543D37F54D for ; Fri, 1 Jan 2021 13:03:08 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=eip10.org; h=to:subject :from:reply-to:in-reply-to:mime-version:content-type:content-id :content-transfer-encoding:date:message-id; s=eip10.org; bh=qGDD cQ2IWT12eF+bcKG4FI2qBVM=; b=PGCtSg0j35cZyjYboFMcH0zE6RqmJFbwQ12T SMEeF6Cxm4yR2A/E9A87t2kyhoH/PnnYs9eCQ7Bw7oa2cU/M535+grplVqQ8yR8i NWjWGD3UdyLFj8VLPIXfnkyvTLQuZb/g/0DCUzwnvajhquBaHiVrKhycFtKpwtGf nf0erQU= Received: from vpaur.eip10.org (cpe-74-75-233-46.maine.res.rr.com [74.75.233.46]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: chaw@eip10.org) by pdx1-sub0-mail-a97.g.dreamhost.com (Postfix) with ESMTPSA id 3222E7F54A for ; Fri, 1 Jan 2021 13:03:07 -0800 (PST) Received: from chaw by vpaur.eip10.org with local (Exim 4.89) (envelope-from ) id 1kvRZi-0000lq-8H for kawa@sourceware.org; Fri, 01 Jan 2021 16:03:06 -0500 To: kawa@sourceware.org Subject: Re: SLIB (full/general) in Kawa? X-DH-BACKEND: pdx1-sub0-mail-a97 From: "Sudarshan S Chawathe" Reply-To: "Sudarshan S Chawathe" In-reply-to: Your message of "Fri, 01 Jan 2021 11:25:04 -0800." X-Mailer: MH-E 8.5; nmh 1.6; GNU Emacs 24.5.1 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <2964.1609534986.1@localhost> Content-Transfer-Encoding: quoted-printable Date: Fri, 01 Jan 2021 16:03:06 -0500 Message-ID: <2965.1609534986@localhost> X-Spam-Status: No, score=-2.1 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, KAM_SHORT, RCVD_IN_DNSWL_NONE, RCVD_IN_MSPIKE_H2, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: kawa@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Kawa mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Jan 2021 21:03:12 -0000 > From: Per Bothner > Date: Fri, 1 Jan 2021 11:25:04 -0800 > = > One possibility is to use the --r7rs command-line option: > https://www.gnu.org/software/kawa/Options.html#Options-for-language-sele= ction Thanks for the quick help. I was able to make some progress using the r7rs option, which I had forgotten about. It means using the (invoke foo 'bar baz ...) instead of (foo:bar baz ...) but I could probably get used to that quite easily. > You can escape a colon either by surrounding it with vertical bars, > or by prefixing it with a backslash (both methods come from Common Lisp)= : > = > '|ab:cd| (or 'ab|:|cd) or 'ab\:cd That's very good to know; I'll plan to try this alternative a bit later. Regards, -chaw