From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Mario Lang Newsgroups: gmane.emacs.devel Subject: callint.c:506 Date: Wed, 28 Aug 2002 15:31:12 +0200 Sender: emacs-devel-admin@gnu.org Message-ID: <87ofbn6rfj.fsf@lexx.delysid.org> NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1030541476 6975 127.0.0.1 (28 Aug 2002 13:31:16 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 28 Aug 2002 13:31:16 +0000 (UTC) Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 17k2ue-0001o5-00 for ; Wed, 28 Aug 2002 15:31:12 +0200 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 17k3QS-0004Xe-00 for ; Wed, 28 Aug 2002 16:04:04 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10) id 17k2vr-0005ii-00; Wed, 28 Aug 2002 09:32:27 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10) id 17k2uR-0005hM-00 for emacs-devel@gnu.org; Wed, 28 Aug 2002 09:30:59 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10) id 17k2uP-0005h8-00 for emacs-devel@gnu.org; Wed, 28 Aug 2002 09:30:59 -0400 Original-Received: from tk212017102236.teleweb.at ([212.17.102.236] helo=lexx.delysid.org) by monty-python.gnu.org with esmtp (Exim 4.10) id 17k2uP-0005h4-00 for emacs-devel@gnu.org; Wed, 28 Aug 2002 09:30:57 -0400 Original-Received: from mlang by lexx.delysid.org with local (Exim 3.35 #1 (Debian)) id 17k2uf-0006HV-00 for ; Wed, 28 Aug 2002 15:31:13 +0200 Original-To: emacs-devel@gnu.org Original-Lines: 24 User-Agent: Gnus/5.090007 (Oort Gnus v0.07) Emacs/21.2 (i386-debian-linux-gnu) Errors-To: emacs-devel-admin@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.devel:7049 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:7049 Hello. I just investigated a little emacspeak related issue and found out that in callint.c:506, we call Fcompleting_read instead of Fread_command. Now I have several questions, please be patient, I'm very new to the C side of Emacs: 1. If we call a F* function from C, will defadvices work for this function? I mean, if someone advises read-command, will the advice code be called if Fread_command is called? 2. If yes, is there a special reason why we call Fcompleting_read directly there, or could we also call Fread_command? -- CYa, Mario