From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: [Emacs-diffs] /srv/bzr/emacs/trunk r112828: Merge the specpdl and backtrace stacks. Make the structure of the Date: Tue, 04 Jun 2013 18:13:11 +0300 Message-ID: <83mwr5x62g.fsf@gnu.org> References: <83txlfvw0i.fsf@gnu.org> <51AD8146.8080909@cs.ucla.edu> Reply-To: Eli Zaretskii NNTP-Posting-Host: plane.gmane.org X-Trace: ger.gmane.org 1370358802 23789 80.91.229.3 (4 Jun 2013 15:13:22 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 4 Jun 2013 15:13:22 +0000 (UTC) Cc: lekktu@gmail.com, monnier@iro.umontreal.ca, emacs-devel@gnu.org To: Paul Eggert Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Jun 04 17:13:21 2013 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1UjsvJ-0006rt-GB for ged-emacs-devel@m.gmane.org; Tue, 04 Jun 2013 17:13:21 +0200 Original-Received: from localhost ([::1]:37799 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UjsvJ-0008PN-0f for ged-emacs-devel@m.gmane.org; Tue, 04 Jun 2013 11:13:21 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:38346) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UjsvE-0008P4-Oz for emacs-devel@gnu.org; Tue, 04 Jun 2013 11:13:19 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UjsvD-0005So-5X for emacs-devel@gnu.org; Tue, 04 Jun 2013 11:13:16 -0400 Original-Received: from mtaout20.012.net.il ([80.179.55.166]:61845) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UjsvC-0005SV-TS for emacs-devel@gnu.org; Tue, 04 Jun 2013 11:13:15 -0400 Original-Received: from conversion-daemon.a-mtaout20.012.net.il by a-mtaout20.012.net.il (HyperSendmail v2007.08) id <0MNV00I00JKFC000@a-mtaout20.012.net.il> for emacs-devel@gnu.org; Tue, 04 Jun 2013 18:13:13 +0300 (IDT) Original-Received: from HOME-C4E4A596F7 ([87.69.4.28]) by a-mtaout20.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0MNV00I3KJM0C700@a-mtaout20.012.net.il>; Tue, 04 Jun 2013 18:13:13 +0300 (IDT) In-reply-to: <51AD8146.8080909@cs.ucla.edu> X-012-Sender: halo1@inter.net.il X-detected-operating-system: by eggs.gnu.org: Solaris 10 X-Received-From: 80.179.55.166 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:160076 Archived-At: > Date: Mon, 03 Jun 2013 22:55:18 -0700 > From: Paul Eggert > CC: Stefan Monnier , lekktu@gmail.com, > emacs-devel@gnu.org > > On 06/03/2013 12:23 PM, Eli Zaretskii wrote: > > Perhaps Paul could describe that nonetheless. > > Where's a good place to put the description? My guess would be in lisp.h, right before we use this for the first time. > INLINE_HEADER_BEGIN > #ifndef AAA_INLINE > # define AAA_INLINE INLINE > #endif > > AAA_INLINE int foo (int i) { return i + 1; } > > INLINE_HEADER_END > > On C99 hosts this expands to C99-style 'extern inline' usage that avoids > the code bloat. Thanks. That's what I thought these did, but then how to explain the fact that revision 112828 produced unresolved externals for such functions that were defined in the same file (eval.c)?