"Sebastien Vauban" <[email protected]>
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