From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christopher Schmidt Subject: Re: [BUG] (error "Lisp nesting exceeds `max-lisp-eval-depth'") Date: Wed, 13 Feb 2013 10:09:00 +0000 (GMT) Message-ID: <87ehgk7cfx@ch.ristopher.com> References: <867gmdj3x2.fsf@somewhere.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([208.118.235.92]:34866) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U5ZH1-0004iH-Mx for emacs-orgmode@gnu.org; Wed, 13 Feb 2013 05:09:11 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U5ZGy-0005hC-6k for emacs-orgmode@gnu.org; Wed, 13 Feb 2013 05:09:07 -0500 Received: from ristopher.com ([146.185.21.93]:55735 helo=saturn.ch.ristopher.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U5ZGx-0005gv-Ud for emacs-orgmode@gnu.org; Wed, 13 Feb 2013 05:09:04 -0500 In-Reply-To: <867gmdj3x2.fsf@somewhere.org> (Sebastien Vauban's message of "Tue, 12 Feb 2013 10:07:53 +0100") 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: emacs-orgmode@gnu.org --=-=-= Content-Type: text/plain "Sebastien Vauban" writes: > Since the last pull I made, I can't expand anymore BBDB aliases in > Gnus... because of Org! > Debugger entered--Lisp error: (error "Lisp nesting exceeds `max-lisp-eval-depth'") It looks like this is orgstruct-mode and yas-snippet both hijacking the TAB key and ultimately falling back to each other. Could you please give master + this patch a try? --=-=-= Content-Type: text/x-diff Content-Disposition: inline --- a/lisp/org.el +++ b/lisp/org.el @@ -8672,7 +8672,8 @@ should be checked in for a command to execute outside of tables." 'item-body))) (org-run-like-in-org-mode ',fun) t)) - (let ((binding (let ((orgstruct-mode)) (key-binding ,key)))) + (let* ((orgstruct-mode) + (binding (key-binding ,key))) (if (keymapp binding) (set-temporary-overlay-map binding) (call-interactively --=-=-= Content-Type: text/plain Christopher --=-=-=--