From mboxrd@z Thu Jan 1 00:00:00 1970 From: Markus Baden Subject: Error after org-remember-insinuate on Aquamacs Date: Tue, 21 Jul 2009 20:39:33 +0200 Message-ID: <7D70A98C-84EE-48C7-9164-D7CB32BDF2D4@gmail.com> Mime-Version: 1.0 (Apple Message framework v935.3) Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MTKFb-0005rS-K1 for emacs-orgmode@gnu.org; Tue, 21 Jul 2009 14:39:43 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MTKFW-0005r4-7B for emacs-orgmode@gnu.org; Tue, 21 Jul 2009 14:39:42 -0400 Received: from [199.232.76.173] (port=40966 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MTKFW-0005r1-1i for emacs-orgmode@gnu.org; Tue, 21 Jul 2009 14:39:38 -0400 Received: from mail-ew0-f213.google.com ([209.85.219.213]:46183) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MTKFV-0006j1-M3 for emacs-orgmode@gnu.org; Tue, 21 Jul 2009 14:39:37 -0400 Received: by ewy9 with SMTP id 9so920952ewy.42 for ; Tue, 21 Jul 2009 11:39:36 -0700 (PDT) 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@gnu.org Hi all, Ok, I'm not really fluent in emacs, but I try to describe my problem anyhow ;-) I'm using org-mode in Aquamacs for a while now and since lately the following error occurs (unfortunately I don't know what change caused the problem): When loading the minimal .emacs below [1], which just loads org-mode and remember, I get the following error: Variable binding depth exceeds max-specpdl-size My setup is Aquamacs 1.8 orgmode 6.27a remember 2.0 If I load the same .emacs in the console based emacs (22.3.1) of the fink distribution on my mac no error occurs. And also no error occurs when commenting out org-remember-insinuate. Can anybody tell me what this max-specpdl-size is about (except from what i have learned from describe-variable) and (hopefully) help to get my Aquamacs/org-setup working again. (Btw: How can I debug emacs in order to find out where exactly the error lies) Thank you very much for your help, Markus [1] Here is the .emacs: ;; Org-Mode (setq load-path (cons "~/elisp/org-6.27a/lisp" load-path)) (require 'org-install) ;; Orgmode remember (setq load-path (cons "~/elisp/remember/" load-path)) (require 'remember) (org-remember-insinuate) ; Fails! (define-key global-map "\C-cr" 'org-remember)