From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Zelphir Kaltstahl Newsgroups: gmane.lisp.guile.user Subject: Re: Procedure arity and documentation Date: Thu, 27 May 2021 19:23:02 +0000 Message-ID: References: <42849034-24cb-912a-41b8-4e00b8bfac59@posteo.de> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="28035"; mail-complaints-to="usenet@ciao.gmane.io" Cc: Guile User To: Taylan Kammer Original-X-From: guile-user-bounces+guile-user=m.gmane-mx.org@gnu.org Thu May 27 21:23:30 2021 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 1lmLbO-00077p-FF for guile-user@m.gmane-mx.org; Thu, 27 May 2021 21:23:30 +0200 Original-Received: from localhost ([::1]:60624 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lmLbN-0003t5-Gr for guile-user@m.gmane-mx.org; Thu, 27 May 2021 15:23:29 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:53904) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lmLb2-0003qW-78 for guile-user@gnu.org; Thu, 27 May 2021 15:23:08 -0400 Original-Received: from mout02.posteo.de ([185.67.36.66]:40725) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lmLaz-000062-D1 for guile-user@gnu.org; Thu, 27 May 2021 15:23:07 -0400 Original-Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 2C1892400FC for ; Thu, 27 May 2021 21:23:03 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.de; s=2017; t=1622143383; bh=xVEecqk102Rj/nNorViuGpLl22Wttn0xEoM8POyeiCo=; h=Subject:To:From:Cc:Date:From; b=cq25WDMf7I7y2/v9nwQZq9h+USU2aajBtAFQWrCq+NEpO/0UXPClofiPZ2G3A6Xfi ZJwi+U9zBQkPLu/f9XSKO8rP5X+3Qp1URB7Qtc6wQuVeA4foCQbmv214q0I0bXBIL6 UMXM147zpqW/HR9xwzQ/VDgIwHNB55VoTpaA4xjp332iWVjOU62DVQjhRfb4EzwW5+ E8/FLB2EmeInoFKuxSy8xmbe3aGOO/UYEBduwCen2zA1QHb3WeI65VErGnXUFytWqM TzA4y9LiV7+8a33RcXl3B9d4geVX5szzZ6nyz+LsoRuF9ksUQthyWOVFk+aPwyvSOW 3RPRfgTDRr79Q== Original-Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4Frd524GQwz9rxF; Thu, 27 May 2021 21:23:02 +0200 (CEST) In-Reply-To: Content-Language: en-US Received-SPF: pass client-ip=185.67.36.66; envelope-from=zelphirkaltstahl@posteo.de; helo=mout02.posteo.de X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 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, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action 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:17541 Archived-At: Hi Taylan! Hm. I see. I am not quite sure I understand the implications of this. Am I still safe, if I rely on procedure-minimum-arity, or is that just asking for my code to break at a later point in time? Regards, Zelphir On 5/27/21 12:23 PM, Taylan Kammer wrote: > On 26.05.2021 21:33, Zelphir Kaltstahl wrote: >> Is that a bug, or is it, because I am trying to use it in the REPL and there my >> procedure is not compiled? >> >> Best regards, >> Zelphir >> > There's a relevant bug report I looked into recently: > > https://bugs.gnu.org/40294 > > Quoting myself: > > It seems that commit 1c33be992e8120abd20add8021e4d91d226f5b6a removed > much of the programs API at the C level but forgot to make the changes > to the corresponding Scheme module. (It was a big commit, part of > changing the whole VM implementation.) > -- repositories: https://notabug.org/ZelphirKaltstahl