From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier 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: Mon, 03 Jun 2013 14:25:47 -0400 Message-ID: References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1370283957 22654 80.91.229.3 (3 Jun 2013 18:25:57 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 3 Jun 2013 18:25:57 +0000 (UTC) Cc: Emacs developers To: Juanma Barranquero Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Jun 03 20:25:57 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 1UjZS8-0003hx-GW for ged-emacs-devel@m.gmane.org; Mon, 03 Jun 2013 20:25:56 +0200 Original-Received: from localhost ([::1]:49079 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UjZS8-0006dh-0q for ged-emacs-devel@m.gmane.org; Mon, 03 Jun 2013 14:25:56 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:53058) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UjZS2-0006dY-RB for emacs-devel@gnu.org; Mon, 03 Jun 2013 14:25:53 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UjZS1-00053t-NK for emacs-devel@gnu.org; Mon, 03 Jun 2013 14:25:50 -0400 Original-Received: from ironport2-out.teksavvy.com ([206.248.154.182]:44524) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UjZS1-00053V-GH for emacs-devel@gnu.org; Mon, 03 Jun 2013 14:25:49 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Av4EABK/CFFFpYtM/2dsb2JhbABEvw4Xc4IeAQEEAVYjBQsLDiYHCxQYDSSIHgbBLZEKA6R6gV6DEw X-IPAS-Result: Av4EABK/CFFFpYtM/2dsb2JhbABEvw4Xc4IeAQEEAVYjBQsLDiYHCxQYDSSIHgbBLZEKA6R6gV6DEw X-IronPort-AV: E=Sophos;i="4.84,565,1355115600"; d="scan'208";a="15524531" Original-Received: from 69-165-139-76.dsl.teksavvy.com (HELO pastel.home) ([69.165.139.76]) by ironport2-out.teksavvy.com with ESMTP/TLS/ADH-AES256-SHA; 03 Jun 2013 14:25:43 -0400 Original-Received: by pastel.home (Postfix, from userid 20848) id BBB0663332; Mon, 3 Jun 2013 14:25:47 -0400 (EDT) In-Reply-To: (Juanma Barranquero's message of "Mon, 3 Jun 2013 15:59:18 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 206.248.154.182 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:160053 Archived-At: > On Windows: > eval.o: In function `Fsignal': > c:\Devel\emacs\repo\debug\src/eval.c:1409: undefined reference to > `backtrace_top' Hmm... for some other reasons I just installed a patch that turns the LISP_INLINE into EXTERN_INLINE. With some luck, it may fix this problem, but if it doesn't, we'll have to ask Paul, because I really don't have enough of clue about what is the detailed semantics of those INLINE annotations. This said, I'm really surprised to see such problems, since backtrace_(top|p|next) are defined in eval.c, before any use, so if code from eval.c after the definition can't use those functions, it begs the question: where can such INLINE functions be used? Stefan