From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: A Soare Newsgroups: gmane.emacs.help Subject: Re: special forms Date: Wed, 18 Apr 2007 21:50:54 +0200 (CEST) Message-ID: <9472853.375081176925854975.JavaMail.www@wwinf4101> Reply-To: alinsoar@voila.fr NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1176925881 14057 80.91.229.12 (18 Apr 2007 19:51:21 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 18 Apr 2007 19:51:21 +0000 (UTC) To: "Emacs Help [help-gnu-emacs]" Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Apr 18 21:51:14 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1HeGBM-0008Gx-Ek for geh-help-gnu-emacs@m.gmane.org; Wed, 18 Apr 2007 21:51:12 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HeGGD-0008K2-JJ for geh-help-gnu-emacs@m.gmane.org; Wed, 18 Apr 2007 15:56:13 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HeGG0-0008Jx-6X for help-gnu-emacs@gnu.org; Wed, 18 Apr 2007 15:56:00 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HeGFy-0008Jl-S1 for help-gnu-emacs@gnu.org; Wed, 18 Apr 2007 15:55:58 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HeGFy-0008Ji-NM for help-gnu-emacs@gnu.org; Wed, 18 Apr 2007 15:55:58 -0400 Original-Received: from smtp2.voila.fr ([193.252.22.175] helo=smtp1.voila.fr) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1HeGB6-0001To-DL for help-gnu-emacs@gnu.org; Wed, 18 Apr 2007 15:50:56 -0400 Original-Received: from me-wanadoo.net (localhost [127.0.0.1]) by mwinf4107.voila.fr (SMTP Server) with ESMTP id 114091C005FC for ; Wed, 18 Apr 2007 21:50:55 +0200 (CEST) Original-Received: from wwinf4101 (wwinf4101 [172.22.152.28]) by mwinf4107.voila.fr (SMTP Server) with ESMTP id F25981C00561 for ; Wed, 18 Apr 2007 21:50:54 +0200 (CEST) X-ME-UUID: 20070418195054992.F25981C00561@mwinf4107.voila.fr X-Originating-IP: [86.107.96.49] X-Wum-Nature: EMAIL-NATURE X-WUM-FROM: |~| X-WUM-TO: |~| X-WUM-REPLYTO: |~| X-detected-kernel: Linux 2.4-2.6 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:42798 Archived-At: I do not find in Feval where the `special forms' are treated. Can somebody help me please? A Soare writes: > I do not find in Feval where the `special forms' are treated. Can somebody help me please? It looks like from line 2272 or so in the current sources of eval.c: if (XSUBR (fun)->max_args == UNEVALLED) { backtrace.evalargs = 0; val = (*XSUBR (fun)->function) (args_left); goto done; } >Does that help? I looked closely. We got it. "UNEVALLED" indicate that the evaluation of a function must mut evaluate its arguments. Thanks a lot. Alin Soare.