From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Eddward DeVilla" Subject: another bug, sorry Date: Fri, 8 Dec 2006 12:43:35 -0600 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Gskh7-000638-Hn for emacs-orgmode@gnu.org; Fri, 08 Dec 2006 13:43:37 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Gskh6-00062G-SY for emacs-orgmode@gnu.org; Fri, 08 Dec 2006 13:43:37 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Gskh6-000622-Od for emacs-orgmode@gnu.org; Fri, 08 Dec 2006 13:43:36 -0500 Received: from [66.249.92.172] (helo=ug-out-1314.google.com) by monty-python.gnu.org with esmtp (Exim 4.52) id 1Gskh6-0002eo-I3 for emacs-orgmode@gnu.org; Fri, 08 Dec 2006 13:43:36 -0500 Received: by ug-out-1314.google.com with SMTP id j3so969540ugf for ; Fri, 08 Dec 2006 10:43:35 -0800 (PST) Content-Disposition: inline List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode Hi all, Sorry for all the clutter. Using the menu, agenda or key binding to open a sub-tree in an indirect buffer kicks me into the debugger. I don't think I even have the debugger option on. Here's the stack I get. I'm not sure what to make of it. ------------------------------------------------------------------------ Debugger entered: nil (let ((cbuf ...) (cwin ...) (pos ...) (bname ...) beg end level heading ibuf) (save-excursion (org-back-to-heading t) (when ... ... ... ...) (setq beg ... heading ...) (org-end-of-subtree t) (setq end ...)) (if (and ... ...) (kill-buffer org-last-indirect-buffer)) (setq ibuf (org-get-indirect-buffer cbuf) org-last-indirect-buffer ibuf) (cond (... ... ... ... ...) (... ... ... ... ...) (... ...) (... ...) (t ...)) (if (featurep ...) (save-excursion ... ...)) (narrow-to-region beg end) (show-all) (goto-char pos) (debug) (and (window-live-p cwin) (select-window cwin))) org-tree-to-indirect-buffer(nil) * call-interactively(org-tree-to-indirect-buffer) ------------------------------------------------------------------------ The second to last expression in org-tree-to-indirect-buffer has me a little suspicious though. Seems to work without the call to debug. Edd