From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: ludovic.courtes@laas.fr (Ludovic =?iso-8859-1?Q?Court=E8s?=) Newsgroups: gmane.lisp.guile.devel Subject: `scm_list ()' Date: Thu, 02 Feb 2006 10:38:37 +0100 Organization: LAAS-CNRS Message-ID: <87ek2mumle.fsf@laas.fr> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1138896895 524 80.91.229.2 (2 Feb 2006 16:14:55 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 2 Feb 2006 16:14:55 +0000 (UTC) Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Thu Feb 02 17:14:53 2006 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1F4h4X-0000Qw-P2 for guile-devel@m.gmane.org; Thu, 02 Feb 2006 17:12:44 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1F4h4F-0006sL-7Z for guile-devel@m.gmane.org; Thu, 02 Feb 2006 11:12:19 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1F4fXx-0003na-N7 for guile-devel@gnu.org; Thu, 02 Feb 2006 09:34:54 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1F4f8e-00058e-J9 for guile-devel@gnu.org; Thu, 02 Feb 2006 09:08:45 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1F4f4B-0004Bp-Am for guile-devel@gnu.org; Thu, 02 Feb 2006 09:04:10 -0500 Original-Received: from [199.232.41.67] (helo=mx20.gnu.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA:32) (Exim 4.52) id 1F4f31-0000GF-7o for guile-devel@gnu.org; Thu, 02 Feb 2006 09:02:55 -0500 Original-Received: from [140.93.0.15] (helo=laas.laas.fr) by mx20.gnu.org with esmtp (Exim 4.52) id 1F4bGq-0004X6-K3 for guile-devel@gnu.org; Thu, 02 Feb 2006 05:00:56 -0500 Original-Received: by laas.laas.fr (8.13.1/8.13.4) with SMTP id k129d6dY017318; Thu, 2 Feb 2006 10:39:07 +0100 (CET) Original-Received: from messiaen.laas.fr (messiaen [140.93.21.6]) by laas.laas.fr (8.13.1/8.13.4) with SMTP id k129d6dY017318 for ; Thu, 2 Feb 2006 10:39:06 +0100 (CET) Original-Received: by messiaen.laas.fr (sSMTP sendmail emulation); Thu, 2 Feb 2006 10:38:38 +0100 Original-To: guile-devel@gnu.org X-URL: http://www.laas.fr/~lcourtes/ X-Revolutionary-Date: 14 =?iso-8859-1?Q?Pluvi=F4se?= an 214 de la =?iso-8859-1?Q?R=E9volution?= X-PGP-Key-ID: 0xEB1F5364 X-PGP-Key: http://www.laas.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 821D 815D 902A 7EAB 5CEE D120 7FBA 3D4F EB1F 5364 X-OS: powerpc-unknown-linux-gnu Mail-Followup-To: guile-devel@gnu.org User-Agent: Gnus/5.110004 (No Gnus v0.4) Emacs/21.4 (gnu/linux) X-Spam-Score: 0 () X-Scanned-By: MIMEDefang at CNRS-LAAS X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:5645 Archived-At: Hi, `scm_list ()' is no longer available in 1.7, not even as a deprecated function. In 1.6, it is documented as follows: -- Scheme Procedure: list . objs -- C Function: scm_list (objs) Return a list containing OBJS, the arguments to `list'. The funny thing is that to get a list, you had to have a list already (OBJS is a list here). I don't really get the point of this function in fact. ;-) Should the following be enough to ensure compatibility? SCM scm_list (SCM obj) { scm_c_issue_deprecation_warning ("`scm_list' is deprecated. Use " "`scm_list_n' instead."); SCM_VALIDATE_LIST (1, obj); return obj; } Thanks, Ludovic. _______________________________________________ Guile-devel mailing list Guile-devel@gnu.org http://lists.gnu.org/mailman/listinfo/guile-devel