emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] [BUG] (error "Lisp nesting exceeds `max-lisp-eval-depth'")


From: Christopher Schmidt
Subject: Re: [O] [BUG] (error "Lisp nesting exceeds `max-lisp-eval-depth'")
Date: Wed, 13 Feb 2013 10:09:00 +0000 (GMT)

"Sebastien Vauban" <address@hidden> 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?
--- 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
        Christopher

reply via email to

[Prev in Thread] Current Thread [Next in Thread]