From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Maxime Devos Newsgroups: gmane.lisp.guile.user Subject: RE: using a module : rename a single definition Date: Wed, 20 Mar 2024 00:09:15 +0100 Message-ID: <20240320000913.0n9C2C0061t0PTu01n9D38@baptiste.telenet-ops.be> References: Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="7220"; mail-complaints-to="usenet@ciao.gmane.io" To: Damien Mattei , guile-user Original-X-From: guile-user-bounces+guile-user=m.gmane-mx.org@gnu.org Wed Mar 20 00:10:05 2024 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 1rmiar-0001e3-3z for guile-user@m.gmane-mx.org; Wed, 20 Mar 2024 00:10:05 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1rmia9-0003Wl-Sa; Tue, 19 Mar 2024 19:09:21 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rmia8-0003WZ-BU for guile-user@gnu.org; Tue, 19 Mar 2024 19:09:20 -0400 Original-Received: from baptiste.telenet-ops.be ([2a02:1800:120:4::f00:13]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1rmia6-0005km-C6 for guile-user@gnu.org; Tue, 19 Mar 2024 19:09:20 -0400 Original-Received: from [IPv6:2a02:1811:8c0e:ef00:bdbc:1eb5:af8f:e09d] ([IPv6:2a02:1811:8c0e:ef00:bdbc:1eb5:af8f:e09d]) by baptiste.telenet-ops.be with bizsmtp id 0n9C2C0061t0PTu01n9D38; Wed, 20 Mar 2024 00:09:13 +0100 Importance: normal X-Priority: 3 In-Reply-To: DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=telenet.be; s=r24; t=1710889753; bh=ASUSeRPxG0echohiGAuuWbjBY+kgfiT9wE1QS2m42pI=; h=To:From:Subject:Date:In-Reply-To:References; b=cBHQCs0p6XsM67HqmPfyj9O96yQ+msrYaUOO2aQwSgR/shblnqCe1kgVp7driMF78 G/+5GYAN0faYWDelgOUMy1BNBHPD78UHiyh00xrNZnOtQf6orA697UdJwT9xsQdKpM X3UiIQFHboZRKBdFXPA+PnTvhMdc98Bp5xd7Y43osi0o2vSryoAZ5biQXciI6PVTSJ Wn8wDTVwDXfCb4uPCDJaDDzc4ZqdCCUqJgVgN1tM42YS5mYMO0M9yvXRCVQ5qMPVtD aggXHaPc9uUK/DKhyG1evVeFRx4+07MJKNpaOAqwTpH93AoEtknpegriqFOzztPCVm OM0AyGBlb+YGg== Received-SPF: pass client-ip=2a02:1800:120:4::f00:13; envelope-from=maximedevos@telenet.be; helo=baptiste.telenet-ops.be X-Spam_score_int: -27 X-Spam_score: -2.8 X-Spam_bar: -- X-Spam_report: (-2.8 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, FREEMAIL_FROM=0.001, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.29 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-bounces+guile-user=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.lisp.guile.user:19485 Archived-At: Yes, with =E2=80=98library=E2=80=99 or =E2=80=98define-library=E2=80=99 for= ms. =20 (see https://www.gnu.org/software/guile/manual/html_node/R6RS-Libraries.htm= l) (library (insert name here) (export [insert exports here]) (import (guile) ; standard imports (rename (ice-9 popen) (open-pipe pipe-open))) [insert definitions here])