From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Lars Hansen Newsgroups: gmane.emacs.devel Subject: No GCPRO in directory-files and directory-files-and-attributes Date: Mon, 01 Dec 2003 23:32:51 +0100 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <3FCBC193.2080509@math.ku.dk> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1070324808 634 80.91.224.253 (2 Dec 2003 00:26:48 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 2 Dec 2003 00:26:48 +0000 (UTC) Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Tue Dec 02 01:26:45 2003 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1AQyNJ-0002bF-00 for ; Tue, 02 Dec 2003 01:26:45 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1AQyNJ-0000O3-00 for ; Tue, 02 Dec 2003 01:26:45 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.24) id 1AQzC2-0000Ux-7I for emacs-devel@quimby.gnus.org; Mon, 01 Dec 2003 20:19:10 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.24) id 1AQy0g-0007xx-IV for emacs-devel@gnu.org; Mon, 01 Dec 2003 19:03:22 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.24) id 1AQxoV-0006G2-HW for emacs-devel@gnu.org; Mon, 01 Dec 2003 18:51:18 -0500 Original-Received: from [62.84.220.10] (helo=post.kabelnettet.dk) by monty-python.gnu.org with esmtp (Exim 4.24) id 1AQxYl-0004H6-98 for emacs-devel@gnu.org; Mon, 01 Dec 2003 18:34:31 -0500 Original-Received: from math.ku.dk [62.84.220.219] by post.kabelnettet.dk with ESMTP (SMTPD32-8.03) id A1CCCE008A; Mon, 01 Dec 2003 23:33:48 +0100 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.2.1) Gecko/20021130 X-Accept-Language: da, en-us, en Original-To: emacs-devel@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:18253 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:18253 In dired.c I have noticed that file name handlers are called using the function call from eval.c. However, there are two exceptions, the calls in functions Fdirectory-files and Fdirectory-files-and-attributes where Ffuncall is used instead. This means that the arguments are not protected with GCPRO. Is this intensional or is it a bug? To me it looks like a bug, but I may be missing something.