From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mailtransmit04.runbox.com (mailtransmit04.runbox.com [IPv6:2a0c:5a00:149::25]) by sourceware.org (Postfix) with ESMTPS id EBB003858D1E for ; Wed, 1 Nov 2023 16:58:03 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org EBB003858D1E Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=bothner.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=bothner.com ARC-Filter: OpenARC Filter v1.0.0 sourceware.org EBB003858D1E Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=2a0c:5a00:149::25 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1698857894; cv=none; b=dMwAZnrzL3leaqFbzs114/XppH4ErY9+RFMe0NnD0Ci94x6ywDCM8ZOaq3mDHd3GnoQ1WIBTz3hoqfDEj2hlE8m8JVMc1H8P2UxgiKGCC1AcLOtYdSaZMUCFgiywka18vQ+VrRU7FRTkHSHiXQd0+8GbT75OygISMbInCUzeCCI= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1698857894; c=relaxed/simple; bh=PDEwVkJRidr/MZ314sruH40RMI4/nHhYDUlHLdFOVkM=; h=DKIM-Signature:Message-ID:Date:MIME-Version:Subject:To:From; b=gQrldMmfGzr+eMZwVJp1+N9XubRmeOell7buHil/VBscOX/vJwYRiiTaX8rR/bBoWn4LhRq3fXAYGOxR17PCkxhiyp0PXfjcvjUQk/e7RVZ+xc9WT1DpPBVa8KeyaCpMXq/PVZRAAgdk2adwON6mSLLrwl6DTW8lk3i8UGwvvZo= ARC-Authentication-Results: i=1; server2.sourceware.org Received: from mailtransmit02.runbox ([10.9.9.162] helo=aibo.runbox.com) by mailtransmit04.runbox.com with esmtps (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (Exim 4.93) (envelope-from ) id 1qyEXa-002mqm-7u; Wed, 01 Nov 2023 17:58:02 +0100 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=bothner.com ; s=selector1; h=Content-Transfer-Encoding:Content-Type:In-Reply-To:From: References:To:Subject:MIME-Version:Date:Message-ID; bh=Pt2CikGgU4ibyVKjiPTJUJmtBBUECoxr4SrCpYD8NxI=; b=HoMHyUjfkzus2etdb5IQRagLrg oY/iSZAsla9vsUgA4m3w4NQX9CoQnsXrim2dxYkFpLCq/GO4YDcy5JITiU8GRIF1cg4EA4rsjFqLk WkqqQ/n2TtCZghxySkRYIEPMysLMR4a+xXPzPdkFfCpnsAGE3gVuKBkh/WPg+t94jCk7dGzZu+xOg j5GKauluxjkCaiDgnWxK6/o/Nqb3DlQMuYZNUyrEQQytMNOzOU0DfdvNX2NJ4RO+nTmzBl0hwQyrI afUCc1F/NKiTrHs9QYDbBk+V7teP2qKN3oSFsvzIjJNfZfJNOFOJ3SpI1d+BoekRAiGQnx3AUntF1 wih2F1Jg==; Received: from [10.9.9.73] (helo=submission02.runbox) by mailtransmit02.runbox with esmtp (Exim 4.86_2) (envelope-from ) id 1qyEXZ-0008A7-KC; Wed, 01 Nov 2023 17:58:01 +0100 Received: by submission02.runbox with esmtpsa [Authenticated ID (524175)] (TLS1.2:ECDHE_SECP256R1__RSA_PSS_RSAE_SHA256__AES_256_GCM:256) (Exim 4.93) id 1qyEXJ-00DKnC-8s; Wed, 01 Nov 2023 17:57:45 +0100 Message-ID: Date: Wed, 1 Nov 2023 09:57:36 -0700 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: unbound location: * Content-Language: en-US To: Damien Mattei , kawa mailing list References: From: Per Bothner In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-3.8 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,KAM_SHORT,RCVD_IN_DNSWL_LOW,SPF_HELO_NONE,SPF_PASS,TXREP,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: On 11/1/23 09:47, Damien Mattei wrote: > but i have no more access to previous definition that is not keep in > the overloaded procedure,see #!null values: If you're using the module system, you can use import-with-rename to access the "old" definition: (import (rename other-module (foo other-foo))) (export foo) (define (foo ...) (cond (xxx (other-foo ...)) (else ...))) See https://www.gnu.org/software/kawa/Importing.html -- --Per Bothner per@bothner.com http://per.bothner.com/