From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "Eli Zaretskii" Newsgroups: gmane.emacs.devel Subject: RE_TRANSLATE_P Date: Fri, 26 Nov 2004 13:30:30 +0200 Message-ID: <01c4d3ab$Blat.v2.2.2$7b235d00@zahav.net.il> Reply-To: Eli Zaretskii NNTP-Posting-Host: deer.gmane.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7BIT X-Trace: sea.gmane.org 1101468896 17346 80.91.229.6 (26 Nov 2004 11:34:56 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 26 Nov 2004 11:34:56 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Nov 26 12:34:49 2004 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1CXeNF-0003UH-00 for ; Fri, 26 Nov 2004 12:34:49 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CXeWU-0006Uf-Dx for ged-emacs-devel@m.gmane.org; Fri, 26 Nov 2004 06:44:22 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1CXeVb-0006M9-GB for emacs-devel@gnu.org; Fri, 26 Nov 2004 06:43:27 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1CXeVa-0006Lq-Eu for emacs-devel@gnu.org; Fri, 26 Nov 2004 06:43:26 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CXeVa-0006Lf-8G for emacs-devel@gnu.org; Fri, 26 Nov 2004 06:43:26 -0500 Original-Received: from [192.114.186.15] (helo=balder.inter.net.il) by monty-python.gnu.org with esmtp (Exim 4.34) id 1CXeMF-00079D-Ll for emacs-devel@gnu.org; Fri, 26 Nov 2004 06:33:48 -0500 Original-Received: from zaretski ([80.230.149.126]) by balder.inter.net.il (Mirapoint Messaging Server MOS 3.3.7-GR) with ESMTP id DWO00085 (AUTH halo1); Fri, 26 Nov 2004 13:33:27 +0200 (IST) Original-To: emacs-devel@gnu.org X-Mailer: emacs 21.3.50 (via feedmail 8 I) and Blat ver 2.2.2 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:30383 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:30383 A recent change to src/config.in changed the definition of RE_TRANSLATE_P to this: #define RE_TRANSLATE_P(TBL) (!EQ (TBL, make_number (0))) whereas before the change it simply called XFASTINT. This causes RE_TRANSLATE_P to invoke a function, at least if compilers other than GCC are used. I wonder why replacing XFASTINT with XINT was not enough to fix the original problem?