From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: Exporting inline code sections Date: Tue, 14 Aug 2012 11:20:03 -0400 Message-ID: <3431.1344957603@alphaville> References: <21A5E1E970CD46459ECBE86D6CC4B28C67323C4F@spexch01.WindLogics.local> <87obmexxr2.fsf@gnu.org> <21A5E1E970CD46459ECBE86D6CC4B28C67323C60@spexch01.WindLogics.local> <6810.1344900869@alphaville> <21A5E1E970CD46459ECBE86D6CC4B28C67414F40@spexch01.WindLogics.local> Reply-To: nicholas.dokos@hp.com Return-path: Received: from eggs.gnu.org ([208.118.235.92]:47954) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T1Iuv-0003oP-HU for emacs-orgmode@gnu.org; Tue, 14 Aug 2012 11:20:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1T1Iuo-0002wI-MD for emacs-orgmode@gnu.org; Tue, 14 Aug 2012 11:20:25 -0400 In-Reply-To: Message from Ken Williams of "Tue, 14 Aug 2012 10:01:43 CDT." <21A5E1E970CD46459ECBE86D6CC4B28C67414F40@spexch01.WindLogics.local> 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: Ken Williams Cc: Bastien , "emacs-orgmode@gnu.org" Ken Williams wrote: > > C-h v org-src-preserve-indentation RET > > Okay, I was stepping through org-edit-src-exit with the emacs debugger, get= > ting my bearings - but now for the life of me I can't get the debugger to t= > rigger when entering that function anymore. I do `M-x debug-on-entry org-e= > dit-src-exit`, then put my point in a table.el table and hit `C-c '`, then = > hit `C-c '` again to exit the editing buffer, and no debugging happens. Ca= > n someone think of why that might be? > You might want to try edebug instead of the standard debugger, but the following steps might help in any case (with appropriate translations). I have had such problems and I try the following steps (in increasing order of desperation): o quitting out of any existing debug sessions and/or error backtraces and try again. o M-x top-level and try again. o reload the file (uncompiled) and redo the M-x edebug-defun - btw, there are convenient shorthands: C-M-x to reevaluate the defun and turn off edebug and C-u C-M-x to enable edebug on the defun. Then try again. o restart emacs and try again. o reboot the machine and try again :-) Nick