From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eli Zaretskii Subject: bug#15888: 24.3.50; Eval-after-load eval'ed twice Date: Fri, 15 Nov 2013 10:42:23 +0200 Message-ID: <83iovuhx8w.fsf__23815.8561209731$1384505023$gmane$org@gnu.org> References: <868uws6lgt.fsf@somewhere.org> <864n7f7u8d.fsf@somewhere.org> <8638myzu9t.fsf@somewhere.org> <83siuyiyq4.fsf@gnu.org> <868uwqxeoj.fsf@somewhere.org> Reply-To: Eli Zaretskii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43085) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VhEzc-000593-35 for emacs-orgmode@gnu.org; Fri, 15 Nov 2013 03:43:13 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VhEzW-00018i-OW for emacs-orgmode@gnu.org; Fri, 15 Nov 2013 03:43:08 -0500 Sender: "Debbugs-submit" Resent-Message-ID: In-reply-to: <868uwqxeoj.fsf@somewhere.org> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Sebastien Vauban Cc: michael_heerdegen@web.de, rgm@gnu.org, 15888@debbugs.gnu.org > From: "Sebastien Vauban" > Cc: rgm@gnu.org, michael_heerdegen@web.de, 15888@debbugs.gnu.org > Date: Fri, 15 Nov 2013 09:16:44 +0100 > > > (gdb) break Fload > > (gdb) commands > > > p file > > > xstring > > > end > > (gdb) r -Q > > > > Now, when the breakpoint breaks, you will see which file is being > > loaded, and need just type "c RET" (or just "RET" after the first > > time), and wait for "org-mode" to show in the output of the above > > commands; then type "bt" to see who loaded it. > > Here it is. Thanks. Unfortunately, this: > (gdb) No symbol "backtrace_list" in current context. (whose reason I don't really understand) means that the Lisp backtrace is absent from your data. Nevertheless, given this part: > Breakpoint 3, Fload (file=60203985, noerror=57608218, nomessage=57608242, nosuffix=57608218, must_suffix=57608242) at ../../repo/src/lread.c:1048 > 1048 in ../../repo/src/lread.c > $53 = 60203985 > $54 = (struct Lisp_String *) 0x396a3d0 > "org-loaddefs" > (gdb) > Continuing. > [Thread 3332.0xaf4 exited with code 0] > > Breakpoint 3, Fload (file=59407297, noerror=57608218, nomessage=57608242, nosuffix=57608218, must_suffix=57608242) at ../../repo/src/lread.c:1048 > 1048 in ../../repo/src/lread.c > $55 = 59407297 > $56 = (struct Lisp_String *) 0x38a7bc0 > "org" It is quite clear that org-loaddefs has something to do with the problem. As I understand it, Bastien just fixed that in Org trunk. Thanks.